blob: 845ee2cdf66b47abacf929e8fbcdc1f2482cadb8 (
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
|
# Copyright 1999-2011 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/net-analyzer/fragroute/fragroute-1.2-r3.ebuild,v 1.2 2011/10/04 08:16:30 nativemad Exp $
EAPI="3"
inherit eutils toolchain-funcs
DESCRIPTION="Testing of network intrusion detection systems, firewalls and TCP/IP stacks"
HOMEPAGE="http://www.monkey.org/~dugsong/fragroute/"
SRC_URI="http://www.monkey.org/~dugsong/fragroute/${P}.tar.gz"
LICENSE="BSD"
SLOT="0"
KEYWORDS="~amd64 ~ppc x86"
IUSE=""
DEPEND="
dev-libs/libevent
net-libs/libpcap
>=dev-libs/libdnet-1.4
"
RDEPEND="${DEPEND}"
src_prepare() {
epatch "${FILESDIR}"/${PV}-libevent.patch
sed -i configure \
-e 's|libevent.a|libevent.so|g' \
|| die "sed configure.in"
tc-export CC
}
src_configure() {
econf --with-libevent="${EPREFIX}"/usr --with-libdnet="${EPREFIX}"/usr
}
src_install() {
emake DESTDIR="${D}" install || die
dodoc README || die
}
|