diff options
author | Bruce A. Locke <blocke@gentoo.org> | 2002-01-27 17:20:19 +0000 |
---|---|---|
committer | Bruce A. Locke <blocke@gentoo.org> | 2002-01-27 17:20:19 +0000 |
commit | 15be46d9d09dbf0834960144f6453adb39375f1e (patch) | |
tree | 5abf574794a2209911cc2bc2ff2aaed7d9606c28 /net-analyzer/iptraf | |
parent | new version (diff) | |
download | historical-15be46d9d09dbf0834960144f6453adb39375f1e.tar.gz historical-15be46d9d09dbf0834960144f6453adb39375f1e.tar.bz2 historical-15be46d9d09dbf0834960144f6453adb39375f1e.zip |
fix bug #302
Diffstat (limited to 'net-analyzer/iptraf')
-rw-r--r-- | net-analyzer/iptraf/files/digest-iptraf-2.4.0-r1 | 1 | ||||
-rw-r--r-- | net-analyzer/iptraf/iptraf-2.4.0-r1.ebuild | 27 |
2 files changed, 28 insertions, 0 deletions
diff --git a/net-analyzer/iptraf/files/digest-iptraf-2.4.0-r1 b/net-analyzer/iptraf/files/digest-iptraf-2.4.0-r1 new file mode 100644 index 000000000000..8259767c49e2 --- /dev/null +++ b/net-analyzer/iptraf/files/digest-iptraf-2.4.0-r1 @@ -0,0 +1 @@ +MD5 becb2fbaef1e387a5339f92520af60e9 iptraf-2.4.0.tar.gz 450560 diff --git a/net-analyzer/iptraf/iptraf-2.4.0-r1.ebuild b/net-analyzer/iptraf/iptraf-2.4.0-r1.ebuild new file mode 100644 index 000000000000..4a19fd42a27f --- /dev/null +++ b/net-analyzer/iptraf/iptraf-2.4.0-r1.ebuild @@ -0,0 +1,27 @@ +# Copyright 1999-2000 Gentoo Technologies, Inc. +# Distributed under the terms of the GNU General Public License, v2 or later +# Author Bryce Porter <x86@gentoo.org> +# $Header: /var/cvsroot/gentoo-x86/net-analyzer/iptraf/iptraf-2.4.0-r1.ebuild,v 1.1 2002/01/27 17:20:19 blocke Exp $ + +S=${WORKDIR}/${P} +DESCRIPTION="IPTraf is an ncurses-based IP LAN monitor" +SRC_URI="ftp://ftp.cebu.mozcom.com/pub/linux/net/${P}.tar.gz" +HOMEPAGE="http://cebu.mozcom.com/riker/iptraf/" + +DEPEND=">=sys-libs/ncurses-5.2-r1" + +src_compile() { + cd src + emake TARGET="/usr/bin" WORKDIR="/var/lib/iptraf" \ + clean all || die "emake failed" +} + +src_install() { + + dobin src/{iptraf,cfconv,rvnamed} + dodoc COPYING FAQ README* CHANGES RELEASE-NOTES + doman Documentation/*.8 + docinto html + dodoc Documentation/*.{gif,html} + dodir /var/{lib,run,log}/iptraf +} |