summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMike Frysinger <vapier@gentoo.org>2003-02-26 03:34:35 +0000
committerMike Frysinger <vapier@gentoo.org>2003-02-26 03:34:35 +0000
commit357e0e45b309c99b61b0573af441671f9874cf19 (patch)
treed3a39df1d6a8ca33fb7792b7b31f34d939b7b1ed /net-analyzer/isic
parentinitial ebuild for #11784 (diff)
downloadhistorical-357e0e45b309c99b61b0573af441671f9874cf19.tar.gz
historical-357e0e45b309c99b61b0573af441671f9874cf19.tar.bz2
historical-357e0e45b309c99b61b0573af441671f9874cf19.zip
initial ebuild for #11785
Diffstat (limited to 'net-analyzer/isic')
-rw-r--r--net-analyzer/isic/ChangeLog8
-rw-r--r--net-analyzer/isic/files/digest-isic-0.051
-rw-r--r--net-analyzer/isic/isic-0.05.ebuild24
3 files changed, 33 insertions, 0 deletions
diff --git a/net-analyzer/isic/ChangeLog b/net-analyzer/isic/ChangeLog
new file mode 100644
index 000000000000..36d54b777114
--- /dev/null
+++ b/net-analyzer/isic/ChangeLog
@@ -0,0 +1,8 @@
+# ChangeLog for net-analyzer/isic
+# Copyright 2000-2003 Gentoo Technologies, Inc.; Distributed under the GPL v2
+# $Header: /var/cvsroot/gentoo-x86/net-analyzer/isic/ChangeLog,v 1.1 2003/02/26 03:34:35 vapier Exp $
+
+*isic-0.05 (25 Feb 2003)
+
+ 25 Feb 2003; Mike Frysinger <vapier@gentoo.org> :
+ Initial import. Ebuild submitted by me for #11785.
diff --git a/net-analyzer/isic/files/digest-isic-0.05 b/net-analyzer/isic/files/digest-isic-0.05
new file mode 100644
index 000000000000..c89acfcbbcf3
--- /dev/null
+++ b/net-analyzer/isic/files/digest-isic-0.05
@@ -0,0 +1 @@
+MD5 652d07978f050f090924bd98d2548cd7 isic-0.05.tgz 26855
diff --git a/net-analyzer/isic/isic-0.05.ebuild b/net-analyzer/isic/isic-0.05.ebuild
new file mode 100644
index 000000000000..f7bad91dbe78
--- /dev/null
+++ b/net-analyzer/isic/isic-0.05.ebuild
@@ -0,0 +1,24 @@
+# Copyright 1999-2003 Gentoo Technologies, Inc.
+# Distributed under the terms of the GNU General Public License v2
+# $Header: /var/cvsroot/gentoo-x86/net-analyzer/isic/isic-0.05.ebuild,v 1.1 2003/02/26 03:34:35 vapier Exp $
+
+DESCRIPTION="IP Stack Integrity Checker"
+HOMEPAGE="http://www.packetfactory.net/projects/ISIC/"
+SRC_URI="http://www.packetfactory.net/projects/ISIC/${P}.tgz"
+
+LICENSE="BSD"
+SLOT="0"
+KEYWORDS="~x86"
+
+DEPEND="net-libs/libnet"
+
+src_compile() {
+ env WANT_AUTOCONF_2_5=1 autoconf || die
+ econf || die
+ emake || die
+}
+
+src_install() {
+ make install PREFIX=${D}/usr || die
+ dodoc README
+}