summaryrefslogblamecommitdiff
path: root/www-servers/httpterm/httpterm-9999.ebuild
blob: 53db903b38d86b2b5403b5b72bd0dc6045e838ef (plain) (tree)
1
2
3
4
5
                                    
                                                                  
 
      
                              









                                               


                                                                 

               


                                                                        
 


                               





                                      
                            




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