blob: b012ef4708f34663aff491c8daa79ac27186a525 (
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
52
53
54
55
|
# Copyright 1999-2009 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/www-servers/gatling/gatling-0.11-r1.ebuild,v 1.3 2009/11/04 08:31:38 patrick Exp $
inherit eutils
DESCRIPTION="High performance web server"
HOMEPAGE="http://www.fefe.de/gatling/"
SRC_URI="http://dl.fefe.de/${P}.tar.bz2"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~amd64 ~x86"
# We still have compile issues with USE=ssl, so it's commented out for now
#IUSE="ssl"
IUSE=""
DEPEND=">=dev-libs/libowfat-0.25
dev-libs/dietlibc"
#ssl? ( dev-libs/openssl )
#"
RDEPEND=""
src_unpack() {
unpack $A
cd "${S}"
epatch "${FILESDIR}/gentoo-vars.patch"
}
src_compile() {
# FIX ME
#if use ssl; then
# emake tlsgatling || die "emake tlsgatling failed"
#fi
emake gatling || die "emake gatling failed"
}
src_install() {
dobin gatling || die "installing gatling binary failed"
doman gatling.1 || die "installing manpage failed"
# FIX ME
#dobin tlsgatling || die "installing tlsgatling binary failed"
newconfd "${FILESDIR}/gatling.confd gatling"
newinitd "${FILESDIR}/gatling.initd gatling"
dodoc README.{ftp,http} || die "installing docs failed"
}
pkg_setup() {
ebegin "Creating gatling user and group"
enewgroup gatling
enewuser ${PN} -1 -1 /var/www/localhost ${PN}
}
|