summaryrefslogtreecommitdiff
path: root/www-servers/httpterm/httpterm-9999.ebuild
blob: 53db903b38d86b2b5403b5b72bd0dc6045e838ef (plain) (blame)
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
# Copyright 1999-2020 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2

EAPI=7
inherit toolchain-funcs git-r3

DESCRIPTION="HTTP termination for benchmarks"
HOMEPAGE="http://1wt.eu/tools/httpterm"
EGIT_REPO_URI="http://git.1wt.eu/git/${PN}.git"

LICENSE="GPL-2+"
SLOT="0"
KEYWORDS=""
IUSE=""

PATCHES=(
	"${FILESDIR}/${PV}-BUILD-INT_MAX-requires-limits.h.patch"
)

src_compile() {
	local -a args=(
		# This is for recent Linux 2.6 with splice and accept4()
		"TARGET=linux26s"

		# Disable debug
		"DEBUG="
	)

	emake "${PN}" \
		CC="$(tc-getCC)" \
		LD="$(tc-getCC)" \
		CPU_OPTS="${CFLAGS}" \
		LDFLAGS="${LDFLAGS}" \
		"${args[@]}"
}

src_install() {
	dobin "${PN}"
}