summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChuck Short <zul@gentoo.org>2003-09-25 03:18:49 +0000
committerChuck Short <zul@gentoo.org>2003-09-25 03:18:49 +0000
commit1d146cb2cdb51d4ada8582dc09fa1f86c1b7426a (patch)
tree3c3ead45780ea4f1297f863bd91b2bc28a2b69c5 /net-analyzer/iftop
parentVersion bump (diff)
downloadgentoo-2-1d146cb2cdb51d4ada8582dc09fa1f86c1b7426a.tar.gz
gentoo-2-1d146cb2cdb51d4ada8582dc09fa1f86c1b7426a.tar.bz2
gentoo-2-1d146cb2cdb51d4ada8582dc09fa1f86c1b7426a.zip
Version bump
Diffstat (limited to 'net-analyzer/iftop')
-rw-r--r--net-analyzer/iftop/ChangeLog5
-rw-r--r--net-analyzer/iftop/Manifest4
-rw-r--r--net-analyzer/iftop/files/digest-iftop-0.141
-rw-r--r--net-analyzer/iftop/iftop-0.14.ebuild31
4 files changed, 38 insertions, 3 deletions
diff --git a/net-analyzer/iftop/ChangeLog b/net-analyzer/iftop/ChangeLog
index c89ce7369863..3b661a9972cc 100644
--- a/net-analyzer/iftop/ChangeLog
+++ b/net-analyzer/iftop/ChangeLog
@@ -1,6 +1,9 @@
# ChangeLog for net-analyzer/iftop
# Copyright 2002-2003 Gentoo Technologies, Inc.; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/net-analyzer/iftop/ChangeLog,v 1.6 2003/09/03 21:48:28 zul Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-analyzer/iftop/ChangeLog,v 1.7 2003/09/25 03:18:39 zul Exp $
+
+ 24 Sep 2003; Chuck Short <zul@gentoo.org> :
+ Version bump, closes bug #28057.
*iftop-0.13 (03 Sep 2003)
diff --git a/net-analyzer/iftop/Manifest b/net-analyzer/iftop/Manifest
index c3065459bf6c..1fb8d4b4e811 100644
--- a/net-analyzer/iftop/Manifest
+++ b/net-analyzer/iftop/Manifest
@@ -1,8 +1,8 @@
MD5 891c4c950b310381e7baaf8ba8fe685b iftop-0.11.ebuild 636
MD5 7745118475b5e29242747397b167c77c iftop-0.13.ebuild 680
MD5 1d81b0a9451cab7b37aa85395af30025 iftop-0.12.ebuild 681
-MD5 7745118475b5e29242747397b167c77c iftop-0.14.ebuild 680
-MD5 f42999233cbc095f319caf6f7d1090f6 ChangeLog 1321
+MD5 c78abb4f4fa2def2cca8f85ccd83bb04 iftop-0.14.ebuild 681
+MD5 c7a4ef9821a8052cd586efc022effbb0 ChangeLog 1403
MD5 2eeabc736f57ec2c18f114ae2d96127a files/digest-iftop-0.11 61
MD5 c760d86756f23c96fdc594ee4b27ccfb files/digest-iftop-0.12 62
MD5 766dde5066ae59435dd9b2765d5ee11b files/digest-iftop-0.13 62
diff --git a/net-analyzer/iftop/files/digest-iftop-0.14 b/net-analyzer/iftop/files/digest-iftop-0.14
new file mode 100644
index 000000000000..32d9ff140533
--- /dev/null
+++ b/net-analyzer/iftop/files/digest-iftop-0.14
@@ -0,0 +1 @@
+MD5 6f5197ffbd678565902f4f4d4977512b iftop-0.14.tar.gz 148989
diff --git a/net-analyzer/iftop/iftop-0.14.ebuild b/net-analyzer/iftop/iftop-0.14.ebuild
new file mode 100644
index 000000000000..5c7d01a6a88f
--- /dev/null
+++ b/net-analyzer/iftop/iftop-0.14.ebuild
@@ -0,0 +1,31 @@
+# Copyright 1999-2003 Gentoo Technologies, Inc.
+# Distributed under the terms of the GNU General Public License v2
+# $Header: /var/cvsroot/gentoo-x86/net-analyzer/iftop/iftop-0.14.ebuild,v 1.1 2003/09/25 03:18:39 zul 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() {
+ local myconf
+ myconf="--prefix=/usr"
+ ./configure ${myconf} || die
+ emake
+}
+
+src_install() {
+ dosbin iftop
+ doman iftop.8
+ dodoc COPYING CHANGES README
+}