summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChuck Short <zul@gentoo.org>2003-09-14 17:59:25 +0000
committerChuck Short <zul@gentoo.org>2003-09-14 17:59:25 +0000
commit28977947dd70a50f95943ce32944d543d8ae032d (patch)
tree7143dae927805a6220fc71eed4db4c791f44c640 /net-analyzer/nettop
parentUpdating for gcc-3.3 compat (diff)
downloadgentoo-2-28977947dd70a50f95943ce32944d543d8ae032d.tar.gz
gentoo-2-28977947dd70a50f95943ce32944d543d8ae032d.tar.bz2
gentoo-2-28977947dd70a50f95943ce32944d543d8ae032d.zip
Initial Version
Diffstat (limited to 'net-analyzer/nettop')
-rw-r--r--net-analyzer/nettop/ChangeLog10
-rw-r--r--net-analyzer/nettop/Manifest3
-rw-r--r--net-analyzer/nettop/files/digest-nettop-0.2.31
-rw-r--r--net-analyzer/nettop/nettop-0.2.3.ebuild30
4 files changed, 43 insertions, 1 deletions
diff --git a/net-analyzer/nettop/ChangeLog b/net-analyzer/nettop/ChangeLog
new file mode 100644
index 000000000000..cb3bdfe78ad1
--- /dev/null
+++ b/net-analyzer/nettop/ChangeLog
@@ -0,0 +1,10 @@
+# ChangeLog for net-analyzer/nettop
+# Copyright 2000-2003 Gentoo Technologies, Inc.; Distributed under the GPL v2
+# $Header: /var/cvsroot/gentoo-x86/net-analyzer/nettop/ChangeLog,v 1.1 2003/09/14 17:58:16 zul Exp $
+
+*nettop-0.2.3 (14 Sep 2003)
+
+ 14 Sep 2003; Chuck Short <zul@gentoo.org> nettop-0.2.3.ebuild:
+ Initial version by Torben Janssen <torben@teejot.net>. Closes bug
+ #28500
+
diff --git a/net-analyzer/nettop/Manifest b/net-analyzer/nettop/Manifest
index 2067d17affad..7410c337805c 100644
--- a/net-analyzer/nettop/Manifest
+++ b/net-analyzer/nettop/Manifest
@@ -1,2 +1,3 @@
-MD5 13e5fe2e267e661acdbeced659a6ef0a nettop-0.2.3.ebuild 641
+MD5 0549a276ade5063dd661496950522fe9 nettop-0.2.3.ebuild 644
+MD5 b2331f9a86e090cfd3569dea84ec335d ChangeLog 389
MD5 d1dfb4623376711f1542dc52dcb85a7c files/digest-nettop-0.2.3 63
diff --git a/net-analyzer/nettop/files/digest-nettop-0.2.3 b/net-analyzer/nettop/files/digest-nettop-0.2.3
new file mode 100644
index 000000000000..360980f9f256
--- /dev/null
+++ b/net-analyzer/nettop/files/digest-nettop-0.2.3
@@ -0,0 +1 @@
+MD5 e76602717e79a26b0ab15ab6799fb1ef nettop-0.2.3.tar.gz 22797
diff --git a/net-analyzer/nettop/nettop-0.2.3.ebuild b/net-analyzer/nettop/nettop-0.2.3.ebuild
new file mode 100644
index 000000000000..4b0e110562c5
--- /dev/null
+++ b/net-analyzer/nettop/nettop-0.2.3.ebuild
@@ -0,0 +1,30 @@
+# Copyright 1999-2003 Gentoo Technologies, Inc.
+# Distributed under the terms of the GNU General Public License v2
+# $Header: /var/cvsroot/gentoo-x86/net-analyzer/nettop/nettop-0.2.3.ebuild,v 1.1 2003/09/14 17:58:16 zul Exp $
+
+IUSE=""
+
+S=${WORKDIR}/${P}
+DESCRIPTION="top like program for network activity"
+SRC_URI="http://srparish.net/scripts/${P}.tar.gz"
+HOMEPAGE="http://srparish.net/software/"
+
+SLOT="0"
+LICENSE="BSD"
+KEYWORDS="x86"
+
+DEPEND="sys-libs/slang
+ net-libs/libpcap"
+
+
+src_compile() {
+ local myconf
+ myconf="--prefix=/usr"
+ ./configure ${myconf} || die
+ emake
+}
+
+src_install() {
+ dosbin nettop
+ dodoc ChangeLog README THANKS
+}