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 | |
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')
-rw-r--r-- | app-benchmarks/httperf/ChangeLog | 6 | ||||
-rw-r--r-- | app-benchmarks/httperf/httperf-0.8.ebuild | 12 |
2 files changed, 11 insertions, 7 deletions
diff --git a/app-benchmarks/httperf/ChangeLog b/app-benchmarks/httperf/ChangeLog index 98164113abd3..0ab748c3c0b9 100644 --- a/app-benchmarks/httperf/ChangeLog +++ b/app-benchmarks/httperf/ChangeLog @@ -1,6 +1,10 @@ # ChangeLog for app-benchmarks/httperf # Copyright 1999-2006 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/app-benchmarks/httperf/ChangeLog,v 1.6 2006/12/06 19:59:13 eroyf Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-benchmarks/httperf/ChangeLog,v 1.7 2006/12/13 17:49:21 masterdriverz Exp $ + + 13 Dec 2006; Charlie Shepherd <masterdriverz@gentoo.org> + httperf-0.8.ebuild: + Fix bug 153904; thanks to Jakub for the patch 06 Dec 2006; Alexander H. Færøy <eroyf@gentoo.org> httperf-0.8.ebuild: Stable on MIPS. 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() { |