# 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.2.1.ebuild,v 1.6 2013/05/16 15:37:58 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}"/${P}-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 }