diff options
author | 2010-04-18 13:14:04 +0000 | |
---|---|---|
committer | 2010-04-18 13:14:04 +0000 | |
commit | 4ab1aae9c45a4ae311d26e83fed58368c4f69c8e (patch) | |
tree | 653fccc0ec09ad2037412aac7eb2d372ad83dfe5 /app-emulation | |
parent | ppc stable #297299 (diff) | |
download | gentoo-2-4ab1aae9c45a4ae311d26e83fed58368c4f69c8e.tar.gz gentoo-2-4ab1aae9c45a4ae311d26e83fed58368c4f69c8e.tar.bz2 gentoo-2-4ab1aae9c45a4ae311d26e83fed58368c4f69c8e.zip |
Fix Prefix support
(Portage version: 2.2.00.15842-prefix/cvs/Darwin powerpc)
Diffstat (limited to 'app-emulation')
-rw-r--r-- | app-emulation/spim/ChangeLog | 5 | ||||
-rw-r--r-- | app-emulation/spim/spim-8.0.ebuild | 12 |
2 files changed, 10 insertions, 7 deletions
diff --git a/app-emulation/spim/ChangeLog b/app-emulation/spim/ChangeLog index 667871fea4cb..2622fbf6e9a3 100644 --- a/app-emulation/spim/ChangeLog +++ b/app-emulation/spim/ChangeLog @@ -1,6 +1,9 @@ # ChangeLog for app-emulation/spim # Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/app-emulation/spim/ChangeLog,v 1.51 2010/04/08 18:05:20 ricmm Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-emulation/spim/ChangeLog,v 1.52 2010/04/18 13:14:04 grobian Exp $ + + 18 Apr 2010; Fabian Groffen <grobian@gentoo.org> spim-8.0.ebuild: + Fix Prefix support *spim-8.0 (08 Apr 2010) diff --git a/app-emulation/spim/spim-8.0.ebuild b/app-emulation/spim/spim-8.0.ebuild index 05510cba7d19..8bddd0513f1e 100644 --- a/app-emulation/spim/spim-8.0.ebuild +++ b/app-emulation/spim/spim-8.0.ebuild @@ -1,8 +1,8 @@ # Copyright 1999-2010 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/app-emulation/spim/spim-8.0.ebuild,v 1.1 2010/04/08 18:05:20 ricmm Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-emulation/spim/spim-8.0.ebuild,v 1.2 2010/04/18 13:14:04 grobian Exp $ -EAPI="2" +EAPI="3" inherit eutils toolchain-funcs @@ -46,11 +46,11 @@ src_configure() { src_compile() { cd "${S}/spim" - emake || die + emake DESTDIR="${EPREFIX}" || die if use X; then cd "${S}/xspim" - emake -j1 xspim || die + emake DESTDIR="${EPREFIX}" -j1 xspim || die fi } @@ -59,11 +59,11 @@ src_install() { dodoc README VERSION ChangeLog || die cd "${S}/spim" - emake DESTDIR="${D}" install || die "Unable to install spim" + emake DESTDIR="${ED}" install || die "Unable to install spim" if use X; then cd "${S}/xspim" - emake DESTDIR="${D}" install || die "Unable to install xspim" + emake DESTDIR="${ED}" install || die "Unable to install xspim" doman "${S}/Documentation/xspim.1" fi |