summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'net-news/liferea/files')
-rw-r--r--net-news/liferea/files/liferea-1.1.0-libnotify.patch14
-rw-r--r--net-news/liferea/files/liferea-1.2.23-backup-perms.patch35
-rw-r--r--net-news/liferea/files/liferea-1.4.23-gecko.patch34
3 files changed, 0 insertions, 83 deletions
diff --git a/net-news/liferea/files/liferea-1.1.0-libnotify.patch b/net-news/liferea/files/liferea-1.1.0-libnotify.patch
deleted file mode 100644
index 96f290d399ea..000000000000
--- a/net-news/liferea/files/liferea-1.1.0-libnotify.patch
+++ /dev/null
@@ -1,14 +0,0 @@
-Index: src/notification/Makefile.am
-===================================================================
---- src/notification/Makefile.am (révision 2353)
-+++ src/notification/Makefile.am (copie de travail)
-@@ -27,8 +27,7 @@
- liblinotiflibnotify_la_CFLAGS = $(PACKAGE_CFLAGS) $(LIBNOTIFY_CFLAGS)
- liblinotiflibnotify_la_SOURCES = notif_libnotify.c notif_libnotify.h notif_plugin.h
-
--pkglib_LTLIBRARIES = liblinotifpopup.la \
-- liblinotiflibnotify.la
-+pkglib_LTLIBRARIES = liblinotiflibnotify.la
- else
- pkglib_LTLIBRARIES = liblinotifpopup.la
- endif
diff --git a/net-news/liferea/files/liferea-1.2.23-backup-perms.patch b/net-news/liferea/files/liferea-1.2.23-backup-perms.patch
deleted file mode 100644
index c0c2464e822a..000000000000
--- a/net-news/liferea/files/liferea-1.2.23-backup-perms.patch
+++ /dev/null
@@ -1,35 +0,0 @@
-diff --exclude-from=/home/dang/.scripts/diffrc -up -ruN liferea-1.2.23.orig/src/common.c liferea-1.2.23/src/common.c
---- liferea-1.2.23.orig/src/common.c 2007-08-19 13:17:58.000000000 -0400
-+++ liferea-1.2.23/src/common.c 2007-10-31 22:42:36.000000000 -0400
-@@ -908,6 +908,9 @@ static void common_init_cache_path(void)
-
- g_free(cachePath);
- /* lifereaUserPath reused globally */
-+
-+ /* ensure reasonable default umask */
-+ umask (077);
- }
-
- const gchar * common_get_cache_path(void) {
-diff --exclude-from=/home/dang/.scripts/diffrc -up -ruN liferea-1.2.23.orig/src/export.c liferea-1.2.23/src/export.c
---- liferea-1.2.23.orig/src/export.c 2007-06-20 18:22:10.000000000 -0400
-+++ liferea-1.2.23/src/export.c 2007-10-31 22:43:35.000000000 -0400
-@@ -126,15 +126,15 @@ gboolean export_OPML_feedlist(const gcha
- error = TRUE;
- }
-
-- if(trusted)
-- old_umask = umask(077);
-+ if(!trusted)
-+ old_umask = umask(022); /* give read permissions for other, per-default we wouldn't give it... */
-
- if(-1 == common_save_xml(doc, backupFilename)) {
- g_warning("Could not export to OPML file!!");
- error = TRUE;
- }
-
-- if(trusted)
-+ if(!trusted)
- umask(old_umask);
-
- xmlFreeDoc(doc);
diff --git a/net-news/liferea/files/liferea-1.4.23-gecko.patch b/net-news/liferea/files/liferea-1.4.23-gecko.patch
deleted file mode 100644
index 3789ff091a3f..000000000000
--- a/net-news/liferea/files/liferea-1.4.23-gecko.patch
+++ /dev/null
@@ -1,34 +0,0 @@
-diff --exclude-from=/home/dang/.scripts/diffrc -up -ruN liferea-1.4.23.orig/configure.ac liferea-1.4.23/configure.ac
---- liferea-1.4.23.orig/configure.ac 2008-11-29 16:43:57.000000000 -0500
-+++ liferea-1.4.23/configure.ac 2008-12-23 11:59:59.000000000 -0500
-@@ -23,6 +23,8 @@ AC_ISC_POSIX
- AC_PROG_CC
- AM_PROG_CC_STDC
- AM_PROG_CC_C_O
-+dnl Mozilla needs C++; don't make conditional, or autoconf fails
-+AC_PROG_CXX
- AC_HEADER_STDC
- AC_PROG_INSTALL
- AC_PROG_LN_S
-@@ -181,6 +183,7 @@ case "$GECKO" in
- xulrunner) gecko_min_version=1.8; is_xulrunner=yes ;;
- libxul*) gecko_min_version=1.9; is_xulrunner=yes ;;
- *firefox) gecko_min_version=1.5; is_mozilla=yes ;;
-+no) no_gecko=yes;;
- *) AC_MSG_ERROR([$gecko_cv_gecko is not supported])
- esac
-
-diff --exclude-from=/home/dang/.scripts/diffrc -up -ruN liferea-1.4.23.orig/m4/gecko.m4 liferea-1.4.23/m4/gecko.m4
---- liferea-1.4.23.orig/m4/gecko.m4 2008-10-26 16:55:39.000000000 -0400
-+++ liferea-1.4.23/m4/gecko.m4 2008-12-23 11:56:13.000000000 -0500
-@@ -76,7 +76,9 @@ fi
-
- AC_MSG_RESULT([$gecko_cv_gecko])
-
--if test "x$gecko_cv_gecko" = "x"; then
-+if test "x$gecko_cv_gecko" = "xno"; then
-+ gecko_cv_have_gecko=no
-+elif test "x$gecko_cv_gecko" = "x"; then
- ifelse([$3],,[AC_MSG_ERROR([No gecko found; you may need to adjust PKG_CONFIG_PATH or install a mozilla/firefox/xulrunner -devel package])],[$3])
- gecko_cv_have_gecko=no
- elif ! ( echo "$_geckos" | egrep "(^| )$gecko_cv_gecko(\$| )" > /dev/null); then