svn commit: r364656 - head/net-mgmt/nfdump
Kurt Jaeger
pi at FreeBSD.org
Mon Aug 11 20:20:52 UTC 2014
Author: pi
Date: Mon Aug 11 20:20:51 2014
New Revision: 364656
URL: http://svnweb.freebsd.org/changeset/ports/364656
QAT: https://qat.redports.org/buildarchive/r364656/
Log:
net-mgmt/nfdump: fix permissions & review pkg-descr
PR: 192595
Submitted by: Carlos Jacobo Puga Medina <cpm at fbsd.es> (maintainer)
Modified:
head/net-mgmt/nfdump/Makefile
head/net-mgmt/nfdump/pkg-descr
Modified: head/net-mgmt/nfdump/Makefile
==============================================================================
--- head/net-mgmt/nfdump/Makefile Mon Aug 11 20:20:23 2014 (r364655)
+++ head/net-mgmt/nfdump/Makefile Mon Aug 11 20:20:51 2014 (r364656)
@@ -3,6 +3,7 @@
PORTNAME= nfdump
PORTVERSION= 1.6.12
+PORTREVISION= 1
CATEGORIES= net-mgmt
MASTER_SITES= SF/${PORTNAME}/stable/${PORTNAME}-${PORTVERSION}
@@ -100,28 +101,33 @@ CONFIGURE_ARGS+= --disable-sflow
do-install:
.for binary in nfanon nfcapd nfdump nfexpire nfreplay
${INSTALL_DATA} ${WRKSRC}/bin/${binary} ${STAGEDIR}${PREFIX}/bin
+ ${CHMOD} +x ${STAGEDIR}${PREFIX}/bin/${binary}
${STRIP_CMD} ${STAGEDIR}${PREFIX}/bin/${binary}
.endfor
.if ${PORT_OPTIONS:MNFPROFILE}
${INSTALL_DATA} ${WRKSRC}/bin/nfprofile ${STAGEDIR}${PREFIX}/bin
+ ${CHMOD} +x ${STAGEDIR}${PREFIX}/bin/nfprofile
${STRIP_CMD} ${STAGEDIR}${PREFIX}/bin/nfprofile
${INSTALL_MAN} ${WRKSRC}/man/nfprofile.1 ${STAGEDIR}${PREFIX}/man/man1
.endif
.if ${PORT_OPTIONS:MNFTRACK}
${INSTALL_DATA} ${WRKSRC}/bin/nftrack ${STAGEDIR}${PREFIX}/bin
+ ${CHMOD} +x ${STAGEDIR}${PREFIX}/bin/nftrack
${STRIP_CMD} ${STAGEDIR}${PREFIX}/bin/nftrack
.endif
.if ${PORT_OPTIONS:MFT2NFDUMP}
${INSTALL_DATA} ${WRKSRC}/bin/ft2nfdump ${STAGEDIR}${PREFIX}/bin
+ ${CHMOD} +x ${STAGEDIR}${PREFIX}/bin/ft2nfdump
${STRIP_CMD} ${STAGEDIR}${PREFIX}/bin/ft2nfdump
${INSTALL_MAN} ${WRKSRC}/man/ft2nfdump.1 ${STAGEDIR}${PREFIX}/man/man1
.endif
.if ${PORT_OPTIONS:MSFLOW}
${INSTALL_DATA} ${WRKSRC}/bin/sfcapd ${STAGEDIR}${PREFIX}/bin
+ ${CHMOD} +x ${STAGEDIR}${PREFIX}/bin/sfcapd
${STRIP_CMD} ${STAGEDIR}${PREFIX}/bin/sfcapd
${INSTALL_MAN} ${WRKSRC}/man/sfcapd.1 ${STAGEDIR}${PREFIX}/man/man1
.endif
Modified: head/net-mgmt/nfdump/pkg-descr
==============================================================================
--- head/net-mgmt/nfdump/pkg-descr Mon Aug 11 20:20:23 2014 (r364655)
+++ head/net-mgmt/nfdump/pkg-descr Mon Aug 11 20:20:51 2014 (r364656)
@@ -1,21 +1,21 @@
-NFDUMP tools support netflow v5, v7 and v9 capturing and processing.
+NFDUMP tools support netflow v5, v7 and v9 capturing and processing.
nfcapd - netflow capture daemon.
Reads the netflow data from the network and stores the data into files.
nfdump - netflow dump.
Reads the netflow data from the files stored by nfcapd. It's syntax is similar
-to tcpdump. If you like tcpdump you will like nfdump.
+to tcpdump. If you like tcpdump you will like nfdump.
nfprofile - netflow profiler.
-Reads the netflow data from the files stored by nfcapd. Filters the netflow
-data according to the specified filter sets ( profiles ) and stores the
+Reads the netflow data from the files stored by nfcapd. Filters the netflow
+data according to the specified filter sets (profiles) and stores the
filtered data into files for later use.
-nfreplay - netflow replay
-Reads the netflow data from the files stored by nfcapd and sends it over
+nfreplay - netflow replay.
+Reads the netflow data from the files stored by nfcapd and sends it over
the network to another host.
-ft2nfdump - flow-tools to nfdump - optional component
+ft2nfdump - flow-tools to nfdump - optional component.
WWW: http://nfdump.sourceforge.net
More information about the svn-ports-head
mailing list