Date: Thu, 4 Aug 2016 13:38:59 +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: r419611 - head/net/ipdecap Message-ID: <201608041338.u74DcxKD040614@repo.freebsd.org>
next in thread | raw e-mail | index | archive | help
Author: marino Date: Thu Aug 4 13:38:59 2016 New Revision: 419611 URL: https://svnweb.freebsd.org/changeset/ports/419611 Log: net/ipdecap: Fix LIB_DEPENDS on ports libpcap It is clear from the build dependency on the ports libpcap header that ipdecap intends to have a dependency on ports libpcap. However, it is ambiguously specified and the base libpcap satisfies the requirement, thus the dependency is never registered. Use the full library name (so.1 which does not conflict with either FreeBSD or DF base) to remove the ambiguity. Approved by: just-fix-it Modified: head/net/ipdecap/Makefile Modified: head/net/ipdecap/Makefile ============================================================================== --- head/net/ipdecap/Makefile Thu Aug 4 13:19:54 2016 (r419610) +++ head/net/ipdecap/Makefile Thu Aug 4 13:38:59 2016 (r419611) @@ -2,6 +2,7 @@ PORTNAME= ipdecap PORTVERSION= 0.7.1 +PORTREVISION= 1 DISTVERSIONPREFIX= v CATEGORIES= net @@ -12,7 +13,7 @@ LICENSE= GPLv3 LICENSE_FILE= ${WRKSRC}/COPYING BUILD_DEPENDS= ${LOCALBASE}/include/pcap/vlan.h:net/libpcap -LIB_DEPENDS= libpcap.so:net/libpcap +LIB_DEPENDS= libpcap.so.1:net/libpcap # require ports libpcap PLIST_FILES= bin/ipdecap\ man/man1/ipdecap.1.gz
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201608041338.u74DcxKD040614>