blob: 34c9bca0d9b7ebc015399b0da02f6b7f0ba7cde5 (
plain)
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
36
37
38
39
|
# Copyright 1999-2009 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/net-analyzer/httping/httping-1.3.1.ebuild,v 1.1 2009/10/18 06:37:18 pva Exp $
EAPI="2"
inherit flag-o-matic 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 ssl"
RDEPEND=">=sys-libs/ncurses-5
ssl? ( dev-libs/openssl )"
DEPEND="${RDEPEND}"
src_prepare() {
sed 's:^CFLAGS=:CFLAGS+=:' -i Makefile || die
}
src_compile() {
append-flags -D_GNU_SOURCE
emake \
CC="$(tc-getCC)" \
$(use ssl && echo SSL=yes || echo SSL=no) \
$(use debug && echo DEBUG=yes || echo DEBUG=no) \
|| die "emake failed"
}
src_install() {
dobin httping || die "dobin failed"
doman httping.1 || die "doman failed"
dodoc readme.txt || die "dodoc failed"
}
|