diff options
author | marino <marino@FreeBSD.org> | 2016-08-05 00:52:00 +0800 |
---|---|---|
committer | marino <marino@FreeBSD.org> | 2016-08-05 00:52:00 +0800 |
commit | 0ae8b5428d5216dd02a371e91c18726598d9f0ea (patch) | |
tree | 7137e6f0123649c995b54cff4c3317702de11865 /net | |
parent | bd018e5dd9446e8fb8e9548b897bb09fac2182c6 (diff) | |
download | freebsd-ports-gnome-0ae8b5428d5216dd02a371e91c18726598d9f0ea.tar.gz freebsd-ports-gnome-0ae8b5428d5216dd02a371e91c18726598d9f0ea.tar.zst freebsd-ports-gnome-0ae8b5428d5216dd02a371e91c18726598d9f0ea.zip |
net/libtrace: Fix LIB_DEPENDS on pcap (ports version desired)
The configure argument makes it clear the ports version of libpcap is
desired, but due to the ambiguous specification, the dependency was
never registered, but this commit rectifies that issue.
PR: 211578
approved by: just-fix-it
Diffstat (limited to 'net')
-rw-r--r-- | net/libtrace/Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/net/libtrace/Makefile b/net/libtrace/Makefile index 66e7b8eeeeec..91b44d0a1da6 100644 --- a/net/libtrace/Makefile +++ b/net/libtrace/Makefile @@ -3,14 +3,14 @@ PORTNAME= libtrace PORTVERSION= 3.0.19 -PORTREVISION= 1 +PORTREVISION= 2 CATEGORIES= net MASTER_SITES= http://research.wand.net.nz/software/libtrace/ MAINTAINER= matt@peterson.org COMMENT= C library for network packet capture and processing -LIB_DEPENDS= libpcap.so:net/libpcap +LIB_DEPENDS= libpcap.so.1:net/libpcap CONFIGURE_ARGS= --with-libpcap=${LOCALBASE} \ libtrace_doxygen=false |