diff options
author | Sven Wegener <swegener@gentoo.org> | 2007-10-11 12:20:34 +0000 |
---|---|---|
committer | Sven Wegener <swegener@gentoo.org> | 2007-10-11 12:20:34 +0000 |
commit | 67088535f9144c051b4483622064eddbb809b24b (patch) | |
tree | e9d2bb24f72fed55ef177b31c7fd601148aba942 /sys-fs/gnomevfs-mount | |
parent | Switch to make install, diffutils is only a runtime dependency. (diff) | |
download | gentoo-2-67088535f9144c051b4483622064eddbb809b24b.tar.gz gentoo-2-67088535f9144c051b4483622064eddbb809b24b.tar.bz2 gentoo-2-67088535f9144c051b4483622064eddbb809b24b.zip |
Add ~amd64 keyword. Update --as-needed patch. Quote variables.
(Portage version: 2.1.3.12)
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 | 18 | ||||
-rw-r--r-- | sys-fs/gnomevfs-mount/gnomevfs-mount-0.2.0.ebuild | 26 |
3 files changed, 35 insertions, 15 deletions
diff --git a/sys-fs/gnomevfs-mount/ChangeLog b/sys-fs/gnomevfs-mount/ChangeLog index fb92ea874d64..1247835dc097 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.4 2007/05/12 02:17:05 dsd Exp $ +# $Header: /var/cvsroot/gentoo-x86/sys-fs/gnomevfs-mount/ChangeLog,v 1.5 2007/10/11 12:20:33 swegener Exp $ + + 11 Oct 2007; Sven Wegener <swegener@gentoo.org> + files/gnomevfs-mount-as-needed.patch, gnomevfs-mount-0.2.0.ebuild: + Add ~amd64 keyword. Update --as-needed patch. Quote variables. 12 May 2007; Daniel Drake <dsd@gentoo.org> metadata.xml: Move from kernel to kernel-misc herd diff --git a/sys-fs/gnomevfs-mount/files/gnomevfs-mount-as-needed.patch b/sys-fs/gnomevfs-mount/files/gnomevfs-mount-as-needed.patch index 947a1c3a02b4..9f8fcd27d624 100644 --- a/sys-fs/gnomevfs-mount/files/gnomevfs-mount-as-needed.patch +++ b/sys-fs/gnomevfs-mount/files/gnomevfs-mount-as-needed.patch @@ -1,9 +1,15 @@ ---- 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/src/Makefile.am ++++ gnomevfs-mount/src/Makefile.am +@@ -4,10 +4,9 @@ + + gnomevfs_mount_SOURCES = gnomevfs-mount.c gnomevfs-mount.h + +-gnomevfs_mount_LDFLAGS = @GNOME_VFS_LIBS@ @GNOME_KEYRING_LIBS@ -lfuse +-gnomevfs_mount_LDADD = -lfuse ++gnomevfs_mount_LDADD = -lfuse @GLIB_LIBS@ @GNOME_VFS_LIBS@ @GNOME_KEYRING_LIBS@ gnomevfs_mount_CFLAGS = @GNOME_VFS_CFLAGS@ @GNOME_KEYRING_CFLAGS@ - gnomevfs_umount_LDFLAGS = @GLIB_LIBS@ -+gnomevfs_umount_LDADD = $(GLIB_LIBS) +-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 a9f661251a07..75a0f9274e2f 100644 --- a/sys-fs/gnomevfs-mount/gnomevfs-mount-0.2.0.ebuild +++ b/sys-fs/gnomevfs-mount/gnomevfs-mount-0.2.0.ebuild @@ -1,8 +1,10 @@ # 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.2 2007/02/10 22:58:29 genstef Exp $ +# $Header: /var/cvsroot/gentoo-x86/sys-fs/gnomevfs-mount/gnomevfs-mount-0.2.0.ebuild,v 1.3 2007/10/11 12:20:33 swegener Exp $ -inherit eutils +WANT_AUTOMAKE="1.7" + +inherit eutils flag-o-matic autotools DESCRIPTION="A program for mounting gnome-vfs-uris onto the linux filesystem." HOMEPAGE="http://primates.ximian.com/~sandino/gnomevfs-mount/" @@ -10,19 +12,27 @@ SRC_URI="http://primates.ximian.com/~sandino/gnomevfs-mount/files/${P}.tar.bz2" LICENSE="GPL-2" SLOT="0" -KEYWORDS="~x86" +KEYWORDS="~amd64 ~x86" IUSE="" -RDEPEND=">=sys-fs/fuse-2.2 +DEPEND=">=sys-fs/fuse-2.2 >=gnome-base/gnome-vfs-2.6.1.1" +RDEPEND="${DEPEND}" + +pkg_setup() { + append-lfs-flags +} src_unpack() { unpack ${A} - cd ${S} - epatch ${FILESDIR}/gnomevfs-mount-as-needed.patch + cd "${S}" + + epatch "${FILESDIR}"/gnomevfs-mount-as-needed.patch + + eautomake } src_install() { - make DESTDIR=${D} install || die "make install failed" - dodoc AUTHORS ChangeLog INSTALL README + make DESTDIR="${D}" install || die "make install failed" + dodoc AUTHORS ChangeLog README } |