summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorHans de Graaff <graaff@gentoo.org>2008-12-13 10:28:12 +0000
committerHans de Graaff <graaff@gentoo.org>2008-12-13 10:28:12 +0000
commit6c2d5db01775d34b8e097a746315761452e2bbde (patch)
tree7f837a008747b165938774f8bf330b34d3fa6f92 /mail-client/mail-notification/files
parentSupport bash array PATCHES (diff)
downloadgentoo-2-6c2d5db01775d34b8e097a746315761452e2bbde.tar.gz
gentoo-2-6c2d5db01775d34b8e097a746315761452e2bbde.tar.bz2
gentoo-2-6c2d5db01775d34b8e097a746315761452e2bbde.zip
Remove old versions broken with newer eel, bug #214301.
(Portage version: 2.1.6.1/cvs/Linux 2.6.26-gentoo-r2 x86_64)
Diffstat (limited to 'mail-client/mail-notification/files')
-rw-r--r--mail-client/mail-notification/files/mail-notification-4.1-evo-2.12-api-change.patch12
-rw-r--r--mail-client/mail-notification/files/mail-notification-4.1-find-evo-2.12.patch22
-rw-r--r--mail-client/mail-notification/files/mail-notification-5.2-dont-update-cache.patch25
-rw-r--r--mail-client/mail-notification/files/mail-notification-5.2-evo-crash-fix.patch11
-rw-r--r--mail-client/mail-notification/files/mail-notification-5.3-dont-update-cache.patch25
5 files changed, 0 insertions, 95 deletions
diff --git a/mail-client/mail-notification/files/mail-notification-4.1-evo-2.12-api-change.patch b/mail-client/mail-notification/files/mail-notification-4.1-evo-2.12-api-change.patch
deleted file mode 100644
index 938c5e72ead6..000000000000
--- a/mail-client/mail-notification/files/mail-notification-4.1-evo-2.12-api-change.patch
+++ /dev/null
@@ -1,12 +0,0 @@
-diff -Nur mail-notification-4.1.dfsg.1/src/mn-evolution-folder-tree-control.gob mail-notification-4.1.dfsg.1.new/src/mn-evolution-folder-tree-control.gob
---- mail-notification-4.1.dfsg.1/src/mn-evolution-folder-tree-control.gob 2007-06-26 13:36:57.000000000 +0200
-+++ mail-notification-4.1.dfsg.1.new/src/mn-evolution-folder-tree-control.gob 2007-08-15 16:54:28.000000000 +0200
-@@ -126,7 +126,7 @@
- switch (arg_id)
- {
- case PROP_SELECTED_URI:
-- em_folder_tree_set_selected(tree, BONOBO_ARG_GET_STRING(arg));
-+ em_folder_tree_set_selected(tree, BONOBO_ARG_GET_STRING(arg), TRUE);
- break;
-
- default:
diff --git a/mail-client/mail-notification/files/mail-notification-4.1-find-evo-2.12.patch b/mail-client/mail-notification/files/mail-notification-4.1-find-evo-2.12.patch
deleted file mode 100644
index 052b29cba6c1..000000000000
--- a/mail-client/mail-notification/files/mail-notification-4.1-find-evo-2.12.patch
+++ /dev/null
@@ -1,22 +0,0 @@
---- mail-notification-4.1/m4/evolution-plugin.m4.evo2.12 2006-11-02 18:18:23.000000000 +0100
-+++ mail-notification-4.1/m4/evolution-plugin.m4 2007-06-26 16:06:22.000000000 +0200
-@@ -13,12 +13,17 @@ AC_DEFUN([AM_PATH_EVOLUTION_PLUGIN],
-
- evolution_branch=ifelse([$1],, [2.4], [$1])
- evolution_plugin_min_version=ifelse([$2],,, [>= $2])
-+evolution_plugin_pkgconf=evolution-plugin-$evolution_branch
-
--PKG_CHECK_MODULES(EVOLUTION_PLUGIN, [evolution-plugin-$evolution_branch $evolution_plugin_min_version], [found=yes], [found=no])
-+PKG_CHECK_MODULES(EVOLUTION_PLUGIN, [$evolution_plugin_pkgconf $evolution_plugin_min_version], [found=yes], [found=no])
-+
-+if test $found = no; then
-+PKG_CHECK_MODULES(EVOLUTION_PLUGIN, [evolution-plugin $evolution_plugin_min_version], [found=yes;evolution_plugin_pkgconf=evolution-plugin], [found=no])
-+fi
-
- if test $found = yes; then
- AC_MSG_CHECKING([for the Evolution plugin directory])
-- evolution_plugindir=`$PKG_CONFIG --variable=plugindir evolution-plugin-$evolution_branch 2>/dev/null`
-+ evolution_plugindir=`$PKG_CONFIG --variable=plugindir $evolution_plugin_pkgconf 2>/dev/null`
- if test -n "$evolution_plugindir"; then
- AC_MSG_RESULT([$evolution_plugindir])
- else
diff --git a/mail-client/mail-notification/files/mail-notification-5.2-dont-update-cache.patch b/mail-client/mail-notification/files/mail-notification-5.2-dont-update-cache.patch
deleted file mode 100644
index 6cdade158a71..000000000000
--- a/mail-client/mail-notification/files/mail-notification-5.2-dont-update-cache.patch
+++ /dev/null
@@ -1,25 +0,0 @@
-Our gnome2 eclass takes care of proper rebuilding on the icon
-cache. We have to remove this also because it causes access
-violations.
---- jbsrc/jb.c.~1~ 2008-03-20 16:53:02.000000000 +0100
-+++ jbsrc/jb.c 2008-03-26 20:51:45.641363619 +0100
-@@ -327,7 +327,6 @@
- jb_package_add_resources (void)
- {
- JBGroup *group;
-- JBRule *rule;
- JBObject *object;
-
- if (jb_variable_get_bool("compile-warnings"))
-@@ -362,11 +361,6 @@
- if (jb_variable_get_bool("hotmail"))
- jb_group_add_data_file(group, "hotmail.png", "$pkgdatadir");
-
-- rule = jb_rule_new();
-- jb_rule_set_install_message(rule, "updating the GTK+ icon cache");
-- jb_rule_add_install_command(rule, "-gtk-update-icon-cache -f -t $datadir/icons/hicolor");
-- jb_group_add_resource(group, JB_GROUP_RESOURCE(rule));
--
- jb_group_add(group);
-
- /*** data ******************************************************************/
diff --git a/mail-client/mail-notification/files/mail-notification-5.2-evo-crash-fix.patch b/mail-client/mail-notification/files/mail-notification-5.2-evo-crash-fix.patch
deleted file mode 100644
index 86bae2a602b4..000000000000
--- a/mail-client/mail-notification/files/mail-notification-5.2-evo-crash-fix.patch
+++ /dev/null
@@ -1,11 +0,0 @@
---- build/src/mn-evolution-server.c.orig 2008-03-20 16:53:57.000000000 +0100
-+++ build/src/mn-evolution-server.c 2008-04-11 16:14:44.000000000 +0200
-@@ -556,7 +556,7 @@
- G_TYPE_STRING, camel_message_info_from(info),
- /* char *subject */
- G_TYPE_STRING, camel_message_info_subject(info),
-- 0);
-+ (GType) 0);
- }}
- #line 562 "mn-evolution-server.c"
- #undef __GOB_FUNCTION__
diff --git a/mail-client/mail-notification/files/mail-notification-5.3-dont-update-cache.patch b/mail-client/mail-notification/files/mail-notification-5.3-dont-update-cache.patch
deleted file mode 100644
index 6cdade158a71..000000000000
--- a/mail-client/mail-notification/files/mail-notification-5.3-dont-update-cache.patch
+++ /dev/null
@@ -1,25 +0,0 @@
-Our gnome2 eclass takes care of proper rebuilding on the icon
-cache. We have to remove this also because it causes access
-violations.
---- jbsrc/jb.c.~1~ 2008-03-20 16:53:02.000000000 +0100
-+++ jbsrc/jb.c 2008-03-26 20:51:45.641363619 +0100
-@@ -327,7 +327,6 @@
- jb_package_add_resources (void)
- {
- JBGroup *group;
-- JBRule *rule;
- JBObject *object;
-
- if (jb_variable_get_bool("compile-warnings"))
-@@ -362,11 +361,6 @@
- if (jb_variable_get_bool("hotmail"))
- jb_group_add_data_file(group, "hotmail.png", "$pkgdatadir");
-
-- rule = jb_rule_new();
-- jb_rule_set_install_message(rule, "updating the GTK+ icon cache");
-- jb_rule_add_install_command(rule, "-gtk-update-icon-cache -f -t $datadir/icons/hicolor");
-- jb_group_add_resource(group, JB_GROUP_RESOURCE(rule));
--
- jb_group_add(group);
-
- /*** data ******************************************************************/