blob: 6d2b085ec62627ccbf0e4cbfb5660be614260a7b (
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
56
57
|
# Copyright 1999-2012 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/www-servers/gatling/gatling-0.12-r1.ebuild,v 1.1 2012/03/10 00:30:21 sping Exp $
EAPI="4"
inherit eutils toolchain-funcs
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"
IUSE="ssl diet"
DEPEND=">=dev-libs/libowfat-0.25
diet? ( dev-libs/dietlibc )
ssl? ( dev-libs/openssl )"
RDEPEND="${DEPEND}"
src_prepare() {
rm Makefile # leaves GNUmakefile
epatch "${FILESDIR}/${P}-FLAGS.patch"
}
src_compile() {
local diet_conf='DIET=env'
use diet && diet_conf=
local targets=gatling
use ssl && targets+=' tlsgatling'
emake CC="$(tc-getCC)" ${diet_conf} ${targets} \
|| die "emake ${targets} failed"
}
src_install() {
doman gatling.1 || die "installing manpage failed"
newconfd "${FILESDIR}/gatling.confd" gatling || die
newinitd "${FILESDIR}/gatling.initd" gatling || die
dodoc README.{ftp,http} || die "installing docs failed"
dobin gatling || die "installing gatling binary failed"
use ssl && {
dobin tlsgatling || die "installing tlsgatling binary failed"
}
}
pkg_setup() {
ebegin "Creating gatling user and group"
enewgroup gatling
enewuser ${PN} -1 -1 /var/www/localhost ${PN}
}
|