diff options
author | Stefan Schweizer <genstef@gentoo.org> | 2007-02-10 22:58:29 +0000 |
---|---|---|
committer | Stefan Schweizer <genstef@gentoo.org> | 2007-02-10 22:58:29 +0000 |
commit | 2f7300f411d22224de463086016a416b0782a020 (patch) | |
tree | 9a1fb6a583823054ba64d4fff8192527888c6dc8 /sys-fs/gnomevfs-mount | |
parent | remove .desktop redundancy thanks to jakub in bug 162775 (diff) | |
download | gentoo-2-2f7300f411d22224de463086016a416b0782a020.tar.gz gentoo-2-2f7300f411d22224de463086016a416b0782a020.tar.bz2 gentoo-2-2f7300f411d22224de463086016a416b0782a020.zip |
as-needed patch thanks to Alex <nesl247@gmail.com> in bug 162130
(Portage version: 2.1.2-r7)
Diffstat (limited to 'sys-fs/gnomevfs-mount')
-rw-r--r-- | sys-fs/gnomevfs-mount/ChangeLog | 6 | ||||
-rw-r--r-- | sys-fs/gnomevfs-mount/files/gnomevfs-mount-as-needed.patch | 9 | ||||
-rw-r--r-- | sys-fs/gnomevfs-mount/gnomevfs-mount-0.2.0.ebuild | 12 |
3 files changed, 24 insertions, 3 deletions
diff --git a/sys-fs/gnomevfs-mount/ChangeLog b/sys-fs/gnomevfs-mount/ChangeLog index e20c6cd39d4a..4625403e5985 100644 --- a/sys-fs/gnomevfs-mount/ChangeLog +++ b/sys-fs/gnomevfs-mount/ChangeLog @@ -1,6 +1,10 @@ # ChangeLog for sys-fs/gnomevfs-mount # Copyright 1999-2007 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/sys-fs/gnomevfs-mount/ChangeLog,v 1.2 2007/02/09 08:38:05 flameeyes Exp $ +# $Header: /var/cvsroot/gentoo-x86/sys-fs/gnomevfs-mount/ChangeLog,v 1.3 2007/02/10 22:58:29 genstef Exp $ + + 10 Feb 2007; <genstef@gentoo.org> +files/gnomevfs-mount-as-needed.patch, + gnomevfs-mount-0.2.0.ebuild: + as-needed patch thanks to Alex <nesl247@gmail.com> in bug 162130 09 Feb 2007; Diego Pettenò <flameeyes@gentoo.org> ChangeLog: Regenerate digest in Manifest2 format. diff --git a/sys-fs/gnomevfs-mount/files/gnomevfs-mount-as-needed.patch b/sys-fs/gnomevfs-mount/files/gnomevfs-mount-as-needed.patch new file mode 100644 index 000000000000..947a1c3a02b4 --- /dev/null +++ b/sys-fs/gnomevfs-mount/files/gnomevfs-mount-as-needed.patch @@ -0,0 +1,9 @@ +--- src/Makefile.am 2007-01-14 21:33:09.000000000 -0500 ++++ src/Makefile.am 2007-01-14 21:36:03.000000000 -0500 +@@ -9,5 +9,6 @@ + gnomevfs_mount_CFLAGS = @GNOME_VFS_CFLAGS@ @GNOME_KEYRING_CFLAGS@ + + gnomevfs_umount_LDFLAGS = @GLIB_LIBS@ ++gnomevfs_umount_LDADD = $(GLIB_LIBS) + gnomevfs_umount_CFLAGS = @GLIB_CFLAGS@ + diff --git a/sys-fs/gnomevfs-mount/gnomevfs-mount-0.2.0.ebuild b/sys-fs/gnomevfs-mount/gnomevfs-mount-0.2.0.ebuild index 3afd37c9bc79..a9f661251a07 100644 --- a/sys-fs/gnomevfs-mount/gnomevfs-mount-0.2.0.ebuild +++ b/sys-fs/gnomevfs-mount/gnomevfs-mount-0.2.0.ebuild @@ -1,6 +1,8 @@ -# Copyright 1999-2005 Gentoo Foundation +# Copyright 1999-2007 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/sys-fs/gnomevfs-mount/gnomevfs-mount-0.2.0.ebuild,v 1.1 2005/03/10 15:24:07 genstef Exp $ +# $Header: /var/cvsroot/gentoo-x86/sys-fs/gnomevfs-mount/gnomevfs-mount-0.2.0.ebuild,v 1.2 2007/02/10 22:58:29 genstef Exp $ + +inherit eutils DESCRIPTION="A program for mounting gnome-vfs-uris onto the linux filesystem." HOMEPAGE="http://primates.ximian.com/~sandino/gnomevfs-mount/" @@ -14,6 +16,12 @@ IUSE="" RDEPEND=">=sys-fs/fuse-2.2 >=gnome-base/gnome-vfs-2.6.1.1" +src_unpack() { + unpack ${A} + cd ${S} + epatch ${FILESDIR}/gnomevfs-mount-as-needed.patch +} + src_install() { make DESTDIR=${D} install || die "make install failed" dodoc AUTHORS ChangeLog INSTALL README |