mirror of
https://git.freebsd.org/ports.git
synced 2025-07-18 17:59:20 -04:00
Update to 0.56
PR: 33296 Submitted by: maxim@macomnet.ru, MAINTAINER Reviewed by: maintainer
This commit is contained in:
parent
ade48b818d
commit
c07d3db32a
Notes:
svn2git
2021-03-31 03:12:20 +00:00
svn path=/head/; revision=53026
18 changed files with 254 additions and 26 deletions
|
@ -6,10 +6,9 @@
|
|||
#
|
||||
|
||||
PORTNAME= flow-tools
|
||||
PORTVERSION= 0.55
|
||||
PORTVERSION= 0.56
|
||||
CATEGORIES= net
|
||||
MASTER_SITES= ftp://ftp.eng.oar.net/pub/flow-tools/ \
|
||||
ftp://ftp.fu-berlin.de/unix/network/flow-tools/
|
||||
MASTER_SITES= ftp://ftp.eng.oar.net/pub/flow-tools/
|
||||
|
||||
MAINTAINER= .@babolo.ru
|
||||
|
||||
|
@ -19,10 +18,18 @@ USE_GMAKE= yes
|
|||
|
||||
GNU_CONFIGURE= yes
|
||||
|
||||
MAN1= flow-capture.1 flow-export.1 flow-stat.1 flow-cat.1 \
|
||||
flow-fanout.1 flow-tools.1 flow-dscan.1 flow-filter.1 \
|
||||
flow-print.1 flow-expire.1 flow-gen.1 flow-profile.1 \
|
||||
flow-mirror.1 flow-search.1
|
||||
MAN1= flow-capture.1 flow-gen.1 flow-split.1 flow-cat.1 \
|
||||
flow-header.1 flow-stat.1 flow-dscan.1 flow-import.1 \
|
||||
flow-tools-examples.1 flow-expire.1 flow-merge.1 \
|
||||
flow-tools.1 flow-export.1 flow-print.1 flow-xlate.1 \
|
||||
flow-fanout.1 flow-receive.1 flow-filter.1 flow-send.1
|
||||
|
||||
post-patch:
|
||||
${TOUCH} -r ${WRKSRC}/configure.in.orig ${WRKSRC}/configure.in
|
||||
${TOUCH} -r ${WRKSRC}/configure.orig ${WRKSRC}/configure
|
||||
|
||||
pre-build:
|
||||
${RM} ${WRKSRC}/src/ftbuild.h
|
||||
|
||||
post-install:
|
||||
.for i in ${SCRIPTS}
|
||||
|
|
|
@ -1 +1 @@
|
|||
MD5 (flow-tools-0.55.tar.gz) = 22ff761e6c13c10c19d12c12e30c44b7
|
||||
MD5 (flow-tools-0.56.tar.gz) = 86565c23d4bf145630fff881ba1ce78c
|
||||
|
|
26
net-mgmt/flow-tools/files/patch-configs_Makefile
Normal file
26
net-mgmt/flow-tools/files/patch-configs_Makefile
Normal file
|
@ -0,0 +1,26 @@
|
|||
--- configs/Makefile.am Fri Jul 6 06:28:57 2001
|
||||
+++ configs/Makefile.am Sat Jan 12 06:20:07 2002
|
||||
@@ -1,6 +1,6 @@
|
||||
-ftsymdir=$(localstatedir)/sym
|
||||
+ftsymdir=$(localstatedir)/share/flow-tools
|
||||
ftsym_DATA = asn ip-prot tcp-port
|
||||
|
||||
-ftcfgdir=$(localstatedir)/cfg
|
||||
+ftcfgdir=$(localstatedir)/etc/flow-tools
|
||||
ftcfg_DATA = map filter-acl
|
||||
|
||||
--- configs/Makefile.in Sat Dec 29 01:05:48 2001
|
||||
+++ configs/Makefile.in Sat Jan 12 08:04:39 2002
|
||||
@@ -66,10 +66,10 @@
|
||||
YACC = @YACC@
|
||||
YLIB = @YLIB@
|
||||
|
||||
-ftsymdir = $(localstatedir)/sym
|
||||
+ftsymdir = $(localstatedir)/share/flow-tools
|
||||
ftsym_DATA = asn ip-prot tcp-port
|
||||
|
||||
-ftcfgdir = $(localstatedir)/cfg
|
||||
+ftcfgdir = $(localstatedir)/etc/flow-tools
|
||||
ftcfg_DATA = map filter-acl
|
||||
mkinstalldirs = $(SHELL) $(top_srcdir)/mkinstalldirs
|
||||
CONFIG_HEADER = ../config.h
|
22
net-mgmt/flow-tools/files/patch-configure
Normal file
22
net-mgmt/flow-tools/files/patch-configure
Normal file
|
@ -0,0 +1,22 @@
|
|||
--- configure.in Sat Dec 29 01:02:24 2001
|
||||
+++ configure.in Sat Jan 12 08:43:07 2002
|
||||
@@ -8,7 +8,7 @@
|
||||
|
||||
CFLAGS="-g -Wall"
|
||||
|
||||
-localstatedir="/var/ft"
|
||||
+localstatedir="${prefix}"
|
||||
|
||||
dnl Checks for programs.
|
||||
AC_PROG_CC
|
||||
--- configure Sat Dec 29 01:05:33 2001
|
||||
+++ configure Sat Jan 12 08:42:27 2002
|
||||
@@ -783,7 +783,7 @@
|
||||
|
||||
CFLAGS="-g -Wall"
|
||||
|
||||
-localstatedir="/var/ft"
|
||||
+localstatedir="${prefix}"
|
||||
|
||||
# Extract the first word of "gcc", so it can be a program name with args.
|
||||
set dummy gcc; ac_word=$2
|
11
net-mgmt/flow-tools/files/patch-docs_flow-print
Normal file
11
net-mgmt/flow-tools/files/patch-docs_flow-print
Normal file
|
@ -0,0 +1,11 @@
|
|||
--- docs/flow-print.1 Sun Dec 23 06:06:02 2001
|
||||
+++ docs/flow-print.1 Sat Jan 12 07:43:42 2002
|
||||
@@ -102,7 +102,7 @@
|
||||
None known\&.
|
||||
.SH "FILES"
|
||||
.PP
|
||||
-Symbols are located in \fB/var/ft/sym/*\fP
|
||||
+Symbols are located in \fB/usr/local/share/flow-tools/*\fP
|
||||
.SH "AUTHOR"
|
||||
.PP
|
||||
Mark Fullmer maf@splintered\&.net
|
19
net-mgmt/flow-tools/files/patch-ftpaths.h
Normal file
19
net-mgmt/flow-tools/files/patch-ftpaths.h
Normal file
|
@ -0,0 +1,19 @@
|
|||
--- lib/ftpaths.h.in Tue Jul 17 09:51:05 2001
|
||||
+++ lib/ftpaths.h.in Sat Jan 12 06:28:15 2002
|
||||
@@ -29,11 +29,11 @@
|
||||
#ifndef FTPATHS_H
|
||||
#define FTPATHS_H
|
||||
|
||||
-#define FT_FILE_MAP "@localstatedir@/cfg/map"
|
||||
+#define FT_FILE_MAP "@localstatedir@/etc/flow-tools/map"
|
||||
|
||||
-#define FT_FILE_IP_PROT "@localstatedir@/sym/ip-prot"
|
||||
-#define FT_FILE_IP_CLASS "@localstatedir@/sym/ip-class"
|
||||
-#define FT_FILE_TCP_PORT "@localstatedir@/sym/tcp-port"
|
||||
-#define FT_FILE_ASN "@localstatedir@/sym/asn"
|
||||
+#define FT_FILE_IP_PROT "@localstatedir@/share/flow-tools/ip-prot"
|
||||
+#define FT_FILE_IP_CLASS "@localstatedir@/share/flow-tools/ip-class"
|
||||
+#define FT_FILE_TCP_PORT "@localstatedir@/share/flow-tools/tcp-port"
|
||||
+#define FT_FILE_ASN "@localstatedir@/share/flow-tools/asn"
|
||||
|
||||
#endif /* FTPATHS_H */
|
22
net-mgmt/flow-tools/files/patch-src_Makefile
Normal file
22
net-mgmt/flow-tools/files/patch-src_Makefile
Normal file
|
@ -0,0 +1,22 @@
|
|||
--- src/Makefile.am Sat Dec 29 01:23:03 2001
|
||||
+++ src/Makefile.am Sat Jan 12 09:42:38 2002
|
||||
@@ -12,7 +12,7 @@
|
||||
|
||||
force_build:
|
||||
|
||||
-ftbuild.h: ftbuild.sh force_build
|
||||
+ftbuild.h: ftbuild.sh
|
||||
./ftbuild.sh
|
||||
|
||||
flow_import_SOURCES = flow-import.c ftbuild.h
|
||||
--- src/Makefile.in Sat Dec 29 01:27:29 2001
|
||||
+++ src/Makefile.in Sat Jan 12 09:43:42 2002
|
||||
@@ -531,7 +531,7 @@
|
||||
|
||||
force_build:
|
||||
|
||||
-ftbuild.h: ftbuild.sh force_build
|
||||
+ftbuild.h: ftbuild.sh
|
||||
./ftbuild.sh
|
||||
|
||||
# Tell versions [3.59,3.63) of GNU make to not export all variables.
|
|
@ -1,4 +1,4 @@
|
|||
Tools to capture, replicate, print, filter, send and other works
|
||||
Tools to capture, replicate, print, filter, send and other works
|
||||
on Cisco's NetFlow Export.
|
||||
|
||||
WWW: http://www.splintered.net/sw/flow-tools/
|
||||
|
|
|
@ -9,13 +9,20 @@ bin/flow-gen
|
|||
bin/flow-header
|
||||
bin/flow-import
|
||||
bin/flow-merge
|
||||
bin/flow-mirror
|
||||
bin/flow-print
|
||||
bin/flow-receive
|
||||
bin/flow-rsync
|
||||
bin/flow-search
|
||||
bin/flow-send
|
||||
bin/flow-split
|
||||
bin/flow-stat
|
||||
bin/flow-tag
|
||||
bin/flow-xlate
|
||||
bin/flow-mirror
|
||||
bin/flow-rsync
|
||||
bin/flow-search
|
||||
@dirrm /var/ft
|
||||
etc/flow-tools/map
|
||||
etc/flow-tools/filter-acl
|
||||
share/flow-tools/asn
|
||||
share/flow-tools/ip-prot
|
||||
share/flow-tools/tcp-port
|
||||
@dirrm etc/flow-tools
|
||||
@dirrm share/flow-tools
|
||||
|
|
|
@ -6,10 +6,9 @@
|
|||
#
|
||||
|
||||
PORTNAME= flow-tools
|
||||
PORTVERSION= 0.55
|
||||
PORTVERSION= 0.56
|
||||
CATEGORIES= net
|
||||
MASTER_SITES= ftp://ftp.eng.oar.net/pub/flow-tools/ \
|
||||
ftp://ftp.fu-berlin.de/unix/network/flow-tools/
|
||||
MASTER_SITES= ftp://ftp.eng.oar.net/pub/flow-tools/
|
||||
|
||||
MAINTAINER= .@babolo.ru
|
||||
|
||||
|
@ -19,10 +18,18 @@ USE_GMAKE= yes
|
|||
|
||||
GNU_CONFIGURE= yes
|
||||
|
||||
MAN1= flow-capture.1 flow-export.1 flow-stat.1 flow-cat.1 \
|
||||
flow-fanout.1 flow-tools.1 flow-dscan.1 flow-filter.1 \
|
||||
flow-print.1 flow-expire.1 flow-gen.1 flow-profile.1 \
|
||||
flow-mirror.1 flow-search.1
|
||||
MAN1= flow-capture.1 flow-gen.1 flow-split.1 flow-cat.1 \
|
||||
flow-header.1 flow-stat.1 flow-dscan.1 flow-import.1 \
|
||||
flow-tools-examples.1 flow-expire.1 flow-merge.1 \
|
||||
flow-tools.1 flow-export.1 flow-print.1 flow-xlate.1 \
|
||||
flow-fanout.1 flow-receive.1 flow-filter.1 flow-send.1
|
||||
|
||||
post-patch:
|
||||
${TOUCH} -r ${WRKSRC}/configure.in.orig ${WRKSRC}/configure.in
|
||||
${TOUCH} -r ${WRKSRC}/configure.orig ${WRKSRC}/configure
|
||||
|
||||
pre-build:
|
||||
${RM} ${WRKSRC}/src/ftbuild.h
|
||||
|
||||
post-install:
|
||||
.for i in ${SCRIPTS}
|
||||
|
|
|
@ -1 +1 @@
|
|||
MD5 (flow-tools-0.55.tar.gz) = 22ff761e6c13c10c19d12c12e30c44b7
|
||||
MD5 (flow-tools-0.56.tar.gz) = 86565c23d4bf145630fff881ba1ce78c
|
||||
|
|
26
net/flow-tools/files/patch-configs_Makefile
Normal file
26
net/flow-tools/files/patch-configs_Makefile
Normal file
|
@ -0,0 +1,26 @@
|
|||
--- configs/Makefile.am Fri Jul 6 06:28:57 2001
|
||||
+++ configs/Makefile.am Sat Jan 12 06:20:07 2002
|
||||
@@ -1,6 +1,6 @@
|
||||
-ftsymdir=$(localstatedir)/sym
|
||||
+ftsymdir=$(localstatedir)/share/flow-tools
|
||||
ftsym_DATA = asn ip-prot tcp-port
|
||||
|
||||
-ftcfgdir=$(localstatedir)/cfg
|
||||
+ftcfgdir=$(localstatedir)/etc/flow-tools
|
||||
ftcfg_DATA = map filter-acl
|
||||
|
||||
--- configs/Makefile.in Sat Dec 29 01:05:48 2001
|
||||
+++ configs/Makefile.in Sat Jan 12 08:04:39 2002
|
||||
@@ -66,10 +66,10 @@
|
||||
YACC = @YACC@
|
||||
YLIB = @YLIB@
|
||||
|
||||
-ftsymdir = $(localstatedir)/sym
|
||||
+ftsymdir = $(localstatedir)/share/flow-tools
|
||||
ftsym_DATA = asn ip-prot tcp-port
|
||||
|
||||
-ftcfgdir = $(localstatedir)/cfg
|
||||
+ftcfgdir = $(localstatedir)/etc/flow-tools
|
||||
ftcfg_DATA = map filter-acl
|
||||
mkinstalldirs = $(SHELL) $(top_srcdir)/mkinstalldirs
|
||||
CONFIG_HEADER = ../config.h
|
22
net/flow-tools/files/patch-configure
Normal file
22
net/flow-tools/files/patch-configure
Normal file
|
@ -0,0 +1,22 @@
|
|||
--- configure.in Sat Dec 29 01:02:24 2001
|
||||
+++ configure.in Sat Jan 12 08:43:07 2002
|
||||
@@ -8,7 +8,7 @@
|
||||
|
||||
CFLAGS="-g -Wall"
|
||||
|
||||
-localstatedir="/var/ft"
|
||||
+localstatedir="${prefix}"
|
||||
|
||||
dnl Checks for programs.
|
||||
AC_PROG_CC
|
||||
--- configure Sat Dec 29 01:05:33 2001
|
||||
+++ configure Sat Jan 12 08:42:27 2002
|
||||
@@ -783,7 +783,7 @@
|
||||
|
||||
CFLAGS="-g -Wall"
|
||||
|
||||
-localstatedir="/var/ft"
|
||||
+localstatedir="${prefix}"
|
||||
|
||||
# Extract the first word of "gcc", so it can be a program name with args.
|
||||
set dummy gcc; ac_word=$2
|
11
net/flow-tools/files/patch-docs_flow-print
Normal file
11
net/flow-tools/files/patch-docs_flow-print
Normal file
|
@ -0,0 +1,11 @@
|
|||
--- docs/flow-print.1 Sun Dec 23 06:06:02 2001
|
||||
+++ docs/flow-print.1 Sat Jan 12 07:43:42 2002
|
||||
@@ -102,7 +102,7 @@
|
||||
None known\&.
|
||||
.SH "FILES"
|
||||
.PP
|
||||
-Symbols are located in \fB/var/ft/sym/*\fP
|
||||
+Symbols are located in \fB/usr/local/share/flow-tools/*\fP
|
||||
.SH "AUTHOR"
|
||||
.PP
|
||||
Mark Fullmer maf@splintered\&.net
|
19
net/flow-tools/files/patch-ftpaths.h
Normal file
19
net/flow-tools/files/patch-ftpaths.h
Normal file
|
@ -0,0 +1,19 @@
|
|||
--- lib/ftpaths.h.in Tue Jul 17 09:51:05 2001
|
||||
+++ lib/ftpaths.h.in Sat Jan 12 06:28:15 2002
|
||||
@@ -29,11 +29,11 @@
|
||||
#ifndef FTPATHS_H
|
||||
#define FTPATHS_H
|
||||
|
||||
-#define FT_FILE_MAP "@localstatedir@/cfg/map"
|
||||
+#define FT_FILE_MAP "@localstatedir@/etc/flow-tools/map"
|
||||
|
||||
-#define FT_FILE_IP_PROT "@localstatedir@/sym/ip-prot"
|
||||
-#define FT_FILE_IP_CLASS "@localstatedir@/sym/ip-class"
|
||||
-#define FT_FILE_TCP_PORT "@localstatedir@/sym/tcp-port"
|
||||
-#define FT_FILE_ASN "@localstatedir@/sym/asn"
|
||||
+#define FT_FILE_IP_PROT "@localstatedir@/share/flow-tools/ip-prot"
|
||||
+#define FT_FILE_IP_CLASS "@localstatedir@/share/flow-tools/ip-class"
|
||||
+#define FT_FILE_TCP_PORT "@localstatedir@/share/flow-tools/tcp-port"
|
||||
+#define FT_FILE_ASN "@localstatedir@/share/flow-tools/asn"
|
||||
|
||||
#endif /* FTPATHS_H */
|
22
net/flow-tools/files/patch-src_Makefile
Normal file
22
net/flow-tools/files/patch-src_Makefile
Normal file
|
@ -0,0 +1,22 @@
|
|||
--- src/Makefile.am Sat Dec 29 01:23:03 2001
|
||||
+++ src/Makefile.am Sat Jan 12 09:42:38 2002
|
||||
@@ -12,7 +12,7 @@
|
||||
|
||||
force_build:
|
||||
|
||||
-ftbuild.h: ftbuild.sh force_build
|
||||
+ftbuild.h: ftbuild.sh
|
||||
./ftbuild.sh
|
||||
|
||||
flow_import_SOURCES = flow-import.c ftbuild.h
|
||||
--- src/Makefile.in Sat Dec 29 01:27:29 2001
|
||||
+++ src/Makefile.in Sat Jan 12 09:43:42 2002
|
||||
@@ -531,7 +531,7 @@
|
||||
|
||||
force_build:
|
||||
|
||||
-ftbuild.h: ftbuild.sh force_build
|
||||
+ftbuild.h: ftbuild.sh
|
||||
./ftbuild.sh
|
||||
|
||||
# Tell versions [3.59,3.63) of GNU make to not export all variables.
|
|
@ -1,4 +1,4 @@
|
|||
Tools to capture, replicate, print, filter, send and other works
|
||||
Tools to capture, replicate, print, filter, send and other works
|
||||
on Cisco's NetFlow Export.
|
||||
|
||||
WWW: http://www.splintered.net/sw/flow-tools/
|
||||
|
|
|
@ -9,13 +9,20 @@ bin/flow-gen
|
|||
bin/flow-header
|
||||
bin/flow-import
|
||||
bin/flow-merge
|
||||
bin/flow-mirror
|
||||
bin/flow-print
|
||||
bin/flow-receive
|
||||
bin/flow-rsync
|
||||
bin/flow-search
|
||||
bin/flow-send
|
||||
bin/flow-split
|
||||
bin/flow-stat
|
||||
bin/flow-tag
|
||||
bin/flow-xlate
|
||||
bin/flow-mirror
|
||||
bin/flow-rsync
|
||||
bin/flow-search
|
||||
@dirrm /var/ft
|
||||
etc/flow-tools/map
|
||||
etc/flow-tools/filter-acl
|
||||
share/flow-tools/asn
|
||||
share/flow-tools/ip-prot
|
||||
share/flow-tools/tcp-port
|
||||
@dirrm etc/flow-tools
|
||||
@dirrm share/flow-tools
|
||||
|
|
Loading…
Add table
Reference in a new issue