diff options
author | 2013-01-17 02:34:39 +0000 | |
---|---|---|
committer | 2013-01-17 02:34:39 +0000 | |
commit | 3ec01dc6fb09c8f03ec8904685fa445ad2745aba (patch) | |
tree | 029da8ec7a72ea15cb44d33a278efcb972f1e16f /sys-fs/ntfs3g | |
parent | fix build on x86 (bug #452388) (diff) | |
download | gentoo-2-3ec01dc6fb09c8f03ec8904685fa445ad2745aba.tar.gz gentoo-2-3ec01dc6fb09c8f03ec8904685fa445ad2745aba.tar.bz2 gentoo-2-3ec01dc6fb09c8f03ec8904685fa445ad2745aba.zip |
Fix for prefix.
(Portage version: 2.2.0_alpha154/cvs/Linux i686, signed Manifest commit with key 0xFDE8EF85AE5719A3)
Diffstat (limited to 'sys-fs/ntfs3g')
-rw-r--r-- | sys-fs/ntfs3g/ChangeLog | 5 | ||||
-rw-r--r-- | sys-fs/ntfs3g/ntfs3g-2013.1.13.ebuild | 13 |
2 files changed, 13 insertions, 5 deletions
diff --git a/sys-fs/ntfs3g/ChangeLog b/sys-fs/ntfs3g/ChangeLog index 17522f818fcb..5cb29d907680 100644 --- a/sys-fs/ntfs3g/ChangeLog +++ b/sys-fs/ntfs3g/ChangeLog @@ -1,6 +1,9 @@ # ChangeLog for sys-fs/ntfs3g # Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/sys-fs/ntfs3g/ChangeLog,v 1.144 2013/01/15 01:36:53 chutzpah Exp $ +# $Header: /var/cvsroot/gentoo-x86/sys-fs/ntfs3g/ChangeLog,v 1.145 2013/01/17 02:34:39 zmedico Exp $ + + 17 Jan 2013; Zac Medico <zmedico@gentoo.org> ntfs3g-2013.1.13.ebuild: + Fix for prefix. *ntfs3g-2013.1.13 (15 Jan 2013) diff --git a/sys-fs/ntfs3g/ntfs3g-2013.1.13.ebuild b/sys-fs/ntfs3g/ntfs3g-2013.1.13.ebuild index d697002f8c4e..7342acbe7024 100644 --- a/sys-fs/ntfs3g/ntfs3g-2013.1.13.ebuild +++ b/sys-fs/ntfs3g/ntfs3g-2013.1.13.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2013 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/sys-fs/ntfs3g/ntfs3g-2013.1.13.ebuild,v 1.1 2013/01/15 01:36:53 chutzpah Exp $ +# $Header: /var/cvsroot/gentoo-x86/sys-fs/ntfs3g/ntfs3g-2013.1.13.ebuild,v 1.2 2013/01/17 02:34:39 zmedico Exp $ EAPI=5 inherit eutils linux-info udev @@ -43,8 +43,15 @@ pkg_setup() { fi } +src_prepare() { + # add missing $(sbindir) references + sed -e 's:sbin\($\|/\):$(sbindir)\1:g' \ + -i ntfsprogs/Makefile.in src/Makefile.in || die +} + src_configure() { econf \ + --prefix="${EPREFIX}"/usr \ --exec-prefix="${EPREFIX}"/usr \ --docdir="${EPREFIX}"/usr/share/doc/${PF} \ $(use_enable debug) \ @@ -68,9 +75,7 @@ src_install() { prune_libtool_files # http://bugs.gentoo.org/398069 - dodir /usr/sbin - mv "${ED}"/sbin/* "${ED}"/usr/sbin || die - rm -r "${ED}"/sbin + rmdir "${D}"/sbin dosym mount.ntfs-3g /usr/sbin/mount.ntfs #374197 } |