diff options
author | Bryan Østergaard <kloeri@gentoo.org> | 2004-08-21 18:16:56 +0000 |
---|---|---|
committer | Bryan Østergaard <kloeri@gentoo.org> | 2004-08-21 18:16:56 +0000 |
commit | 731dec48843c646e4fcad3c5c3ae981ff5a25f3b (patch) | |
tree | 933ee131c1aac0539f5175b329c424ca4a1a0e75 /app-benchmarks | |
parent | Fixed bug 57838 on 3.1.1, and version bumped. (Manifest recommit) (diff) | |
download | gentoo-2-731dec48843c646e4fcad3c5c3ae981ff5a25f3b.tar.gz gentoo-2-731dec48843c646e4fcad3c5c3ae981ff5a25f3b.tar.bz2 gentoo-2-731dec48843c646e4fcad3c5c3ae981ff5a25f3b.zip |
Version bump, requested by Ka0ttic.
Diffstat (limited to 'app-benchmarks')
-rw-r--r-- | app-benchmarks/siege/ChangeLog | 7 | ||||
-rw-r--r-- | app-benchmarks/siege/Manifest | 4 | ||||
-rw-r--r-- | app-benchmarks/siege/files/digest-siege-2.60 | 1 | ||||
-rw-r--r-- | app-benchmarks/siege/siege-2.60.ebuild | 36 |
4 files changed, 46 insertions, 2 deletions
diff --git a/app-benchmarks/siege/ChangeLog b/app-benchmarks/siege/ChangeLog index 1ad2b7fcbb2b..88893e5787f8 100644 --- a/app-benchmarks/siege/ChangeLog +++ b/app-benchmarks/siege/ChangeLog @@ -1,6 +1,11 @@ # ChangeLog for app-benchmarks/siege # Copyright 2002-2004 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/app-benchmarks/siege/ChangeLog,v 1.10 2004/06/24 21:29:04 agriffis Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-benchmarks/siege/ChangeLog,v 1.11 2004/08/21 18:16:56 kloeri Exp $ + +*siege-2.60 (21 Aug 2004) + + 21 Aug 2004; Bryan Østergaard <kloeri@gentoo.org> +siege-2.60.ebuild: + Version bump, requested by Ka0ttic. 25 Apr 2004; Aron Griffis <agriffis@gentoo.org> siege-2.55.ebuild, siege-2.58.ebuild, siege-2.59.ebuild: diff --git a/app-benchmarks/siege/Manifest b/app-benchmarks/siege/Manifest index 52a344661fdd..1b1f062062ba 100644 --- a/app-benchmarks/siege/Manifest +++ b/app-benchmarks/siege/Manifest @@ -1,8 +1,10 @@ MD5 904a71f83c784ae52d61439531dbbd0b siege-2.59.ebuild 1043 +MD5 da39d501afff12cdb2ba5dd54f5ae21e siege-2.60.ebuild 1053 MD5 a42805f753e9a301535d6c443e52a5f2 siege-2.58.ebuild 1042 MD5 bdb6314b7b3d6743ef6569d5a91b8fe9 siege-2.55.ebuild 1045 -MD5 cc16ccddca8f7a652cafd8c773af68c8 ChangeLog 660 +MD5 342577e18b0bb422ca4118632ab240de ChangeLog 798 MD5 4aebf8c1efbfd38b632e0861ccff739d files/siege-gentoo_openssl.patch 304 MD5 f2fd20cd35c2a0514b5e37150182f32b files/digest-siege-2.55 62 MD5 7601ce7e597322b08b4bd43b0f3b00ec files/digest-siege-2.58 62 MD5 163ff997dbf4a1327327c037ae2d1a76 files/digest-siege-2.59 62 +MD5 1185a0d2d8ac987001f575f8eb302327 files/digest-siege-2.60 62 diff --git a/app-benchmarks/siege/files/digest-siege-2.60 b/app-benchmarks/siege/files/digest-siege-2.60 new file mode 100644 index 000000000000..9240d2d063a1 --- /dev/null +++ b/app-benchmarks/siege/files/digest-siege-2.60 @@ -0,0 +1 @@ +MD5 de7fcefc34488e4211cf02379f827cf9 siege-2.60.tar.gz 375480 diff --git a/app-benchmarks/siege/siege-2.60.ebuild b/app-benchmarks/siege/siege-2.60.ebuild new file mode 100644 index 000000000000..0bdaca2c252e --- /dev/null +++ b/app-benchmarks/siege/siege-2.60.ebuild @@ -0,0 +1,36 @@ +# Copyright 1999-2004 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/app-benchmarks/siege/siege-2.60.ebuild,v 1.1 2004/08/21 18:16:56 kloeri Exp $ + +DESCRIPTION="An http regression testing and benchmarking utility" +HOMEPAGE="http://www.joedog.org/siege/" +SRC_URI="ftp://sid.joedog.org/pub/siege/${P}.tar.gz" + +KEYWORDS="~x86 ~ppc" +SLOT="0" +LICENSE="GPL-2" +IUSE="ssl" + +DEPEND="ssl? ( >=dev-libs/openssl-0.9.6d )" + +src_compile() { + has_version '=dev-libs/openssl-0.9.7*' \ + && sed -i -e "s:^# include <openssl/e_os.h>::" src/ssl.h + local myconf + use ssl && myconf="--with-ssl" || myconf="--with-ssl=off" + econf ${myconf} || die "econf failed" + emake || die + +} + +src_install() { + # makefile tries to install into $HOME by default... bad monkey! + dodir /usr/share/doc/${P} + + einstall SIEGERC="${D}/usr/share/doc/${P}/siegerc-example" + + # all non-html docs must be gzip'd + gzip ${D}/usr/share/doc/${P}/siegerc-example + + dodoc AUTHORS ChangeLog INSTALL KNOWNBUGS NEWS MACHINES README +} |