blob: be01e1e921444c33e65e1449599319e9aacb7635 (
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
|
# Copyright 1999-2004 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/net-analyzer/angst/angst-0.4b-r1.ebuild,v 1.4 2004/06/24 21:55:36 agriffis Exp $
inherit eutils
DESCRIPTION="an active sniffer that provides methods for aggressive sniffing on switched LANs"
HOMEPAGE="http://angst.sourceforge.net/"
SRC_URI="http://angst.sourceforge.net/${P}.tar.gz"
LICENSE="BSD"
SLOT="0"
KEYWORDS="x86"
DEPEND=">=net-libs/libpcap-0.7.1
<net-libs/libnet-1.1
>=net-libs/libnet-1.0.2a-r3"
src_unpack() {
unpack ${A}
cd ${S}
epatch ${FILESDIR}/${PV}-libnet-1.0.patch
}
src_compile() {
make CFLAGS="${CFLAGS}" -f Makefile.linux || die
}
src_install() {
dosbin angst
doman angst.8
dodoc README LICENSE TODO ChangeLog
}
|