diff options
author | Jeroen Roovers <jer@gentoo.org> | 2012-01-17 18:21:16 +0000 |
---|---|---|
committer | Jeroen Roovers <jer@gentoo.org> | 2012-01-17 18:21:16 +0000 |
commit | f42aace618a8c3f7152c2f926f2d40831c2d8258 (patch) | |
tree | abdfd2dcc2030f175878b496db67fef926c874ba /net-analyzer/ipband | |
parent | Old. (diff) | |
download | gentoo-2-f42aace618a8c3f7152c2f926f2d40831c2d8258.tar.gz gentoo-2-f42aace618a8c3f7152c2f926f2d40831c2d8258.tar.bz2 gentoo-2-f42aace618a8c3f7152c2f926f2d40831c2d8258.zip |
Old.
(Portage version: 2.2.0_alpha84/cvs/Linux x86_64)
Diffstat (limited to 'net-analyzer/ipband')
-rw-r--r-- | net-analyzer/ipband/ChangeLog | 5 | ||||
-rw-r--r-- | net-analyzer/ipband/ipband-0.8.ebuild | 51 |
2 files changed, 4 insertions, 52 deletions
diff --git a/net-analyzer/ipband/ChangeLog b/net-analyzer/ipband/ChangeLog index 0e034f581703..6dbe8229065a 100644 --- a/net-analyzer/ipband/ChangeLog +++ b/net-analyzer/ipband/ChangeLog @@ -1,6 +1,9 @@ # ChangeLog for net-analyzer/ipband # Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/net-analyzer/ipband/ChangeLog,v 1.9 2012/01/15 15:37:27 phajdan.jr Exp $ +# $Header: /var/cvsroot/gentoo-x86/net-analyzer/ipband/ChangeLog,v 1.10 2012/01/17 18:21:16 jer Exp $ + + 17 Jan 2012; Jeroen Roovers <jer@gentoo.org> -ipband-0.8.ebuild: + Old. 15 Jan 2012; Pawel Hajdan jr <phajdan.jr@gentoo.org> ipband-0.8.1-r1.ebuild: x86 stable wrt bug #397131 diff --git a/net-analyzer/ipband/ipband-0.8.ebuild b/net-analyzer/ipband/ipband-0.8.ebuild deleted file mode 100644 index bde882e67f56..000000000000 --- a/net-analyzer/ipband/ipband-0.8.ebuild +++ /dev/null @@ -1,51 +0,0 @@ -# Copyright 1999-2007 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/net-analyzer/ipband/ipband-0.8.ebuild,v 1.5 2007/05/01 17:51:28 genone Exp $ - -inherit eutils - -DESCRIPTION="A pcap based IP traffic and bandwidth monitor with configurable reporting and alarm abilities" -HOMEPAGE="http://ipband.sourceforge.net/" -SRC_URI="http://ipband.sourceforge.net/${P}.tgz" - -LICENSE="GPL-2" -SLOT="0" -KEYWORDS="~amd64 x86" -IUSE="" - -DEPEND=">=net-libs/libpcap-0.4" - -src_unpack() { - unpack ${A} - - # Provide a postfix MTA string in the author's ipband.conf example - sed -rie 's:(#mtastring.*):# Sendmail\n\1\n# Postfix\n#mtastring "/usr/sbin/sendmail -t":g' \ - "${S}"/ipband.sample.conf -} - -src_compile() { - emake || die "Compile problem" -} - -src_install() { - doman ipband.1 - dodoc CHANGELOG README - exeinto /usr/bin ; doexe ipband - newinitd "${FILESDIR}"/ipband-init ipband - insinto /etc/ ; newins ipband.sample.conf ipband.conf -} - -pkg_postinst() { - ewarn "If you plan to use ipband as a service, you must edit" - ewarn "/etc/ipband.conf" - elog "" - elog "The following command line example will:" - elog " o Listen on eth0" - elog " o Group results into a summary relative to 192.168.1.0/24" - elog " o Average bandwidth every 5 seconds" - elog " o Report when average bandwidth has exceeded 7 kB/sec" - elog " over the previous 10 seconds. The report is written to" - elog " stdout but can also be emailed or stored in a file." - elog "" - elog "ipband eth0 -L 192.168.1.0/24 -a 5 -r 10 -b 7 -o -" -} |