summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDaniel Black <dragonheart@gentoo.org>2006-09-23 22:31:59 +0000
committerDaniel Black <dragonheart@gentoo.org>2006-09-23 22:31:59 +0000
commita87666c501e5eb40d926d4009cfd32228afc4786 (patch)
tree6440a1ce16120c835c8b3c8ace6dec3e51f24f6b /app-benchmarks
parentFix for ppc64, bug #142737. Tested on ppc, works fine. (diff)
downloadgentoo-2-a87666c501e5eb40d926d4009cfd32228afc4786.tar.gz
gentoo-2-a87666c501e5eb40d926d4009cfd32228afc4786.tar.bz2
gentoo-2-a87666c501e5eb40d926d4009cfd32228afc4786.zip
fixed automake dependency as per bug #148797
(Portage version: 2.1.2_pre1)
Diffstat (limited to 'app-benchmarks')
-rw-r--r--app-benchmarks/siege/ChangeLog7
-rw-r--r--app-benchmarks/siege/files/digest-siege-2.61-r12
-rw-r--r--app-benchmarks/siege/siege-2.61-r1.ebuild18
3 files changed, 16 insertions, 11 deletions
diff --git a/app-benchmarks/siege/ChangeLog b/app-benchmarks/siege/ChangeLog
index 1254fb507d38..9699f8b331a5 100644
--- a/app-benchmarks/siege/ChangeLog
+++ b/app-benchmarks/siege/ChangeLog
@@ -1,6 +1,9 @@
# ChangeLog for app-benchmarks/siege
-# Copyright 2002-2005 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/app-benchmarks/siege/ChangeLog,v 1.34 2005/11/03 21:55:37 ka0ttic Exp $
+# Copyright 2002-2006 Gentoo Foundation; Distributed under the GPL v2
+# $Header: /var/cvsroot/gentoo-x86/app-benchmarks/siege/ChangeLog,v 1.35 2006/09/23 22:31:59 dragonheart Exp $
+
+ 23 Sep 2006; Daniel Black <dragonheart@gentoo.org> siege-2.61-r1.ebuild:
+ fixed automake dependency as per bug #148797 thanks Patrick Lauer
*siege-2.64-r1 (03 Nov 2005)
*siege-2.61-r1 (03 Nov 2005)
diff --git a/app-benchmarks/siege/files/digest-siege-2.61-r1 b/app-benchmarks/siege/files/digest-siege-2.61-r1
index 0be92fb9f502..6e48faaf4d23 100644
--- a/app-benchmarks/siege/files/digest-siege-2.61-r1
+++ b/app-benchmarks/siege/files/digest-siege-2.61-r1
@@ -1 +1,3 @@
MD5 ab523ff9bd2daed416038d1774656e4a siege-2.61.tar.gz 375910
+RMD160 50dc36f4ec33acf81040404c02a6c436c92291a3 siege-2.61.tar.gz 375910
+SHA256 9b49a4559f578b8a1b9dda49bbb3f12bd2a0dbf9b4694fcd06d3e2751eee9d35 siege-2.61.tar.gz 375910
diff --git a/app-benchmarks/siege/siege-2.61-r1.ebuild b/app-benchmarks/siege/siege-2.61-r1.ebuild
index 3695262c2feb..93b82d2d8a8b 100644
--- a/app-benchmarks/siege/siege-2.61-r1.ebuild
+++ b/app-benchmarks/siege/siege-2.61-r1.ebuild
@@ -1,8 +1,8 @@
-# Copyright 1999-2005 Gentoo Foundation
+# Copyright 1999-2006 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/app-benchmarks/siege/siege-2.61-r1.ebuild,v 1.1 2005/11/03 21:55:37 ka0ttic Exp $
+# $Header: /var/cvsroot/gentoo-x86/app-benchmarks/siege/siege-2.61-r1.ebuild,v 1.2 2006/09/23 22:31:59 dragonheart Exp $
-inherit eutils bash-completion
+inherit eutils bash-completion autotools
DESCRIPTION="A HTTP regression testing and benchmarking utility"
HOMEPAGE="http://www.joedog.org/siege/"
@@ -19,13 +19,13 @@ RDEPEND="${DEPEND}
src_unpack() {
unpack ${A}
- cd ${S}
- epatch ${FILESDIR}/${PN}-2.60-gentoo.diff
+ cd "${S}"
+ epatch "${FILESDIR}/"${PN}-2.60-gentoo.diff
+ export WANT_AUTOMAKE="1.5"
+ eautoreconf || die "autoreconf failed"
}
src_compile() {
- einfo "Running autoreconf"
- autoreconf || die "autoreconf failed"
econf $(use_with ssl) || die "econf failed"
emake || die "emake failed"
}
@@ -37,12 +37,12 @@ src_install() {
# interpreted by bash sending the contents to stderr
# instead of ${HOME}/.siegerc
sed -i -e 's|\${}|\\${}|' -e 's|\$(HOME)|\\$(HOME)|' \
- ${D}/usr/bin/siege.config
+ "${D}"/usr/bin/siege.config
dodoc AUTHORS ChangeLog INSTALL MACHINES README KNOWNBUGS \
siegerc-example urls.txt || die "dodoc failed"
use ssl && dodoc README.https
- dobashcompletion ${FILESDIR}/${PN}.bash-completion ${PN}
+ dobashcompletion "${FILESDIR}"/${PN}.bash-completion ${PN}
}
pkg_postinst() {