diff options
author | Charlie Shepherd <masterdriverz@gentoo.org> | 2006-12-13 17:49:21 +0000 |
---|---|---|
committer | Charlie Shepherd <masterdriverz@gentoo.org> | 2006-12-13 17:49:21 +0000 |
commit | 3e407a2b49f316fac53342c7ba03cae4ed8549c1 (patch) | |
tree | 8ac5241f900b454ab77bd8449d23731d57977058 /app-benchmarks/httperf/httperf-0.8.ebuild | |
parent | Marking rsync-2.6.9 ppc64 stable per bug 159977 (diff) | |
download | gentoo-2-3e407a2b49f316fac53342c7ba03cae4ed8549c1.tar.gz gentoo-2-3e407a2b49f316fac53342c7ba03cae4ed8549c1.tar.bz2 gentoo-2-3e407a2b49f316fac53342c7ba03cae4ed8549c1.zip |
Fix bug 153904; thanks to Jakub for the patch
(Portage version: 2.1.2_rc3-r1)
Diffstat (limited to 'app-benchmarks/httperf/httperf-0.8.ebuild')
-rw-r--r-- | app-benchmarks/httperf/httperf-0.8.ebuild | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/app-benchmarks/httperf/httperf-0.8.ebuild b/app-benchmarks/httperf/httperf-0.8.ebuild index ada4b17e48a0..28a0b17a3c8d 100644 --- a/app-benchmarks/httperf/httperf-0.8.ebuild +++ b/app-benchmarks/httperf/httperf-0.8.ebuild @@ -1,8 +1,10 @@ # Copyright 1999-2006 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/app-benchmarks/httperf/httperf-0.8.ebuild,v 1.6 2006/12/06 19:59:13 eroyf Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-benchmarks/httperf/httperf-0.8.ebuild,v 1.7 2006/12/13 17:49:21 masterdriverz Exp $ -inherit eutils +WANT_AUTOCONF="2.1" + +inherit eutils autotools toolchain-funcs DESCRIPTION="A tool from HP for measuring web server performance." HOMEPAGE="http://www.hpl.hp.com/research/linux/httperf/index.php" @@ -16,8 +18,6 @@ IUSE="debug ssl" DEPEND="" RDEPEND="" -MAKEOPTS="${MAKEOPTS} -j1" - src_unpack() { unpack ${A} cd ${S} @@ -27,14 +27,14 @@ src_unpack() { src_compile() { einfo "Regenerating configure" - autoconf || die "autoconf failed" + eautoconf || die "autoconf failed" econf --bindir=/usr/bin \ $(use_enable debug) \ $(use_enable ssl) \ || die "econf failed" - emake || die "emake failed" + emake CC=$(tc-getCC) -j1 || die "emake failed" } src_install() { |