summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorEldad Zack <eldad@gentoo.org>2004-07-12 11:14:53 +0000
committerEldad Zack <eldad@gentoo.org>2004-07-12 11:14:53 +0000
commit7340d09ab2b397629092508fa300b3e41d38d79b (patch)
tree2e53e04426e583c3cc22db8925a8bb44271e8dcf /net-analyzer/packit
parentAdded new 1.0.4 version which improves handling of some autoconfig functions ... (diff)
downloadgentoo-2-7340d09ab2b397629092508fa300b3e41d38d79b.tar.gz
gentoo-2-7340d09ab2b397629092508fa300b3e41d38d79b.tar.bz2
gentoo-2-7340d09ab2b397629092508fa300b3e41d38d79b.zip
bump
Diffstat (limited to 'net-analyzer/packit')
-rw-r--r--net-analyzer/packit/ChangeLog7
-rw-r--r--net-analyzer/packit/Manifest2
-rw-r--r--net-analyzer/packit/files/digest-packit-1.01
-rw-r--r--net-analyzer/packit/packit-1.0.ebuild29
4 files changed, 38 insertions, 1 deletions
diff --git a/net-analyzer/packit/ChangeLog b/net-analyzer/packit/ChangeLog
index 5aadc3552b3c..d1c2b4903c21 100644
--- a/net-analyzer/packit/ChangeLog
+++ b/net-analyzer/packit/ChangeLog
@@ -1,6 +1,11 @@
# ChangeLog for net-analyzer/packit
# Copyright 2000-2004 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/net-analyzer/packit/ChangeLog,v 1.9 2004/07/12 09:01:30 eldad Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-analyzer/packit/ChangeLog,v 1.10 2004/07/12 11:14:53 eldad Exp $
+
+*packit-1.0 (12 Jul 2004)
+
+ 12 Jul 2004; Eldad Zack <eldad@gentoo.org> +packit-1.0.ebuild:
+ Version bump.
12 Jul 2004; Eldad Zack <eldad@gentoo.org> packit-0.7.ebuild:
Fixed deps - can only compile with libnet-1.1.1. Closes #56694.
diff --git a/net-analyzer/packit/Manifest b/net-analyzer/packit/Manifest
index aaa0d0d187e3..01bafe130622 100644
--- a/net-analyzer/packit/Manifest
+++ b/net-analyzer/packit/Manifest
@@ -2,5 +2,7 @@ MD5 bf737fc3120abd3e7eb2447c6f520217 packit-0.6.0c-r1.ebuild 910
MD5 14a9e8cf2c0a54f659f729270f0cd3eb packit-0.7.ebuild 820
MD5 38b0cd41fc528a71690c3f3c7cd7ac7b ChangeLog 1231
MD5 828add64d896c29b87566ae8c0842d9d metadata.xml 291
+MD5 6ab3ea9d19a81b86ae654cd5edab33d3 packit-1.0.ebuild 822
MD5 5556efb595e0306b7d1397a160aef4ff files/digest-packit-0.6.0c-r1 62
MD5 9691a62ad1380ccfcbc34b3c0e88f46a files/digest-packit-0.7 59
+MD5 7eb74f02f5f953dd695526486d7ceed6 files/digest-packit-1.0 59
diff --git a/net-analyzer/packit/files/digest-packit-1.0 b/net-analyzer/packit/files/digest-packit-1.0
new file mode 100644
index 000000000000..3c82866fa2a0
--- /dev/null
+++ b/net-analyzer/packit/files/digest-packit-1.0
@@ -0,0 +1 @@
+MD5 270594ff97f6c203131136208bb4d2ca packit-1.0.tgz 138367
diff --git a/net-analyzer/packit/packit-1.0.ebuild b/net-analyzer/packit/packit-1.0.ebuild
new file mode 100644
index 000000000000..ee88e885154b
--- /dev/null
+++ b/net-analyzer/packit/packit-1.0.ebuild
@@ -0,0 +1,29 @@
+# Copyright 1999-2004 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Header: /var/cvsroot/gentoo-x86/net-analyzer/packit/packit-1.0.ebuild,v 1.1 2004/07/12 11:14:53 eldad Exp $
+
+inherit eutils
+
+DESCRIPTION="network auditing tool that allows you to monitor, manipulate, and inject customized IPv4 traffic"
+HOMEPAGE="http://www.packetfactory.net/projects/packit/"
+SRC_URI="http://www.packetfactory.net/projects/packit/downloads/${P}.tgz"
+
+LICENSE="GPL-2"
+SLOT="0"
+KEYWORDS="~x86"
+IUSE=""
+
+DEPEND=">=net-libs/libnet-1.1.2*"
+
+src_unpack() {
+ unpack ${A}
+ cd ${S}
+ has_version '>=net-libs/libpcap-0.8.1' \
+ && sed -i 's!^#include <net/bpf.h>$!#include <pcap-bpf.h>!' \
+ src/{globals,main}.h
+}
+
+src_install() {
+ make install DESTDIR=${D} || die
+ dodoc INSTALL LICENSE VERSION docs/*
+}