You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
gentoo-overlay/net-analyzer/fragroute/fragroute-1.2-r3.ebuild

41 lines
962 B

# 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
}