Skip site navigation (1)Skip section navigation (2)
Date:      Sat, 6 Aug 2016 01:02:28 +0000 (UTC)
From:      John Marino <marino@FreeBSD.org>
To:        ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org
Subject:   svn commit: r419724 - head/net/daq
Message-ID:  <201608060102.u7612SVk037286@repo.freebsd.org>

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



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