diff options
author | sylvio <sylvio@FreeBSD.org> | 2011-03-01 03:23:55 +0800 |
---|---|---|
committer | sylvio <sylvio@FreeBSD.org> | 2011-03-01 03:23:55 +0800 |
commit | 9bae7065e19af189d071a70385940629e94106f0 (patch) | |
tree | dac1194c17702fb4094a603abccdabbc75ac4ef7 /net-mgmt | |
parent | 723f915cdda9b58a548a2cf4c5f410ab77bb5ba4 (diff) | |
download | freebsd-ports-gnome-9bae7065e19af189d071a70385940629e94106f0.tar.gz freebsd-ports-gnome-9bae7065e19af189d071a70385940629e94106f0.tar.zst freebsd-ports-gnome-9bae7065e19af189d071a70385940629e94106f0.zip |
- Update to 1.6.3p1
PR: ports/155093
Submitted by: Alexey Illarionov <littlesavage@rambler.ru>
Approved by: Mohacsi Janos <mohacsi@niif.hu> (maintainer)
Diffstat (limited to 'net-mgmt')
-rw-r--r-- | net-mgmt/nfdump/Makefile | 38 | ||||
-rw-r--r-- | net-mgmt/nfdump/distinfo | 4 |
2 files changed, 31 insertions, 11 deletions
diff --git a/net-mgmt/nfdump/Makefile b/net-mgmt/nfdump/Makefile index ad2346b35b95..a710794985c4 100644 --- a/net-mgmt/nfdump/Makefile +++ b/net-mgmt/nfdump/Makefile @@ -6,7 +6,7 @@ # PORTNAME= nfdump -PORTVERSION= 1.6.2 +PORTVERSION= 1.6.3p1 CATEGORIES= net-mgmt MASTER_SITES= SF/${PORTNAME}/stable/${PORTNAME}-${PORTVERSION} @@ -22,6 +22,9 @@ LICENSE_FILE= ${WRKSRC}/BSD-license.txt #flow-tools support OPTIONS= FT2NFDUMP "With Flow-tools to nfdump converter" off \ NFPROFILE "With nfprofile (nfsen requires it)" on \ + FIXTIMEBUG "With fixing swap time bug of some v5" off \ + READPCAP "With pcap support" off \ + NFTRACK "With PortTracker support" off \ SFLOW "Build sflow collector daemon also" off .include <bsd.port.pre.mk> @@ -32,18 +35,29 @@ OPTIONS= FT2NFDUMP "With Flow-tools to nfdump converter" off \ CONFIGURE_ARGS= --enable-compat15 .endif -PLIST_FILES= bin/nfcapd bin/nfdump bin/nfreplay bin/nfexpire -MAN1= nfcapd.1 nfdump.1 nfreplay.1 nfexpire.1 -MAN1+= nfprofile.1 ft2nfdump.1 sfcapd.1 +PLIST_FILES= bin/nfanon bin/nfcapd bin/nfdump bin/nfexpire bin/nfreplay +MAN1= nfanon.1 nfcapd.1 nfdump.1 nfexpire.1 nfreplay.1 +MAN1+= ft2nfdump.1 nfprofile.1 sfcapd.1 PORTDOCS= AUTHORS ChangeLog INSTALL README -.if defined(WITH_NFPROFILE) +.if defined(WITH_FIXTIMEBUG) +CONFIGURE_ARGS+= --enable-fixtimebug +.endif -CONFIGURE_ARGS+= --enable-nfprofile --with-rrdpath=${LOCALBASE} +.if defined(WITH_NFPROFILE) +CONFIGURE_ARGS+= --enable-nfprofile PLIST_FILES+= bin/nfprofile -#MAN1+= nfprofile.1 +.endif + +.if defined(WITH_NFTRACK) +CONFIGURE_ARGS+= --enable-nftrack +PLIST_FILES+= bin/nftrack +.endif + +.if defined(WITH_NFPROFILE) || defined(WITH_NFTRACK) +CONFIGURE_ARGS+= --with-rrdpath=${LOCALBASE} BUILD_DEPENDS+= rrdtool:${PORTSDIR}/databases/rrdtool -RUN_DEPENDS+= ${BUILD_DEPENDS} +RUN_DEPENDS+= rrdtool:${PORTSDIR}/databases/rrdtool .endif #flow-tools support @@ -51,7 +65,10 @@ RUN_DEPENDS+= ${BUILD_DEPENDS} BUILD_DEPENDS+= flow-cat:${PORTSDIR}/net-mgmt/flow-tools CONFIGURE_ARGS+= --enable-ftconv --with-ftpath=${LOCALBASE} PLIST_FILES+= bin/ft2nfdump -#MAN1+= ft2nfdump.1 +.endif + +.if defined (WITH_READPCAP) +CONFIGURE_ARGS+= --enable-readpcap .endif #sflow capture support @@ -61,6 +78,9 @@ PLIST_FILES+= bin/sfcapd #MAN1+= sfcapd.1 .endif +post-configure: + @${REINPLACE_CMD} -E -e 's/sfcapd\.1/sfcapd\.1 nfanon\.1/' ${WRKSRC}/man/Makefile + .if !defined(NOPORTDOCS) post-install: ${MKDIR} ${DOCSDIR} diff --git a/net-mgmt/nfdump/distinfo b/net-mgmt/nfdump/distinfo index 3c6ff5e4949a..b5be9d74d6d2 100644 --- a/net-mgmt/nfdump/distinfo +++ b/net-mgmt/nfdump/distinfo @@ -1,2 +1,2 @@ -SHA256 (nfdump-1.6.2.tar.gz) = c69bbb5fb401161e5e20b848b47eff4a280d5c8d5f2c7f0943ea0b821b5742b0 -SIZE (nfdump-1.6.2.tar.gz) = 469358 +SHA256 (nfdump-1.6.3p1.tar.gz) = 68838379013e15b6f296ef06912f6ea5a649df697d2efb1a852f3189ad671749 +SIZE (nfdump-1.6.3p1.tar.gz) = 598839 |