From owner-svn-ports-head@freebsd.org Sat Aug 6 00:09:49 2016 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 772E7BAE671; Sat, 6 Aug 2016 00:09:49 +0000 (UTC) (envelope-from marino@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 4A1A41691; Sat, 6 Aug 2016 00:09:49 +0000 (UTC) (envelope-from marino@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id u7609mo3014618; Sat, 6 Aug 2016 00:09:48 GMT (envelope-from marino@FreeBSD.org) Received: (from marino@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u7609mwb014617; Sat, 6 Aug 2016 00:09:48 GMT (envelope-from marino@FreeBSD.org) Message-Id: <201608060009.u7609mwb014617@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: marino set sender to marino@FreeBSD.org using -f From: John Marino Date: Sat, 6 Aug 2016 00:09:48 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r419718 - head/net-mgmt/yaf X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.22 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 06 Aug 2016 00:09:49 -0000 Author: marino Date: Sat Aug 6 00:09:48 2016 New Revision: 419718 URL: https://svnweb.freebsd.org/changeset/ports/419718 Log: net-mgmt/yaf: Fix dependency on libpcap The WITH_DAG knob implies that the ports version of libpcap is desired for yaf, not the base version as it is currently configured. Fix the dependency specification accordingly. PR: 211578 Modified: head/net-mgmt/yaf/Makefile Modified: head/net-mgmt/yaf/Makefile ============================================================================== --- head/net-mgmt/yaf/Makefile Fri Aug 5 23:58:09 2016 (r419717) +++ head/net-mgmt/yaf/Makefile Sat Aug 6 00:09:48 2016 (r419718) @@ -3,6 +3,7 @@ PORTNAME= yaf PORTVERSION= 2.8.4 +PORTREVISION= 1 CATEGORIES= net-mgmt MASTER_SITES= http://tools.netsa.cert.org/releases/ @@ -14,7 +15,7 @@ LICENSE_FILE= ${WRKSRC}/COPYING LIB_DEPENDS= libfixbuf.so:net/libfixbuf \ libltdl.so:devel/libltdl \ - libpcap.so:net/libpcap \ + libpcap.so.1:net/libpcap \ libpcre.so:devel/pcre GNU_CONFIGURE= yes