diff options
author | Chuck Short <zul@gentoo.org> | 2003-09-03 21:49:33 +0000 |
---|---|---|
committer | Chuck Short <zul@gentoo.org> | 2003-09-03 21:49:33 +0000 |
commit | 4be5f474e509ac6bb441a67353b587ca1f12344c (patch) | |
tree | 00ba90e8292d9119240c69b82670654321dc8a62 /net-analyzer/iftop | |
parent | Version bump, closes #27684 (diff) | |
download | historical-4be5f474e509ac6bb441a67353b587ca1f12344c.tar.gz historical-4be5f474e509ac6bb441a67353b587ca1f12344c.tar.bz2 historical-4be5f474e509ac6bb441a67353b587ca1f12344c.zip |
Version bump, closes #27684
Diffstat (limited to 'net-analyzer/iftop')
-rw-r--r-- | net-analyzer/iftop/Manifest | 4 | ||||
-rw-r--r-- | net-analyzer/iftop/files/digest-iftop-0.13 | 1 | ||||
-rw-r--r-- | net-analyzer/iftop/iftop-0.13.ebuild | 31 |
3 files changed, 34 insertions, 2 deletions
diff --git a/net-analyzer/iftop/Manifest b/net-analyzer/iftop/Manifest index 3885953622b5..61257a2c6398 100644 --- a/net-analyzer/iftop/Manifest +++ b/net-analyzer/iftop/Manifest @@ -1,7 +1,7 @@ MD5 891c4c950b310381e7baaf8ba8fe685b iftop-0.11.ebuild 636 -MD5 1d81b0a9451cab7b37aa85395af30025 iftop-0.13.ebuild 681 +MD5 7745118475b5e29242747397b167c77c iftop-0.13.ebuild 680 MD5 1d81b0a9451cab7b37aa85395af30025 iftop-0.12.ebuild 681 -MD5 83c8dcb7b9e281d3fd8ab957b4d930b6 ChangeLog 1151 +MD5 f42999233cbc095f319caf6f7d1090f6 ChangeLog 1321 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.13 b/net-analyzer/iftop/files/digest-iftop-0.13 new file mode 100644 index 000000000000..d67765e69daf --- /dev/null +++ b/net-analyzer/iftop/files/digest-iftop-0.13 @@ -0,0 +1 @@ +MD5 f8f7f55e4d855bf5ea581a4013226f71 iftop-0.13.tar.gz 143858 diff --git a/net-analyzer/iftop/iftop-0.13.ebuild b/net-analyzer/iftop/iftop-0.13.ebuild new file mode 100644 index 000000000000..41d9e25eba3b --- /dev/null +++ b/net-analyzer/iftop/iftop-0.13.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.13.ebuild,v 1.1 2003/09/03 21:48:28 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 +} |