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

EAPI=7
inherit toolchain-funcs

DESCRIPTION="HTTP termination for benchmarks"
HOMEPAGE="http://1wt.eu/tools/httpterm"
SRC_URI="http://1wt.eu/tools/${PN}/${P}.tar.gz"

LICENSE="GPL-2+"
SLOT="0"
KEYWORDS="~amd64 ~arm ~x86"
IUSE=""

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}"
}