| Version | EAPI | Keywords | Slot |
|---|---|---|---|
| 1.7.7 | 8 | amd64 x86 | 0/1.7.7 |
# Copyright 1999-2026 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
inherit autotools flag-o-matic toolchain-funcs
DESCRIPTION="A set of tools to collect and process netflow data"
HOMEPAGE="https://github.com/phaag/nfdump"
SRC_URI="https://github.com/phaag/nfdump/archive/v${PV}.tar.gz -> ${P}.tar.gz"
LICENSE="BSD"
SLOT="0/${PV}"
KEYWORDS="amd64 x86"
IUSE="debug doc ftconv jnat nfpcapd nfprofile nftrack nsel readpcap sflow"
REQUIRED_USE="?? ( jnat nsel )"
COMMON_DEPEND="app-arch/bzip2
virtual/zlib
elibc_musl? ( sys-libs/fts-standalone )
ftconv? ( net-analyzer/flow-tools )
nfpcapd? ( net-libs/libpcap )
nfprofile? ( net-analyzer/rrdtool )
nftrack? ( net-analyzer/rrdtool )
readpcap? ( net-libs/libpcap )
"
DEPEND="${COMMON_DEPEND}"
BDEPEND="app-alternatives/yacc
sys-devel/flex
doc? ( app-text/doxygen[dot] )
"
RDEPEND="${COMMON_DEPEND}
acct-group/nfcapd
acct-user/nfcapd
"
PATCHES=(
"${FILESDIR}"/${PN}-1.7.7-fix-libft-detection.patch
)
DOCS=( AUTHORS ChangeLog README.md )
src_prepare() {
default
eautoreconf
if use doc; then
doxygen -u doc/Doxyfile.in || die
fi
}
src_configure() {
tc-export CC
# bug #853763
use elibc_musl && append-libs "-lfts"
# --without-ftconf is not handled well, bug #322201
econf \
$(use ftconv && echo "--enable-ftconv --with-ftpath=/usr") \
$(use nfpcapd && echo --enable-nfpcapd) \
$(use nfprofile && echo --enable-nfprofile) \
$(use nftrack && echo --enable-nftrack) \
$(use_enable debug devel) \
$(use_enable jnat) \
$(use_enable nsel) \
$(use_enable readpcap) \
$(use_enable sflow)
}
src_install() {
default
find "${ED}" -name '*.la' -delete || die
newinitd "${FILESDIR}"/nfcapd.initd nfcapd
newconfd "${FILESDIR}"/nfcapd.confd nfcapd
if use doc; then
dodoc -r doc/html
fi
}
app-arch/bzip2 virtual/zlib elibc_musl? ( sys-libs/fts-standalone ) ftconv? ( net-analyzer/flow-tools ) nfpcapd? ( net-libs/libpcap ) nfprofile? ( net-analyzer/rrdtool ) nftrack? ( net-analyzer/rrdtool ) readpcap? ( net-libs/libpcap )
app-arch/bzip2 virtual/zlib elibc_musl? ( sys-libs/fts-standalone ) ftconv? ( net-analyzer/flow-tools ) nfpcapd? ( net-libs/libpcap ) nfprofile? ( net-analyzer/rrdtool ) nftrack? ( net-analyzer/rrdtool ) readpcap? ( net-libs/libpcap ) acct-group/nfcapd acct-user/nfcapd
app-alternatives/yacc sys-devel/flex doc? ( app-text/doxygen[dot] )
| Type | File | Size | Source URLs |
|---|---|---|---|
| DIST | nfdump-1.7.7.tar.gz | 873067 bytes | https://github.com/phaag/nfdump/archive/v1.7.7.tar.gz |