summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDaniel Ahlberg <aliz@gentoo.org>2002-11-04 13:32:45 +0000
committerDaniel Ahlberg <aliz@gentoo.org>2002-11-04 13:32:45 +0000
commit38e7ede7b88f44ae73533e97ca06d8e0f0bbb59e (patch)
tree9f363cf169c9129722f061bc0b304c244f11237c /net-analyzer/iftop
parentInitial import. (diff)
downloadhistorical-38e7ede7b88f44ae73533e97ca06d8e0f0bbb59e.tar.gz
historical-38e7ede7b88f44ae73533e97ca06d8e0f0bbb59e.tar.bz2
historical-38e7ede7b88f44ae73533e97ca06d8e0f0bbb59e.zip
Initial import.
Diffstat (limited to 'net-analyzer/iftop')
-rw-r--r--net-analyzer/iftop/ChangeLog8
-rw-r--r--net-analyzer/iftop/files/digest-iftop-0.101
-rw-r--r--net-analyzer/iftop/iftop-0.10.ebuild31
3 files changed, 40 insertions, 0 deletions
diff --git a/net-analyzer/iftop/ChangeLog b/net-analyzer/iftop/ChangeLog
new file mode 100644
index 000000000000..c25c79cbebb0
--- /dev/null
+++ b/net-analyzer/iftop/ChangeLog
@@ -0,0 +1,8 @@
+# ChangeLog for net-analyzer/iftop
+# Copyright 2002 Gentoo Technologies, Inc.; Distributed under the GPL v2
+# $Header: /var/cvsroot/gentoo-x86/net-analyzer/iftop/ChangeLog,v 1.1 2002/11/04 13:32:45 aliz Exp $
+
+*iftop-0.10 (04 Nov 2002)
+
+ 04 Nov 2002; Daniel Ahlberg <aliz@gentoo.org> :
+ Initial import. Ebuild contributed by Torben Janssen <torben@teejot.net> in #9898.
diff --git a/net-analyzer/iftop/files/digest-iftop-0.10 b/net-analyzer/iftop/files/digest-iftop-0.10
new file mode 100644
index 000000000000..03b1c12f191e
--- /dev/null
+++ b/net-analyzer/iftop/files/digest-iftop-0.10
@@ -0,0 +1 @@
+MD5 b7e48710b5d77e54bd5994f3b4d86e37 iftop-0.10.tar.gz 37513
diff --git a/net-analyzer/iftop/iftop-0.10.ebuild b/net-analyzer/iftop/iftop-0.10.ebuild
new file mode 100644
index 000000000000..a35b1eae8b98
--- /dev/null
+++ b/net-analyzer/iftop/iftop-0.10.ebuild
@@ -0,0 +1,31 @@
+# Copyright 1999-2002 Gentoo Technologies, Inc.
+# Distributed under the terms of the GNU General Public License v2
+# $Header: /var/cvsroot/gentoo-x86/net-analyzer/iftop/iftop-0.10.ebuild,v 1.1 2002/11/04 13:32:45 aliz Exp $
+
+IUSE=""
+
+S=${WORKDIR}/${P}
+DESCRIPTION="display bandwidth usage on an interface"
+SRC_URI="http://www.ex-parrot.com/~pdw/iftop/download/${P}.tar.gz"
+HOMEPAGE="http://www.ex-parrot.com/~pdw/iftop/"
+
+SLOT="0"
+LICENSE="GPL-2"
+KEYWORDS="~x86"
+
+DEPEND="sys-libs/ncurses
+ net-libs/libpcap"
+
+
+src_compile() {
+ sed -e 's/^PREFIX.*$/PREFIX = \/usr/' Makefile > Makefile.gentoo
+ mv Makefile.gentoo Makefile
+ make
+}
+
+src_install() {
+ dosbin iftop
+ doman iftop.8
+ dodoc COPYING CHANGES README
+}
+