diff options
author | Benda XU <heroxbd@gentoo.org> | 2013-10-20 02:52:08 +0000 |
---|---|---|
committer | Benda XU <heroxbd@gentoo.org> | 2013-10-20 02:52:08 +0000 |
commit | 90a738c8a01ef09041c735a4ecf805d3632bee00 (patch) | |
tree | 50e5e15d3f22d36dca62ca461893bc5c5413c500 /app-misc | |
parent | Re-enable V8 snapshot on PaX systems. (diff) | |
download | gentoo-2-90a738c8a01ef09041c735a4ecf805d3632bee00.tar.gz gentoo-2-90a738c8a01ef09041c735a4ecf805d3632bee00.tar.bz2 gentoo-2-90a738c8a01ef09041c735a4ecf805d3632bee00.zip |
Prefix support, bug 488460
(Portage version: 2.2.1/cvs/Linux x86_64, unsigned Manifest commit)
Diffstat (limited to 'app-misc')
-rw-r--r-- | app-misc/pax-utils/ChangeLog | 5 | ||||
-rw-r--r-- | app-misc/pax-utils/pax-utils-0.7.ebuild | 8 |
2 files changed, 9 insertions, 4 deletions
diff --git a/app-misc/pax-utils/ChangeLog b/app-misc/pax-utils/ChangeLog index 49041629ed19..84a113d67d40 100644 --- a/app-misc/pax-utils/ChangeLog +++ b/app-misc/pax-utils/ChangeLog @@ -1,6 +1,9 @@ # ChangeLog for app-misc/pax-utils # Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/app-misc/pax-utils/ChangeLog,v 1.146 2013/10/17 15:27:56 jer Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-misc/pax-utils/ChangeLog,v 1.147 2013/10/20 02:52:08 heroxbd Exp $ + + 20 Oct 2013; Benda Xu <heroxbd@gentoo.org> pax-utils-0.7.ebuild: + Prefix support, bug 488460 17 Oct 2013; Jeroen Roovers <jer@gentoo.org> pax-utils-0.7.ebuild: Stable for HPPA (bug #487676). diff --git a/app-misc/pax-utils/pax-utils-0.7.ebuild b/app-misc/pax-utils/pax-utils-0.7.ebuild index b44a16243e29..c1f71c4bf2ae 100644 --- a/app-misc/pax-utils/pax-utils-0.7.ebuild +++ b/app-misc/pax-utils/pax-utils-0.7.ebuild @@ -1,6 +1,8 @@ # Copyright 1999-2013 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/app-misc/pax-utils/pax-utils-0.7.ebuild,v 1.2 2013/10/17 15:27:56 jer Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-misc/pax-utils/pax-utils-0.7.ebuild,v 1.3 2013/10/20 02:52:08 heroxbd Exp $ + +EAPI=4 inherit eutils toolchain-funcs unpacker @@ -25,7 +27,7 @@ _emake() { emake \ USE_CAP=$(usex caps) \ USE_PYTHON=$(usex python) \ - "$@" || die + "$@" } src_compile() { @@ -37,6 +39,6 @@ src_test() { } src_install() { - _emake DESTDIR="${D}" PKGDOCDIR='$(DOCDIR)'/${PF} install + _emake DESTDIR="${ED}" PKGDOCDIR='$(DOCDIR)'/${PF} install prepalldocs } |