You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
gentoo-overlay/net-analyzer/httping/httping-2.3.3.ebuild

51 lines
1.1 KiB

# Copyright 1999-2013 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/net-analyzer/httping/httping-2.3.3.ebuild,v 1.5 2013/07/13 19:11:42 ago Exp $
EAPI=5
inherit eutils toolchain-funcs
DESCRIPTION="http protocol ping-like program"
HOMEPAGE="http://www.vanheusden.com/httping/"
SRC_URI="http://www.vanheusden.com/${PN}/${P}.tgz"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="amd64 hppa ~mips ~ppc ppc64 ~sparc x86"
IUSE="debug fftw ncurses ssl tfo"
RDEPEND="
fftw? ( sci-libs/fftw:3.0 )
ncurses? ( >=sys-libs/ncurses-5 )
ssl? ( dev-libs/openssl )
"
DEPEND="${RDEPEND}"
# This would bring in test? ( dev-util/cppcheck ) but unlike
# upstream we should only care about compile/run time testing
RESTRICT="test"
src_prepare() {
epatch "${FILESDIR}"/${PN}-2.2.1-flags.patch
}
src_configure() {
# not an autotools script
echo > makefile.inc || die
}
src_compile() {
emake \
CC="$(tc-getCC)" \
FW=$(usex fftw) \
DEBUG=$(usex debug) \
NC=$(usex ncurses) \
SSL=$(usex ssl) \
TFO=$(usex tfo)
}
src_install() {
dobin httping
doman httping.1
}