Skip site navigation (1)Skip section navigation (2)
Date:      Sat, 6 Aug 2016 08:51:43 +0000 (UTC)
From:      Kubilay Kocak <koobs@FreeBSD.org>
To:        ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org
Subject:   svn commit: r419735 - head/security/suricata
Message-ID:  <201608060851.u768phiB008793@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
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 \



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201608060851.u768phiB008793>