summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChuck Short <zul@gentoo.org>2003-08-29 01:55:30 +0000
committerChuck Short <zul@gentoo.org>2003-08-29 01:55:30 +0000
commitcc85490380eca0b087374600f484b53fe24ca1f7 (patch)
tree1df80c50dee369eb8a6ae4492aafccfdaad16ca3 /net-analyzer/fragroute
parentInitial version, closes bug #24307 (diff)
downloadgentoo-2-cc85490380eca0b087374600f484b53fe24ca1f7.tar.gz
gentoo-2-cc85490380eca0b087374600f484b53fe24ca1f7.tar.bz2
gentoo-2-cc85490380eca0b087374600f484b53fe24ca1f7.zip
Initial version, closes bug #24307
Diffstat (limited to 'net-analyzer/fragroute')
-rw-r--r--net-analyzer/fragroute/ChangeLog7
-rw-r--r--net-analyzer/fragroute/Manifest4
-rw-r--r--net-analyzer/fragroute/files/digest-fragroute-1.21
-rw-r--r--net-analyzer/fragroute/fragroute-1.2.ebuild27
4 files changed, 37 insertions, 2 deletions
diff --git a/net-analyzer/fragroute/ChangeLog b/net-analyzer/fragroute/ChangeLog
new file mode 100644
index 000000000000..1595fe67cb31
--- /dev/null
+++ b/net-analyzer/fragroute/ChangeLog
@@ -0,0 +1,7 @@
+# ChangeLog for net-analyzer/fragroute
+# Copyright 2000-2003 Gentoo Technologies, Inc.; Distributed under the GPL v2
+# $Header: /var/cvsroot/gentoo-x86/net-analyzer/fragroute/ChangeLog,v 1.1 2003/08/29 01:54:38 zul Exp $
+
+ 28 Aug 2003; Chuck Short <zul@gentoo.org> :
+ Initial version. Ebuild contributed by Daniel Seyffer <gentoo-bugs@seyffer.de>.
+
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
+}