blob: 795c4d890c67e2aaad82c1f9ee44ecf0d1d5cf2c (
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
58
59
60
61
62
63
64
65
|
# Copyright 1999-2024 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI="7"
inherit toolchain-funcs
DESCRIPTION="High performance web server"
HOMEPAGE="https://www.fefe.de/gatling/"
SRC_URI="https://www.fefe.de/gatling/${P}.tar.xz"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~amd64 ~x86"
IUSE="ssl diet"
REQUIRED_USE="ssl? ( !diet )"
DEPEND=">=dev-libs/libowfat-0.32-r2[diet=]
sys-libs/zlib
virtual/libcrypt:=
diet? ( dev-libs/dietlibc )
ssl? (
dev-libs/openssl:0=
)"
RDEPEND="${DEPEND}
acct-group/gatling
acct-user/gatling
"
PATCHES=(
"${FILESDIR}/${PN}-0.13-compile.patch"
"${FILESDIR}/${PN}-0.15-ar.patch"
"${FILESDIR}/${PN}-0.16-r4-0001-try-alloca-socket-fix-Wimplicit-int.patch"
)
src_prepare() {
default
rm Makefile # leaves us with GNUmakefile
}
src_compile() {
local DIET=
use diet && DIET='/usr/bin/diet'
local targets='gatling'
use ssl && targets+=' tlsgatling'
emake DIET="${DIET}" CC="$(tc-getCC)" \
CFLAGS="${CFLAGS} -I${ESYSROOT}/usr/include/libowfat" \
LDFLAGS="${LDFLAGS}" prefix=/usr ${targets}
}
src_install() {
doman gatling.1
newconfd "${FILESDIR}/gatling.confd" gatling
newinitd "${FILESDIR}/gatling.initd-3" gatling
dodoc README.{ftp,http}
dobin gatling
use ssl && {
dodoc README.tls
dobin tlsgatling
}
}
|