blob: 05bb8aaa7ec3583757d8991a1059529fd50d05a4 (
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
|
# $NetBSD: Makefile,v 1.15 2012/03/03 00:13:46 wiz Exp $
#
DISTNAME= nfdump-1.5.7
#PKGREVISION= 1
PKGREVISION= 7
CATEGORIES= net
MASTER_SITES= ${MASTER_SITE_SOURCEFORGE:=nfdump/}
MAINTAINER= pkgsrc-users@NetBSD.org
HOMEPAGE= http://nfdump.sourceforge.net/
COMMENT= Tools to collect and process netflow data
PKG_DESTDIR_SUPPORT= user-destdir
GNU_CONFIGURE= yes
TEST_TARGET= test
USE_TOOLS+= lex yacc
PKG_OPTIONS_VAR= PKG_OPTIONS.nfdump
PKG_SUPPORTED_OPTIONS= nfdump-ftconv nfdump-sflow nfdump-nfprofile
.include "../../mk/bsd.options.mk"
PLIST_SRC= ${PKGDIR}/PLIST
.if !empty(PKG_OPTIONS:Mnfdump-ftconv)
CONFIGURE_ARGS+= --enable-ftconv
CONFIGURE_ARGS+= --with-ftpath=${BUILDLINK_PREFIX.flow-tools}
PLIST_SRC+= ${PKGDIR}/PLIST.ftconv
. include "../../net/flow-tools/buildlink3.mk"
.endif
.if !empty(PKG_OPTIONS:Mnfdump-sflow)
CONFIGURE_ARGS+= --enable-sflow
PLIST_SRC+= ${PKGDIR}/PLIST.sflow
.endif
.if !empty(PKG_OPTIONS:Mnfdump-nfprofile)
CONFIGURE_ARGS+= --enable-nfprofile
PLIST_SRC+= ${PKGDIR}/PLIST.nfprofile
. include "../../databases/rrdtool/buildlink3.mk"
.endif
.include "../../mk/bsd.pkg.mk"
|