pkgsrc/net/nfdump/Makefile
joerg 64042495c8 Improve portability and while here, fix a rather obvious buffer overflow
in the argument handling. No idea how this was supposed to work, but
consider running it in / with relative arguments.

Bump revision.
2007-08-12 13:57:35 +00:00

41 lines
1 KiB
Makefile

# $NetBSD: Makefile,v 1.2 2007/08/12 13:57:35 joerg Exp $
#
DISTNAME= nfdump-1.5.2
PKGREVISION= 1
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
GNU_CONFIGURE= yes
TEST_TARGET= test
PKG_OPTIONS_VAR= PKG_OPTIONS.nfdump
PKG_SUPPORTED_OPTIONS= nfdump-ftconv nfdump-sflow
.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
EGDIR= ${PREFIX}/share/examples/nfdump
INSTALLATION_DIRS= share/examples/nfdump
REPLACE_PERL+= nfclean.pl
post-install:
${INSTALL_SCRIPT} ${WRKSRC}/nfclean.pl ${EGDIR}/nfclean.pl
.include "../../mk/bsd.pkg.mk"