summaryrefslogtreecommitdiff
blob: 8f079c1f93895904dd5825dd57438c33aa4608a4 (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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
# Copyright 1999-2007 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/net-analyzer/hping/hping-3_pre20051105.ebuild,v 1.4 2007/07/30 16:25:59 dertobi123 Exp $

inherit eutils toolchain-funcs

MY_P="${PN}${PV//_pre/-}"
DESCRIPTION="A ping-like TCP/IP packet assembler/analyzer"
HOMEPAGE="http://www.hping.org"
SRC_URI="http://www.hping.org/${MY_P}.tar.gz"

LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~sparc ~x86"
IUSE="tcl debug"

S="${WORKDIR}/${MY_P}"

DEPEND="net-libs/libpcap
	tcl? ( dev-lang/tcl )"

src_unpack() {
	unpack ${A}
	cd "${S}"
	epatch ${FILESDIR}/${P}.patch
	epatch ${FILESDIR}/bytesex.h.patch

	# Correct hard coded values
	sed -i "9s:gcc:$(tc-getCC):" Makefile.in
	sed -i "10s:/usr/bin/ar:$(tc-getAR):" Makefile.in
	sed -i "11s:/usr/bin/ranlib:$(tc-getRANLIB):" Makefile.in
	sed -i "12s:-O2:${CFLAGS}:" Makefile.in
}

src_compile() {

	myconf=""
	use tcl || myconf="--no-tcl"
	econf ${myconf} || die "configure failed"

	if use debug; then
		emake || die "make failed"
	else
		emake DEBUG="" || die "make failed"
	fi
}

src_install () {
	dosbin hping3
	dosym /usr/sbin/hping3 /usr/sbin/hping
	dosym /usr/sbin/hping3 /usr/sbin/hping2

	doman docs/hping3.8

	dodoc INSTALL NEWS README TODO AUTHORS BUGS CHANGES
}