From owner-svn-ports-all@freebsd.org Sat Aug 6 08:51:44 2016 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 75314BB0D05; Sat, 6 Aug 2016 08:51:44 +0000 (UTC) (envelope-from koobs@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 4571F1F32; Sat, 6 Aug 2016 08:51:44 +0000 (UTC) (envelope-from koobs@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id u768ph9b008794; Sat, 6 Aug 2016 08:51:43 GMT (envelope-from koobs@FreeBSD.org) Received: (from koobs@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u768phiB008793; Sat, 6 Aug 2016 08:51:43 GMT (envelope-from koobs@FreeBSD.org) Message-Id: <201608060851.u768phiB008793@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: koobs set sender to koobs@FreeBSD.org using -f From: Kubilay Kocak Date: Sat, 6 Aug 2016 08:51:43 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r419735 - 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.22 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: Sat, 06 Aug 2016 08:51:44 -0000 Author: koobs Date: Sat Aug 6 08:51:43 2016 New Revision: 419735 URL: https://svnweb.freebsd.org/changeset/ports/419735 Log: security/suricata: Fix libpcap LIB_DEPENDS Fix the PORTS_PCAP option LIB_DEPENDS entry ambiguously depending on net/libpcap, which should be libpcap.so.1 so as not to be satisfied with the pcap library provided by base. [1] While I'm here: - Explicitly BUILD_DEPEND on libhtp >= 0.5.20, as configure breaks when that minimum version is not available. PR: 211578 Reported by: marino [1] Modified: head/security/suricata/Makefile Modified: head/security/suricata/Makefile ============================================================================== --- head/security/suricata/Makefile Sat Aug 6 08:22:42 2016 (r419734) +++ head/security/suricata/Makefile Sat Aug 6 08:51:43 2016 (r419735) @@ -3,6 +3,7 @@ PORTNAME= suricata PORTVERSION= 3.1.1 +PORTREVISION= 1 CATEGORIES= security MASTER_SITES= http://www.openinfosecfoundation.org/download/ @@ -54,6 +55,7 @@ TESTS_DESC= Unit tests in suricata bina GEOIP_LIB_DEPENDS= libGeoIP.so:net/GeoIP GEOIP_CONFIGURE_ON= --enable-geoip +HTP_PORT_BUILD_DEPENDS= libhtp>=0.5.20:devel/libhtp HTP_PORT_LIB_DEPENDS= libhtp.so:devel/libhtp HTP_PORT_CONFIGURE_ON= --enable-non-bundled-htp HTP_PORT_CONFIGURE_OFF= --enable-bundled-htp @@ -83,7 +85,7 @@ NSS_CONFIGURE_ON= --with-libnss-include NETMAP_CONFIGURE_ENABLE= netmap -PORTS_PCAP_LIB_DEPENDS= libpcap.so:net/libpcap +PORTS_PCAP_LIB_DEPENDS= libpcap.so.1:net/libpcap PORTS_PCAP_CONFIGURE_ON= --with-libpcap-includes=${LOCALBASE}/include \ --with-libpcap-libraries=${LOCALBASE}/lib PORTS_PCAP_CONFIGURE_OFF= --with-libpcap-includes=/usr/include \