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
commit019c1d42f65082a6fd8a95bb783011795cd29ed1 (patch)
tree4632faf2d6b6d756a60825d355e32b6ce11937a9
parentversion bump, closes #51193 (Manifest recommit) (diff)
downloadgentoo-2-019c1d42f65082a6fd8a95bb783011795cd29ed1.tar.gz
gentoo-2-019c1d42f65082a6fd8a95bb783011795cd29ed1.tar.bz2
gentoo-2-019c1d42f65082a6fd8a95bb783011795cd29ed1.zip
Initial import. Closes #51202.
-rw-r--r--net-analyzer/nast/ChangeLog11
-rw-r--r--net-analyzer/nast/Manifest2
-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, 45 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..d365910c18be
--- /dev/null
+++ b/net-analyzer/nast/Manifest
@@ -0,0 +1,2 @@
+MD5 a328ac993a4696c3e37b642fbabd657a nast-0.2.0.ebuild 731
+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
+}