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