diff options
author | Chuck Short <zul@gentoo.org> | 2003-08-29 01:55:30 +0000 |
---|---|---|
committer | Chuck Short <zul@gentoo.org> | 2003-08-29 01:55:30 +0000 |
commit | 81e642f08b075479856739685d77d621bf537633 (patch) | |
tree | c4e3f0e3ecf81af8e6cd3d060301613dc1610673 /net-analyzer | |
parent | Initial version, closes bug #24307 (diff) | |
download | historical-81e642f08b075479856739685d77d621bf537633.tar.gz historical-81e642f08b075479856739685d77d621bf537633.tar.bz2 historical-81e642f08b075479856739685d77d621bf537633.zip |
Initial version, closes bug #24307
Diffstat (limited to 'net-analyzer')
-rw-r--r-- | net-analyzer/fragroute/Manifest | 4 | ||||
-rw-r--r-- | net-analyzer/fragroute/files/digest-fragroute-1.2 | 1 | ||||
-rw-r--r-- | net-analyzer/fragroute/fragroute-1.2.ebuild | 27 |
3 files changed, 30 insertions, 2 deletions
diff --git a/net-analyzer/fragroute/Manifest b/net-analyzer/fragroute/Manifest index 909d25fee9e8..53dbf90d5646 100644 --- a/net-analyzer/fragroute/Manifest +++ b/net-analyzer/fragroute/Manifest @@ -1,3 +1,3 @@ -MD5 54960968e50acd95a21ad037ff400f40 fragroute-1.2.ebuild 734 -MD5 9f2663f1d4975cc2cc57dac20e229c68 ChangeLog 260 +MD5 ce7f7982ec9341f1eea03becbc4aad5a fragroute-1.2.ebuild 837 +MD5 ea0afc9f297934a6a13d58d1d104b770 ChangeLog 352 MD5 36fafeafa71dc2dfd15c10be5f698314 files/digest-fragroute-1.2 64 diff --git a/net-analyzer/fragroute/files/digest-fragroute-1.2 b/net-analyzer/fragroute/files/digest-fragroute-1.2 new file mode 100644 index 000000000000..92cd3a612a8a --- /dev/null +++ b/net-analyzer/fragroute/files/digest-fragroute-1.2 @@ -0,0 +1 @@ +MD5 7e4de763fae35a50e871bdcd1ac8e23a fragroute-1.2.tar.gz 85247 diff --git a/net-analyzer/fragroute/fragroute-1.2.ebuild b/net-analyzer/fragroute/fragroute-1.2.ebuild new file mode 100644 index 000000000000..7c3d498efc84 --- /dev/null +++ b/net-analyzer/fragroute/fragroute-1.2.ebuild @@ -0,0 +1,27 @@ +# Copyright 1999-2003 Gentoo Technologies, Inc. +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/net-analyzer/fragroute/fragroute-1.2.ebuild,v 1.1 2003/08/29 01:54:38 zul Exp $ + +DESCRIPTION="fragroute was written to aid in the testing of network intrusion detection systems, firewalls and basic TCP/IP stack behaviour." +HOMEPAGE="http://www.monkey.org/~dugsong/fragroute/" +SRC_URI="http://www.monkey.org/~dugsong/fragroute/${P}.tar.gz" +LICENSE="DSNIFF" +SLOT="0" +KEYWORDS="~x86" +IUSE="" +DEPEND="virtual/glibc + >=dev-libs/libevent-0.6 + >=dev-libs/libpcap-0.7.2 + >=dev-libs/libdnet-1.4" +RDEPEND="" +S=${WORKDIR}/${P} + +src_compile() { + econf --with-libevent=/usr --with-libdnet=/usr || die "Econf failed" + emake || die "Make failed" +} + +src_install() { + einstall || die + dodoc README +} |