svn commit: r419724 - head/net/daq

John Marino marino at FreeBSD.org
Sat Aug 6 01:02:29 UTC 2016


Author: marino
Date: Sat Aug  6 01:02:27 2016
New Revision: 419724
URL: https://svnweb.freebsd.org/changeset/ports/419724

Log:
  net/daq: Fix dependency on libpcap (use ports version)
  
  Back in r342092 (Jan 2014), the LIB_DEPENDS specification was updated
  from pcap to libpcap.so, which effectively moved the dependency from
  the ports version of libpcap to the base version.  The maintainer
  also indicated the ports listed in the PR should specify the net/libpcap.
  
  PR:	211578

Modified:
  head/net/daq/Makefile

Modified: head/net/daq/Makefile
==============================================================================
--- head/net/daq/Makefile	Sat Aug  6 00:55:48 2016	(r419723)
+++ head/net/daq/Makefile	Sat Aug  6 01:02:27 2016	(r419724)
@@ -3,6 +3,7 @@
 
 PORTNAME=	daq
 PORTVERSION=	2.0.6
+PORTREVISION=	1
 CATEGORIES=	net
 MASTER_SITES=	https://snort.org/downloads/snort/ \
 		http://mirrors.rit.edu/zi/
@@ -14,7 +15,7 @@ LICENSE=	GPLv2
 LICENSE_FILE=	${WRKSRC}/COPYING
 
 LIB_DEPENDS=	libdnet.so:net/libdnet \
-		libpcap.so:net/libpcap
+		libpcap.so.1:net/libpcap	# avoid base libpcap
 BUILD_DEPENDS=	flex:textproc/flex
 
 GNU_CONFIGURE=	yes


More information about the svn-ports-head mailing list