blob: 8eb6f628fd1d653b6c5c71a3048d0b5c2377ebc1 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
|
# 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.5 2004/10/08 14:39:44 ka0ttic Exp $
DESCRIPTION="A HTTP regression testing and benchmarking utility"
HOMEPAGE="http://www.joedog.org/siege/"
SRC_URI="ftp://sid.joedog.org/pub/${PN}/${P}.tar.gz"
LICENSE="GPL-2"
KEYWORDS="x86 ppc"
SLOT="0"
IUSE="ssl"
DEPEND="ssl? ( >=dev-libs/openssl-0.9.6d )"
RDEPEND="${DEPEND}
dev-lang/perl"
src_compile() {
econf $(use_with ssl) || die
emake || die
}
src_install() {
einstall SIEGERC="${S}/siegerc-example" || die
dodoc AUTHORS ChangeLog INSTALL MACHINES README \
KNOWNBUGS siegerc-example
use ssl && dodoc README.https
}
|