diff options
author | Daniel Gryniewicz <dang@gentoo.org> | 2008-03-31 19:34:43 +0000 |
---|---|---|
committer | Daniel Gryniewicz <dang@gentoo.org> | 2008-03-31 19:34:43 +0000 |
commit | e4ee725a4a337ea751580239d914b158c844968b (patch) | |
tree | 6cebd296677745e4f8f576fb55ed998ef8d846e1 /x11-libs/gksu | |
parent | boot runlevel fixes. Add evms. Support new dmcrypt. Fix device-mapper (dmtab ... (diff) | |
download | gentoo-2-e4ee725a4a337ea751580239d914b158c844968b.tar.gz gentoo-2-e4ee725a4a337ea751580239d914b158c844968b.tar.bz2 gentoo-2-e4ee725a4a337ea751580239d914b158c844968b.zip |
gksu needs gnome-vfs, but it's not pulled by nautilus anymore. Explicitly pull it in, along with it's CFLAGS and LDFLAGS. Bug #215419
(Portage version: 2.1.4.4)
Diffstat (limited to 'x11-libs/gksu')
-rw-r--r-- | x11-libs/gksu/ChangeLog | 7 | ||||
-rw-r--r-- | x11-libs/gksu/files/gksu-2.0.0-gnome-2.22.patch | 12 | ||||
-rw-r--r-- | x11-libs/gksu/gksu-2.0.0.ebuild | 13 |
3 files changed, 28 insertions, 4 deletions
diff --git a/x11-libs/gksu/ChangeLog b/x11-libs/gksu/ChangeLog index c4659ba5a43e..ab8375b255ca 100644 --- a/x11-libs/gksu/ChangeLog +++ b/x11-libs/gksu/ChangeLog @@ -1,6 +1,11 @@ # ChangeLog for x11-libs/gksu # Copyright 2000-2008 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/x11-libs/gksu/ChangeLog,v 1.43 2008/03/31 04:27:27 ricmm Exp $ +# $Header: /var/cvsroot/gentoo-x86/x11-libs/gksu/ChangeLog,v 1.44 2008/03/31 19:34:42 dang Exp $ + + 31 Mar 2008; Daniel Gryniewicz <dang@gentoo.org> + +files/gksu-2.0.0-gnome-2.22.patch, gksu-2.0.0.ebuild: + gksu needs gnome-vfs, but it's not pulled by nautilus anymore. Explicitly + pull it in, along with it's CFLAGS and LDFLAGS. Bug #215419 31 Mar 2008; <ricmm@gentoo.org> gksu-2.0.0.ebuild: Drop to ~mips due to unstable deps diff --git a/x11-libs/gksu/files/gksu-2.0.0-gnome-2.22.patch b/x11-libs/gksu/files/gksu-2.0.0-gnome-2.22.patch new file mode 100644 index 000000000000..b812873c4b94 --- /dev/null +++ b/x11-libs/gksu/files/gksu-2.0.0-gnome-2.22.patch @@ -0,0 +1,12 @@ +diff --exclude-from=/home/dang/.scripts/diffrc -up -ruN gksu-2.0.0.orig/configure.ac gksu-2.0.0/configure.ac +--- gksu-2.0.0.orig/configure.ac 2006-09-23 16:08:21.000000000 -0400 ++++ gksu-2.0.0/configure.ac 2008-03-31 15:21:46.000000000 -0400 +@@ -66,7 +66,7 @@ AC_ARG_ENABLE(nautilus-extension, [ --e + AM_CONDITIONAL(ENABLE_NAUTILUS_EXTENSION, test x$enable_nautilus_extension = xyes) + + if test x$enable_nautilus_extension = xyes; then +- PKG_CHECK_MODULES(NAUTILUS, [libgksu2 >= 2.0.0, libnautilus-extension]) ++ PKG_CHECK_MODULES(NAUTILUS, [libgksu2 >= 2.0.0, libnautilus-extension, gnome-vfs-2.0]) + fi + + AC_CONFIG_FILES([ diff --git a/x11-libs/gksu/gksu-2.0.0.ebuild b/x11-libs/gksu/gksu-2.0.0.ebuild index 45579f42e074..7113e48915cd 100644 --- a/x11-libs/gksu/gksu-2.0.0.ebuild +++ b/x11-libs/gksu/gksu-2.0.0.ebuild @@ -1,8 +1,8 @@ # Copyright 1999-2008 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/x11-libs/gksu/gksu-2.0.0.ebuild,v 1.21 2008/03/31 04:27:27 ricmm Exp $ +# $Header: /var/cvsroot/gentoo-x86/x11-libs/gksu/gksu-2.0.0.ebuild,v 1.22 2008/03/31 19:34:42 dang Exp $ -inherit gnome2 fixheadtails +inherit gnome2 fixheadtails eutils autotools DESCRIPTION="A gtk+ frontend for libgksu" HOMEPAGE="http://www.nongnu.org/gksu/" @@ -16,7 +16,10 @@ IUSE="doc gnome" RDEPEND=">=x11-libs/libgksu-2 >=x11-libs/gtk+-2.4.0 >=gnome-base/gconf-2.0 - gnome? ( >=gnome-base/nautilus-2 )" + gnome? ( + >=gnome-base/gnome-vfs-2 + >=gnome-base/nautilus-2 + )" DEPEND="${RDEPEND} doc? ( dev-util/gtk-doc )" @@ -27,6 +30,10 @@ USE_DESTDIR="1" src_unpack() { gnome2_src_unpack ht_fix_file "${S}/gksu-migrate-conf.sh" + + epatch "${FILESDIR}"/${P}-gnome-2.22.patch + + eautoreconf } src_install() { |