blob: a7ec786139d9f5d55d7100c7f63b00d5d2bbacab (
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
|
# Copyright 1999-2004 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/net-analyzer/hping/hping-2.0.0_rc2-r1.ebuild,v 1.10 2004/07/08 06:28:55 eldad Exp $
inherit eutils
S=${WORKDIR}/hping2-rc2
DESCRIPTION="A ping-like TCP/IP packet assembler/analyzer."
SRC_URI="http://www.hping.org/hping2.0.0-rc2.tar.gz"
HOMEPAGE="http://www.hping.org"
SLOT="0"
LICENSE="GPL-2"
KEYWORDS="x86 sparc hppa ia64 amd64 alpha"
DEPEND="net-libs/libpcap"
IUSE="debug"
src_compile() {
epatch ${FILESDIR}/wlan-header-fix.patch
./configure || die
if use debug
then
make CCOPT="${CFLAGS}" || die
else
make CCOPT="${CFLAGS}" DEBUG="" || die
fi
}
src_install () {
cd ${S}
dodir /usr/sbin
dosbin hping2
dosym /usr/sbin/hping2 /usr/sbin/hping
doman docs/hping2.8
dodoc INSTALL KNOWN-BUGS NEWS README TODO AUTHORS BUGS CHANGES COPYING
}
|