summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJon Hood <squinky86@gentoo.org>2004-05-18 17:19:04 +0000
committerJon Hood <squinky86@gentoo.org>2004-05-18 17:19:04 +0000
commitf23df5c746486f9e95a007e132698e94d352ffba (patch)
treeda937bc37ba4ebc5bd9546e4d67648aae5b170d5 /net-analyzer
parentversion bump, closes #51193 (diff)
downloadhistorical-f23df5c746486f9e95a007e132698e94d352ffba.tar.gz
historical-f23df5c746486f9e95a007e132698e94d352ffba.tar.bz2
historical-f23df5c746486f9e95a007e132698e94d352ffba.zip
Initial import. Closes #51202.
Diffstat (limited to 'net-analyzer')
-rw-r--r--net-analyzer/nast/ChangeLog11
-rw-r--r--net-analyzer/nast/Manifest4
-rw-r--r--net-analyzer/nast/files/digest-nast-0.2.01
-rw-r--r--net-analyzer/nast/metadata.xml5
-rw-r--r--net-analyzer/nast/nast-0.2.0.ebuild26
5 files changed, 47 insertions, 0 deletions
diff --git a/net-analyzer/nast/ChangeLog b/net-analyzer/nast/ChangeLog
new file mode 100644
index 000000000000..308d63248c7f
--- /dev/null
+++ b/net-analyzer/nast/ChangeLog
@@ -0,0 +1,11 @@
+# ChangeLog for net-analyzer/nast
+# Copyright 2000-2004 Gentoo Technologies, Inc.; Distributed under the GPL v2
+# $Header: /var/cvsroot/gentoo-x86/net-analyzer/nast/ChangeLog,v 1.1 2004/05/18 17:19:04 squinky86 Exp $
+
+*nast-0.2.0 (18 May 2004)
+
+ 18 May 2004; Jon Hood <squinky86@gentoo.org> +metadata.xml,
+ +nast-0.2.0.ebuild:
+ Initial import. Closes #51202. Thanks to Sven Wegener
+ <sven.wegener@stealer.net> for the ebuild.
+
diff --git a/net-analyzer/nast/Manifest b/net-analyzer/nast/Manifest
new file mode 100644
index 000000000000..392c459e7cfb
--- /dev/null
+++ b/net-analyzer/nast/Manifest
@@ -0,0 +1,4 @@
+MD5 d7cb5c8273a12c5c650e0666d447c246 nast-0.2.0.ebuild 733
+MD5 7a7562edb13ac43b4b605501cb1d9989 ChangeLog 432
+MD5 f34e3c8858756da0001b12d2d3fa1af2 metadata.xml 159
+MD5 3caeb124c059b304993c9f79e9192344 files/digest-nast-0.2.0 62
diff --git a/net-analyzer/nast/files/digest-nast-0.2.0 b/net-analyzer/nast/files/digest-nast-0.2.0
new file mode 100644
index 000000000000..f016c655d6fa
--- /dev/null
+++ b/net-analyzer/nast/files/digest-nast-0.2.0
@@ -0,0 +1 @@
+MD5 77cbab45f5850d6cdb7ecb10e291bfa7 nast-0.2.0.tar.gz 147568
diff --git a/net-analyzer/nast/metadata.xml b/net-analyzer/nast/metadata.xml
new file mode 100644
index 000000000000..03aa50bab7e3
--- /dev/null
+++ b/net-analyzer/nast/metadata.xml
@@ -0,0 +1,5 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
+<pkgmetadata>
+<herd>netmon</herd>
+</pkgmetadata>
diff --git a/net-analyzer/nast/nast-0.2.0.ebuild b/net-analyzer/nast/nast-0.2.0.ebuild
new file mode 100644
index 000000000000..f892a7365319
--- /dev/null
+++ b/net-analyzer/nast/nast-0.2.0.ebuild
@@ -0,0 +1,26 @@
+# Copyright 1999-2004 Gentoo Technologies, Inc.
+# Distributed under the terms of the GNU General Public License v2
+# $Header: /var/cvsroot/gentoo-x86/net-analyzer/nast/nast-0.2.0.ebuild,v 1.1 2004/05/18 17:19:04 squinky86 Exp $
+
+DESCRIPTION="NAST - Network Analyzer Sniffer Tool"
+HOMEPAGE="http://nast.berlios.de/"
+SRC_URI="http://nast.berlios.de/src/${P}.tar.gz"
+LICENSE="GPL-2"
+SLOT="0"
+KEYWORDS="~x86"
+IUSE="ncurses"
+
+DEPEND=">=net-libs/libnet-1.1.1
+ >=net-libs/libpcap-0.8.1
+ ncurses? ( >=sys-libs/ncurses-5.4 )"
+
+src_compile() {
+ econf || die "econf failed"
+ emake CFLAGS="${CFLAGS}" || die "emake failed"
+}
+
+src_install() {
+ dosbin nast
+ doman nast.8
+ dodoc AUTHORS BUGS COPYING CREDITS ChangeLog NCURSES_README README TODO
+}