From owner-svn-ports-all@FreeBSD.ORG Thu Dec 5 11:58:23 2013 Return-Path: Delivered-To: svn-ports-all@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 9D5EB595; Thu, 5 Dec 2013 11:58:23 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 896E71623; Thu, 5 Dec 2013 11:58:23 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.7/8.14.7) with ESMTP id rB5BwNLD097561; Thu, 5 Dec 2013 11:58:23 GMT (envelope-from koobs@svn.freebsd.org) Received: (from koobs@localhost) by svn.freebsd.org (8.14.7/8.14.7/Submit) id rB5BwN6K097560; Thu, 5 Dec 2013 11:58:23 GMT (envelope-from koobs@svn.freebsd.org) Message-Id: <201312051158.rB5BwN6K097560@svn.freebsd.org> From: Kubilay Kocak Date: Thu, 5 Dec 2013 11:58:23 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r335661 - head/security/suricata X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 05 Dec 2013 11:58:23 -0000 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