blob: 337bcccc6c907330ed55457e8691c89b997bfbe8 (
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
|
# 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.55.ebuild,v 1.6 2003/02/13 05:58:39 vapier Exp $
DESCRIPTION="An http regression testing and benchmarking utility"
SRC_URI="ftp://ftp.armstrong.com/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() {
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
}
|