blob: ac192dda61d9714a8b86b834852b0ae297d7f57d (
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
|
# Copyright 1999-2005 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.6 2005/01/29 05:12:50 dragonheart 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"
IUSE=""
DEPEND="virtual/libpcap
<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
}
|