summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSamuli Suominen <ssuominen@gentoo.org>2011-01-29 19:42:40 +0000
committerSamuli Suominen <ssuominen@gentoo.org>2011-01-29 19:42:40 +0000
commit1f8ecad73f47ae7f9e240148f085c53e8d319beb (patch)
tree34391feead188859843119d7b32c23fedcf104c9 /gnome-extra/avant-window-navigator-extras/files
parentRequire qt built with glib support (bug 353143) (diff)
downloadgentoo-2-1f8ecad73f47ae7f9e240148f085c53e8d319beb.tar.gz
gentoo-2-1f8ecad73f47ae7f9e240148f085c53e8d319beb.tar.bz2
gentoo-2-1f8ecad73f47ae7f9e240148f085c53e8d319beb.zip
punt old
(Portage version: 2.2.0_alpha19/cvs/Linux x86_64)
Diffstat (limited to 'gnome-extra/avant-window-navigator-extras/files')
-rw-r--r--gnome-extra/avant-window-navigator-extras/files/0.2.6-r346-gconf-conditional.patch31
-rw-r--r--gnome-extra/avant-window-navigator-extras/files/avant-window-navigator-extras-0.2.6-xfce-build.patch26
2 files changed, 0 insertions, 57 deletions
diff --git a/gnome-extra/avant-window-navigator-extras/files/0.2.6-r346-gconf-conditional.patch b/gnome-extra/avant-window-navigator-extras/files/0.2.6-r346-gconf-conditional.patch
deleted file mode 100644
index 578c351af969..000000000000
--- a/gnome-extra/avant-window-navigator-extras/files/0.2.6-r346-gconf-conditional.patch
+++ /dev/null
@@ -1,31 +0,0 @@
---- configure.ac.orig 2008-02-22 16:39:35.000000000 +0100
-+++ configure.ac 2008-03-13 22:21:18.000000000 +0100
-@@ -18,14 +18,6 @@
- AC_PROG_LIBTOOL
-
- dnl ==============================================
--dnl gconf stuff
--dnl ==============================================
--AC_PATH_PROG(GCONFTOOL, gconftool-2, no)
--if test x"$GCONFTOOL" = xno; then
-- AC_MSG_ERROR([gconftool-2 executable not found in your path - should be installed with GConf])
--fi
--
--dnl ==============================================
- dnl translation support
- dnl ==============================================
-
-@@ -243,6 +235,13 @@
- dnl ==============================================
- dnl GConf
- dnl ==============================================
-+if test "$with_gconf" != "no"; then
-+AC_PATH_PROG(GCONFTOOL, gconftool-2, no)
-+ if test x"$GCONFTOOL" = xno; then
-+ AC_MSG_ERROR([gconftool-2 executable not found in your path - should be installed with GConf])
-+ fi
-+fi
-+
- AM_GCONF_SOURCE_2
-
- dnl Please keep in alphabetical order
diff --git a/gnome-extra/avant-window-navigator-extras/files/avant-window-navigator-extras-0.2.6-xfce-build.patch b/gnome-extra/avant-window-navigator-extras/files/avant-window-navigator-extras-0.2.6-xfce-build.patch
deleted file mode 100644
index 97d6d073b551..000000000000
--- a/gnome-extra/avant-window-navigator-extras/files/avant-window-navigator-extras-0.2.6-xfce-build.patch
+++ /dev/null
@@ -1,26 +0,0 @@
-#
-# Fix build failures with USE="xfce"
-# Gentoo: https://bugs.gentoo.org/show_bug.cgi?id=216746
-#
---- a/src/affinity/aff-results.c 2008-02-14 09:49:53.000000000 -0700
-+++ b/src/affinity/aff-results.c 2008-05-15 18:14:09.000000000 -0600
-@@ -422,7 +422,7 @@
- const char *name = gnome_vfs_mime_application_get_name (app);
- const char *icon_name = gnome_vfs_mime_application_get_icon (app);
- #elif defined(LIBAWN_USE_XFCE)
-- ThunarVfsMimeApplication *app = (ThunarVfsApplication *)a->data;
-+ ThunarVfsMimeApplication *app = (ThunarVfsMimeApplication *)a->data;
- const char *name = thunar_vfs_mime_application_get_name (app);
- const char *icon_name = thunar_vfs_mime_handler_lookup_icon_name (THUNAR_VFS_MIME_HANDLER (app), gtk_icon_theme_get_default ());
- #else
---- a/src/affinity/aff-start.c 2008-02-14 09:49:53.000000000 -0700
-+++ b/src/affinity/aff-start.c 2008-05-15 18:14:09.000000000 -0600
-@@ -203,7 +203,7 @@
- #ifdef LIBAWN_USE_GNOME
- local_uri = gnome_vfs_get_local_path_from_uri (gtk_recent_info_get_uri (info));
- #elif defined(LIBAWN_USE_XFCE)
-- ThunarVfsPath *path = thunar_vfs_path_new (gtk_recent_info_get_uri (info));
-+ ThunarVfsPath *path = thunar_vfs_path_new (gtk_recent_info_get_uri (info), NULL);
- local_uri = thunar_vfs_path_dup_string (path);
- thunar_vfs_path_unref (path);
- #else