diff options
author | Jeroen Roovers <jer@gentoo.org> | 2012-01-20 18:08:09 +0000 |
---|---|---|
committer | Jeroen Roovers <jer@gentoo.org> | 2012-01-20 18:08:09 +0000 |
commit | a8920b6a1ae71dfc366147405154c73b68613f03 (patch) | |
tree | 2bcfa224143e4521f2ae5bb0ebf7df20ea5281cb /app-benchmarks | |
parent | New releases on the 1.8 & 10 branches that address AST-2012-001 / CVE-2012-08... (diff) | |
download | gentoo-2-a8920b6a1ae71dfc366147405154c73b68613f03.tar.gz gentoo-2-a8920b6a1ae71dfc366147405154c73b68613f03.tar.bz2 gentoo-2-a8920b6a1ae71dfc366147405154c73b68613f03.zip |
Add src_install() to install to /usr by Jan Psota (bug #399441).
(Portage version: 2.2.0_alpha84/cvs/Linux x86_64)
Diffstat (limited to 'app-benchmarks')
-rw-r--r-- | app-benchmarks/ioping/ChangeLog | 8 | ||||
-rw-r--r-- | app-benchmarks/ioping/ioping-0.6-r1.ebuild (renamed from app-benchmarks/ioping/ioping-0.6.ebuild) | 6 |
2 files changed, 12 insertions, 2 deletions
diff --git a/app-benchmarks/ioping/ChangeLog b/app-benchmarks/ioping/ChangeLog index 3e00ed690fc8..2bfb20a19350 100644 --- a/app-benchmarks/ioping/ChangeLog +++ b/app-benchmarks/ioping/ChangeLog @@ -1,6 +1,12 @@ # ChangeLog for app-benchmarks/ioping # Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/app-benchmarks/ioping/ChangeLog,v 1.1 2012/01/13 08:12:28 jlec Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-benchmarks/ioping/ChangeLog,v 1.2 2012/01/20 18:08:09 jer Exp $ + +*ioping-0.6-r1 (20 Jan 2012) + + 20 Jan 2012; Jeroen Roovers <jer@gentoo.org> -ioping-0.6.ebuild, + +ioping-0.6-r1.ebuild: + Add src_install() to install to /usr by Jan Psota (bug #399441). *ioping-0.6 (13 Jan 2012) diff --git a/app-benchmarks/ioping/ioping-0.6.ebuild b/app-benchmarks/ioping/ioping-0.6-r1.ebuild index 2a6f935701d7..f310713e73e9 100644 --- a/app-benchmarks/ioping/ioping-0.6.ebuild +++ b/app-benchmarks/ioping/ioping-0.6-r1.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2012 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/app-benchmarks/ioping/ioping-0.6.ebuild,v 1.1 2012/01/13 08:12:28 jlec Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-benchmarks/ioping/ioping-0.6-r1.ebuild,v 1.1 2012/01/20 18:08:09 jer Exp $ EAPI=4 @@ -24,3 +24,7 @@ src_compile() { CC="$(tc-getCC)" \ PREFIX="${EPREFIX}/usr" } + +src_install() { + emake DESTDIR="${D}" PREFIX="${EPREFIX}/usr" install +} |