mirror of
https://github.com/gentoo-mirror/gentoo.git
synced 2026-09-24 04:59:14 -07:00
net-analyzer/nfdump: Version bump.
Package-Manager: portage-2.3.0_rc1
This commit is contained in:
@@ -1,2 +1,3 @@
|
||||
DIST ff0e855bd1f51bed9fc5d8559c64d3cfb475a5d8.patch 31579 SHA256 39d1f37abee626863ad589439235d4e182eb9faf90bcbd0a75582aacee63a185 SHA512 ee3b82f1283f3dceb36cf60abcee7f5a8fb6c8fe257e2233c3fbb9a34b3c5608dfa101fd473c8b839356a9d1c294a37b9e65657ff1b2d5c015015ff90b2d2c97 WHIRLPOOL 0f074599b318ab7fc4e7444d17e9ab2f7adb3834e4ddd16ad2af06a343e4df2dd402afc87a1d6d3d743af116055c1e59dc8953f2de32742f1afd856eefe0cb69
|
||||
DIST nfdump-1.6.14.tar.gz 1834355 SHA256 7bf1b17cdcf81c399c6aaf87e0a8cbe12d81a9e33831629eb3a792878d5f80b1 SHA512 c5e5540526dfce3798728930576e4c7930c3ff80893a94d7f9e65c7c577d1e78bdc47a99c47cee837327ad202197afc378d2408b1b9b847044d0110146055ffe WHIRLPOOL ac7929fdc76b2980a464e1253e24832ad8abc153917d5290655a7fd5b29562b769f1120b29960624b5f73aa16bfab0593efb051af350ba3aacfed3aeeee1bb00
|
||||
DIST nfdump-1.6.15.tar.gz 1834855 SHA256 9505c0511d273b9aa3f87a5e664425689a3c7370c6ae3bbc05ff4bdb41bfd457 SHA512 a6bb4f2293ad85d8f16025e7272b889d3814cea2e9255dbd315ee92754675e4ee925c3ebe4e1350f2d5452d69d1d3c13ddeb656324a409c4744da1d4927fe1f2 WHIRLPOOL 40f1d5360c745d72ec6ddebb488de979ba45ad3a88b4d8489eb2925e3d20c3a1b228373bcec9a3f1f63e13705bea4fec6ceb121d72b9fb2487838691e5c8e6f9
|
||||
|
||||
66
net-analyzer/nfdump/nfdump-1.6.15.ebuild
Normal file
66
net-analyzer/nfdump/nfdump-1.6.15.ebuild
Normal file
@@ -0,0 +1,66 @@
|
||||
# Copyright 1999-2016 Gentoo Foundation
|
||||
# Distributed under the terms of the GNU General Public License v2
|
||||
# $Id$
|
||||
|
||||
EAPI=6
|
||||
inherit autotools eutils
|
||||
|
||||
DESCRIPTION="A set of tools to collect and process netflow data"
|
||||
HOMEPAGE="https://github.com/phaag/nfdump"
|
||||
SRC_URI="
|
||||
${HOMEPAGE}/archive/v${PV}.tar.gz -> ${P}.tar.gz
|
||||
"
|
||||
|
||||
LICENSE="BSD"
|
||||
SLOT="0/${PV}"
|
||||
KEYWORDS="~amd64 ~x86"
|
||||
IUSE="compat15 debug ftconv nfprofile nftrack readpcap sflow static-libs"
|
||||
|
||||
COMMON_DEPEND="
|
||||
app-arch/bzip2
|
||||
sys-libs/zlib
|
||||
ftconv? ( sys-libs/zlib net-analyzer/flow-tools )
|
||||
nfprofile? ( net-analyzer/rrdtool )
|
||||
nftrack? ( net-analyzer/rrdtool )
|
||||
readpcap? ( net-libs/libpcap )
|
||||
"
|
||||
DEPEND="
|
||||
${COMMON_DEPEND}
|
||||
sys-devel/flex
|
||||
virtual/yacc
|
||||
"
|
||||
RDEPEND="
|
||||
${COMMON_DEPEND}
|
||||
dev-lang/perl
|
||||
"
|
||||
|
||||
DOCS=( AUTHORS ChangeLog NEWS README )
|
||||
|
||||
src_prepare() {
|
||||
eapply \
|
||||
"${FILESDIR}"/${PN}-1.6.14-libft.patch \
|
||||
"${FILESDIR}"/${PN}-1.6.14-libnfdump.patch
|
||||
|
||||
eapply_user
|
||||
|
||||
eautoreconf
|
||||
}
|
||||
|
||||
src_configure() {
|
||||
# --without-ftconf is not handled well #322201
|
||||
econf \
|
||||
$(use ftconv && echo "--enable-ftconv --with-ftpath=/usr") \
|
||||
$(use nfprofile && echo --enable-nfprofile) \
|
||||
$(use nftrack && echo --enable-nftrack) \
|
||||
$(use_enable compat15) \
|
||||
$(use_enable debug devel) \
|
||||
$(use_enable readpcap) \
|
||||
$(use_enable sflow) \
|
||||
$(use_enable static-libs static)
|
||||
}
|
||||
|
||||
src_install() {
|
||||
default
|
||||
|
||||
prune_libtool_files
|
||||
}
|
||||
Reference in New Issue
Block a user