From owner-svn-ports-head@freebsd.org Thu Aug 4 12:53:35 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 14B62BAFCAB; Thu, 4 Aug 2016 12:53:35 +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 D5F311C9E; Thu, 4 Aug 2016 12:53:34 +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 u74CrYtR025318; Thu, 4 Aug 2016 12:53:34 GMT (envelope-from marino@FreeBSD.org) Received: (from marino@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u74CrYgF025317; Thu, 4 Aug 2016 12:53:34 GMT (envelope-from marino@FreeBSD.org) Message-Id: <201608041253.u74CrYgF025317@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: marino set sender to marino@FreeBSD.org using -f From: John Marino Date: Thu, 4 Aug 2016 12:53:34 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r419608 - head/net/fpc-pcap 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: Thu, 04 Aug 2016 12:53:35 -0000 Author: marino Date: Thu Aug 4 12:53:33 2016 New Revision: 419608 URL: https://svnweb.freebsd.org/changeset/ports/419608 Log: net/fpc-pcap: Remove redundant pcap option The default LIBPCAP option didn't do anything. It set a LIB_DEPENDS that is always satisfied by the base libpcap so no dependencies were registered. While here, set PORTREVISION. The slave ports of fpc should have have PORTREVISION?= line, even if the value is zero. This one didn't, so we have to bump to 2 because the master port already had set it to 1. Modified: head/net/fpc-pcap/Makefile Modified: head/net/fpc-pcap/Makefile ============================================================================== --- head/net/fpc-pcap/Makefile Thu Aug 4 12:04:32 2016 (r419607) +++ head/net/fpc-pcap/Makefile Thu Aug 4 12:53:33 2016 (r419608) @@ -1,6 +1,7 @@ # Created by: Alonso Cardenas Marquez # $FreeBSD$ +PORTREVISION= 2 CATEGORIES= net lang PKGNAMESUFFIX= -pcap @@ -13,10 +14,4 @@ MASTERDIR= ${.CURDIR}/../../lang/fpc WRKUNITDIR= ${FPCSRCDIR}/packages/${PKGNAMESUFFIX:S/-//} EXTRACTUNITDIR= ${WRKUNITDIR} -OPTIONS_DEFINE= LIBPCAP -LIBPCAP_DESC= Install ubiquitous network traffic capture library -OPTIONS_DEFAULT= LIBPCAP - -LIBPCAP_LIB_DEPENDS= libpcap.so:net/libpcap - .include "${MASTERDIR}/Makefile"