diff options
author | lx <lx@FreeBSD.org> | 2007-06-14 09:21:39 +0800 |
---|---|---|
committer | lx <lx@FreeBSD.org> | 2007-06-14 09:21:39 +0800 |
commit | 953ec6a41b26eebfc39a856577f70fd967b3c7e4 (patch) | |
tree | 76b894f08f8acd62267cf4332914dd829c58c4e4 /security/silktools | |
parent | 718c573ba95bfc404639d047df9ea8992e1b5b8f (diff) | |
download | freebsd-ports-gnome-953ec6a41b26eebfc39a856577f70fd967b3c7e4.tar.gz freebsd-ports-gnome-953ec6a41b26eebfc39a856577f70fd967b3c7e4.tar.zst freebsd-ports-gnome-953ec6a41b26eebfc39a856577f70fd967b3c7e4.zip |
Fix a case where port build detected (a broken) liblzo install but
configure did not, silently disabling flowcap packing tools. configure
should now fail properly in this case, and plist expects the flowcap
tools.
Submitted by: kris
Diffstat (limited to 'security/silktools')
-rw-r--r-- | security/silktools/Makefile | 8 | ||||
-rw-r--r-- | security/silktools/pkg-plist | 3 |
2 files changed, 8 insertions, 3 deletions
diff --git a/security/silktools/Makefile b/security/silktools/Makefile index 1ca8e5db3996..c420acfec11d 100644 --- a/security/silktools/Makefile +++ b/security/silktools/Makefile @@ -8,7 +8,8 @@ PORTNAME= silktools PORTVERSION= 0.11.1 CATEGORIES= security net -MASTER_SITES= http://tools.netsa.cert.org/releases/ +MASTER_SITES= http://tools.netsa.cert.org/releases/ \ + http://redundancy.redundancy.org/mirror/ DISTNAME= silk-${PORTVERSION} MAINTAINER= lx@FreeBSD.org @@ -17,7 +18,7 @@ COMMENT= Tools for large-scale network capture analysis LIB_DEPENDS= lzo:${PORTSDIR}/archivers/lzo GNU_CONFIGURE= yes -CONFIGURE_ARGS= --with-lzo=${LOCALBASE} +CONFIGURE_ARGS= --with-lzo=${LOCALBASE} --enable-packing-tools USE_GMAKE= yes MAKE_ARGS= CC="${CC}" GCC_FLAGS="" CFLAGS_RELEASE="" USE_LDCONFIG= yes @@ -36,6 +37,7 @@ MAN3= libaddrtype.3 libccfilter.3 libpmapfilter.3 MAN5= sensor.conf.5 silk.conf.5 -MAN8= rwflowpack.8 rwpackchecker.8 rwflowappend.8 rwreceiver.8 rwsender.8 +MAN8= rwflowpack.8 rwpackchecker.8 rwflowappend.8 rwreceiver.8 rwsender.8 \ + flowcap.8 .include <bsd.port.mk> diff --git a/security/silktools/pkg-plist b/security/silktools/pkg-plist index 172f74f64777..4d781f891184 100644 --- a/security/silktools/pkg-plist +++ b/security/silktools/pkg-plist @@ -121,12 +121,15 @@ lib/libsktransfer.so.0 lib/libsktransfer.so lib/libsktransfer.la lib/libsktransfer.a +sbin/flowcap sbin/rwflowpack sbin/rwpackchecker sbin/rwflowappend sbin/rwreceiver sbin/rwsender +share/silk/etc/flowcap.conf share/silk/etc/rwflowpack.conf +share/silk/etc/init.d/flowcap share/silk/etc/init.d/rwflowpack share/silk/etc/init.d/rwflowappend share/silk/etc/init.d/rwreceiver |