summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMarkus Nigbur <pyrania@gentoo.org>2003-12-23 09:19:39 +0000
committerMarkus Nigbur <pyrania@gentoo.org>2003-12-23 09:19:39 +0000
commit6141654448731c29188ff6ffcba6c7cd45e59502 (patch)
tree77ff3ee84de854e88904f358747015cd73f5c7d9 /app-benchmarks/siege
parentVersion bump. (diff)
downloadgentoo-2-6141654448731c29188ff6ffcba6c7cd45e59502.tar.gz
gentoo-2-6141654448731c29188ff6ffcba6c7cd45e59502.tar.bz2
gentoo-2-6141654448731c29188ff6ffcba6c7cd45e59502.zip
Version bump.
Diffstat (limited to 'app-benchmarks/siege')
-rw-r--r--app-benchmarks/siege/ChangeLog7
-rw-r--r--app-benchmarks/siege/Manifest4
-rw-r--r--app-benchmarks/siege/files/digest-siege-2.581
-rw-r--r--app-benchmarks/siege/siege-2.58.ebuild36
4 files changed, 45 insertions, 3 deletions
diff --git a/app-benchmarks/siege/ChangeLog b/app-benchmarks/siege/ChangeLog
index 33c5fddd893f..cd2e4673b1f6 100644
--- a/app-benchmarks/siege/ChangeLog
+++ b/app-benchmarks/siege/ChangeLog
@@ -1,6 +1,11 @@
# ChangeLog for app-benchmarks/siege
# Copyright 2002-2003 Gentoo Technologies, Inc.; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/app-benchmarks/siege/ChangeLog,v 1.5 2003/10/20 23:17:54 pyrania Exp $
+# $Header: /var/cvsroot/gentoo-x86/app-benchmarks/siege/ChangeLog,v 1.6 2003/12/23 09:19:22 pyrania Exp $
+
+*siege-2.58 (23 Dec 2003)
+
+ 23 Dec 2003; Markus Nigbur <pyrania@gentoo.org> siege-2.58.ebuild:
+ Version bump. Thanks to Brian O'Kelley (bug #35963)
21 Oct 2003; Markus Nigbur <pyrania@gentoo.org> siege-2.55.ebuild:
Another openssl fix.
diff --git a/app-benchmarks/siege/Manifest b/app-benchmarks/siege/Manifest
index 8ab73ff7eeb4..4363f846d333 100644
--- a/app-benchmarks/siege/Manifest
+++ b/app-benchmarks/siege/Manifest
@@ -1,6 +1,6 @@
-MD5 cd00752cd81f91640e7d62124a70ae83 siege-2.58.ebuild 1037
+MD5 0778cb499d79ba0e9e60550dba8169a7 siege-2.58.ebuild 1037
MD5 7d0fde75d0a336ebe9f7e6a33d1f6197 siege-2.55.ebuild 1038
-MD5 ab69921f60c300710b7283a4bda6259f ChangeLog 700
+MD5 2d1630b35521144c780c6f62d4d2bc47 ChangeLog 851
MD5 4aebf8c1efbfd38b632e0861ccff739d files/siege-gentoo_openssl.patch 304
MD5 f2fd20cd35c2a0514b5e37150182f32b files/digest-siege-2.55 62
MD5 7601ce7e597322b08b4bd43b0f3b00ec files/digest-siege-2.58 62
diff --git a/app-benchmarks/siege/files/digest-siege-2.58 b/app-benchmarks/siege/files/digest-siege-2.58
new file mode 100644
index 000000000000..4559e0d60275
--- /dev/null
+++ b/app-benchmarks/siege/files/digest-siege-2.58
@@ -0,0 +1 @@
+MD5 91dadcb43cab9fc4739eef54acd87a38 siege-2.58.tar.gz 374263
diff --git a/app-benchmarks/siege/siege-2.58.ebuild b/app-benchmarks/siege/siege-2.58.ebuild
new file mode 100644
index 000000000000..48876e141ad0
--- /dev/null
+++ b/app-benchmarks/siege/siege-2.58.ebuild
@@ -0,0 +1,36 @@
+# Copyright 1999-2003 Gentoo Technologies, Inc.
+# Distributed under the terms of the GNU General Public License v2
+# $Header: /var/cvsroot/gentoo-x86/app-benchmarks/siege/siege-2.58.ebuild,v 1.1 2003/12/23 09:19:22 pyrania Exp $
+
+DESCRIPTION="An http regression testing and benchmarking utility"
+SRC_URI="ftp://sid.joedog.org/pub/siege/${P}.tar.gz"
+HOMEPAGE="http://www.joedog.org/siege/"
+
+SLOT="0"
+KEYWORDS="~x86 ~ppc"
+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}
+ 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 COPYING INSTALL KNOWNBUGS NEWS MACHINES README
+}