svn commit: r335661 - head/security/suricata

Kubilay Kocak koobs at FreeBSD.org
Thu Dec 5 11:58:23 UTC 2013


Author: koobs
Date: Thu Dec  5 11:58:23 2013
New Revision: 335661
URL: http://svnweb.freebsd.org/changeset/ports/335661

Log:
  security/suricata: Remove unsupported DAG (Endace Capture) OPTION
  
  This OPTION is non-functional as it requires hardware support and libdag from
  Endace, which is not available in, nor recommended to be built via the ports
  tree.
  
  This OPTION also incorrectly added CONFIGURE_ARGS without adding any
  LIB_DEPENDS, which broke configure: during build when the option was enabled.
  
  Reported by:	mat (via pkg-fallout, via IRC)

Modified:
  head/security/suricata/Makefile

Modified: head/security/suricata/Makefile
==============================================================================
--- head/security/suricata/Makefile	Thu Dec  5 11:39:38 2013	(r335660)
+++ head/security/suricata/Makefile	Thu Dec  5 11:58:23 2013	(r335661)
@@ -3,6 +3,7 @@
 
 PORTNAME=	suricata
 PORTVERSION=	1.4.6
+PORTREVISION=	1
 CATEGORIES=	security
 MASTER_SITES=	http://www.openinfosecfoundation.org/download/ \
 		http://mirrors.rit.edu/zi/
@@ -17,13 +18,12 @@ LIB_DEPENDS=	libpcre.so:${PORTSDIR}/deve
 		libnet.so:${PORTSDIR}/net/libnet                \
 		libyaml.so:${PORTSDIR}/textproc/libyaml
 
-OPTIONS_DEFINE=	IPFW PRELUDE PORTS_PCAP DAG TESTS
+OPTIONS_DEFINE=	IPFW PRELUDE PORTS_PCAP TESTS
 OPTIONS_DEFAULT=IPFW
 
 IPFW_DESC=	Enable IPFW and IP Divert support for inline IDP
 PRELUDE_DESC=	Enable Prelude support for NIDS alerts
 PORTS_PCAP_DESC=Use libpcap from ports
-DAG_DESC=	Enable Endace DAG capture support
 TESTS_DESC=	Enable unit tests in suricata binary
 
 USE_AUTOTOOLS=	autoconf libtool
@@ -80,12 +80,6 @@ CONFIGURE_ARGS+=	--with-libpcap-includes
 			--with-libpcap-libraries=/usr/lib
 .endif
 
-.if ${PORT_OPTIONS:MDAG}
-CONFIGURE_ARGS+=	--enable-dag \
-			--with-dag-includes=${LOCALBASE}/include \
-			--with-dag-libraries=${LOCALBASE}/lib
-.endif
-
 .if ${PORT_OPTIONS:MTESTS}
 CONFIGURE_ARGS+=	--enable-unittests
 .else


More information about the svn-ports-head mailing list