blob: 59d1798a0fb6b014930308d6c20c7b068be89383 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
|
# 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.1 2010/05/06 09:10:36 pva 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() {
# $(use_enable readpcap) \
econf \
$(use_enable ftconv) \
$(use_with ftconv ftpath="/usr") \
$(use_enable nfprofile) \
$(use_enable sflow)
}
src_install() {
emake DESTDIR="${D}" install || die
dodoc AUTHORS ChangeLog NEWS README || die
}
|