summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJeroen Roovers <jer@gentoo.org>2010-09-08 16:58:13 +0000
committerJeroen Roovers <jer@gentoo.org>2010-09-08 16:58:13 +0000
commitcf23c1408d79a4979158d67b6a5dd38a519b6c19 (patch)
tree07904202abd0ef8a339cf4c3e777849a1218aaf4 /net-analyzer/nfdump
parentVersion bump. Bug 336425. (diff)
downloadhistorical-cf23c1408d79a4979158d67b6a5dd38a519b6c19.tar.gz
historical-cf23c1408d79a4979158d67b6a5dd38a519b6c19.tar.bz2
historical-cf23c1408d79a4979158d67b6a5dd38a519b6c19.zip
Old.
Package-Manager: portage-2.2_rc77/cvs/Linux i686
Diffstat (limited to 'net-analyzer/nfdump')
-rw-r--r--net-analyzer/nfdump/Manifest11
-rw-r--r--net-analyzer/nfdump/nfdump-1.6.1.ebuild49
2 files changed, 0 insertions, 60 deletions
diff --git a/net-analyzer/nfdump/Manifest b/net-analyzer/nfdump/Manifest
index f5a360f5f28f..8dbe8f798ab2 100644
--- a/net-analyzer/nfdump/Manifest
+++ b/net-analyzer/nfdump/Manifest
@@ -1,15 +1,4 @@
------BEGIN PGP SIGNED MESSAGE-----
-Hash: SHA1
-
DIST nfdump-1.6.1.tar.gz 495643 RMD160 af26aef45e937b633c349cd6a551c34bf8cf8827 SHA1 d00cd84eb0f6ff23928c3c2c09665e5633f5114d SHA256 d0585d3963288b708f2be6081f673d9935acc8bb5f25255286786eedf31edafd
EBUILD nfdump-1.6.1-r2.ebuild 1439 RMD160 31c456544634531c7a94aa9d5b2773cf95dbaa0d SHA1 006ac029a14d2f7e42859c0b3243aa426fa8013e SHA256 81aeb8f20f550d96b1037aceeaf43d8027e2918f9fc67f1d2ce05cceb59a4c61
-EBUILD nfdump-1.6.1.ebuild 1314 RMD160 f93ea40044b54dd2ab36dca96e15f560e3acced6 SHA1 8a89192aab7afd2f76eeac2fc36ce3eeb6ecd4d3 SHA256 aef3cd56f876c4b3a6ed58ab49bc20c8e59937a0ffd5810ac802ce331bd78f30
MISC ChangeLog 2666 RMD160 eb045bbe392782902236e214032ed496b3ce85ae SHA1 a2311f7343bff7c2b6ba3b10f96bfb4b03aab254 SHA256 f3f996da6a167270c2051a5e280c4d976d0d615b03803b22a9c964ba4c710515
MISC metadata.xml 672 RMD160 2cc5cad8ddda5833a01978d7f88aa035aef3b105 SHA1 3964c522dfd999385f44c1c6a0ef3a13ef393290 SHA256 5bc59bc7a5a8f8f0da16de87446c72ee2e1b7ff0dd704640269292e70d9fbf45
------BEGIN PGP SIGNATURE-----
-Version: GnuPG v2.0.16 (GNU/Linux)
-
-iEYEARECAAYFAkyHbscACgkQ9/cejkQaxBBIaACcC0H6FGxGBdSeVC6rz7zkTTO4
-V7wAn0++iFLe8BpATRKlBiSsTpv17/+J
-=k2x9
------END PGP SIGNATURE-----
diff --git a/net-analyzer/nfdump/nfdump-1.6.1.ebuild b/net-analyzer/nfdump/nfdump-1.6.1.ebuild
deleted file mode 100644
index 77cfbf0e0098..000000000000
--- a/net-analyzer/nfdump/nfdump-1.6.1.ebuild
+++ /dev/null
@@ -1,49 +0,0 @@
-# Copyright 1999-2010 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/net-analyzer/nfdump/nfdump-1.6.1.ebuild,v 1.6 2010/06/26 17:03:08 angelos Exp $
-
-EAPI=2
-inherit autotools eutils
-
-DESCRIPTION="A set of tools to collect and process netflow data"
-HOMEPAGE="http://nfdump.sourceforge.net/"
-SRC_URI="mirror://sourceforge/nfdump/${P}.tar.gz"
-
-LICENSE="BSD"
-SLOT="0"
-KEYWORDS="amd64 x86"
-# Fails to build readpcap:
-# https://sourceforge.net/tracker/?func=detail&aid=2996582&group_id=119350&atid=683752
-IUSE="ftconv nfprofile sflow"
-
-CDEPEND="
- ftconv? ( sys-libs/zlib
- net-analyzer/flow-tools )
- nfprofile? ( net-analyzer/rrdtool )"
-# readpcap? ( net-libs/libpcap )"
-DEPEND="${CDEPEND}
- sys-devel/flex"
-RDEPEND=${CDEPEND}"
- dev-lang/perl"
-
-src_prepare() {
- if use ftconv; then
- sed '/ftbuild.h/d' -i bin/ft2nfdump.c || die
- sed 's:lib\(/ftlib.h\):include\1:' -i configure.in || die
- eautoreconf
- fi
-}
-
-src_configure() {
- # --without-ftconf is not handled well #322201
- econf \
- $(use ftconv && echo "--with-ftconf --with-ftpath=/usr") \
- $(use nfprofile && echo "--enable-nfprofile") \
- $(use_enable sflow)
- # $(use_enable readpcap) \
-}
-
-src_install() {
- emake DESTDIR="${D}" install || die
- dodoc AUTHORS ChangeLog NEWS README || die
-}