blob: 7d9b3c83744e9c38c0b26e3937e7750751e7f8fb (
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
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
|
# Copyright 1999-2005 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/app-benchmarks/siege/siege-2.63_beta2.ebuild,v 1.1 2005/05/01 13:10:32 ka0ttic Exp $
inherit eutils bash-completion
MY_P="${P/_beta/b}"
S="${WORKDIR}/${MY_P}"
DESCRIPTION="A HTTP regression testing and benchmarking utility"
HOMEPAGE="http://www.joedog.org/siege/"
SRC_URI="ftp://sid.joedog.org/pub/${PN}/beta/${MY_P}.tar.gz"
LICENSE="GPL-2"
KEYWORDS="~x86 ~ppc ~amd64"
SLOT="0"
IUSE="ssl"
DEPEND="ssl? ( >=dev-libs/openssl-0.9.6d )"
RDEPEND="${DEPEND}
dev-lang/perl"
src_unpack() {
unpack ${A}
cd ${S}
epatch ${FILESDIR}/${PN}-2.60-gentoo.diff
sed -i 's/\\b\(Transactions:\)/\1/' src/main.c || \
die "sed src/main.c failed"
}
src_compile() {
einfo "Running autoreconf"
autoreconf || die "autoreconf failed"
econf $(use_with ssl) || die "econf failed"
emake || die "emake failed"
}
src_install() {
make DESTDIR="${D}" install || die "make install failed"
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}
}
pkg_postinst() {
echo
einfo "An example ~/.siegerc file has been installed as"
einfo "/usr/share/doc/${PF}/siegerc-example.gz"
bash-completion_pkg_postinst
}
|