From owner-svn-ports-head@freebsd.org Wed Apr 6 19:02:45 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 32719B0415E; Wed, 6 Apr 2016 19:02:45 +0000 (UTC) (envelope-from mat@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 0E6891DF3; Wed, 6 Apr 2016 19:02:44 +0000 (UTC) (envelope-from mat@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id u36J2irJ050920; Wed, 6 Apr 2016 19:02:44 GMT (envelope-from mat@FreeBSD.org) Received: (from mat@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u36J2hRw050916; Wed, 6 Apr 2016 19:02:43 GMT (envelope-from mat@FreeBSD.org) Message-Id: <201604061902.u36J2hRw050916@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: mat set sender to mat@FreeBSD.org using -f From: Mathieu Arnold Date: Wed, 6 Apr 2016 19:02:43 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r412639 - in head: net/sngrep sysutils/mcollective-puppet-agent sysutils/mcollective-puppet-client sysutils/mcollective-puppet-common 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.21 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: Wed, 06 Apr 2016 19:02:45 -0000 Author: mat Date: Wed Apr 6 19:02:43 2016 New Revision: 412639 URL: https://svnweb.freebsd.org/changeset/ports/412639 Log: Remove ${PORTSDIR}/ from DEPENDS line. Again. Sponsored by: Absolight Modified: head/net/sngrep/Makefile (contents, props changed) head/sysutils/mcollective-puppet-agent/Makefile (contents, props changed) head/sysutils/mcollective-puppet-client/Makefile (contents, props changed) head/sysutils/mcollective-puppet-common/Makefile (contents, props changed) Modified: head/net/sngrep/Makefile ============================================================================== --- head/net/sngrep/Makefile Wed Apr 6 18:36:20 2016 (r412638) +++ head/net/sngrep/Makefile Wed Apr 6 19:02:43 2016 (r412639) @@ -11,8 +11,8 @@ COMMENT= SIP Packet display and capture LICENSE= GPLv3 LICENSE_FILE= ${WRKSRC}/LICENSE -LIB_DEPENDS= libncurses.so:${PORTSDIR}/devel/ncurses \ - libpcap.so:${PORTSDIR}/net/libpcap +LIB_DEPENDS= libncurses.so:devel/ncurses \ + libpcap.so:net/libpcap #CPPFLAGS+= -I${LOCALBASE}/include CFLAGS+= -I${LOCALBASE}/include @@ -31,11 +31,11 @@ OPENSSL_USE= OPENSSL=yes PCRE_DESC= Adds Perl Compatible regex support PCRE_CONFIGURE_ON= --with-pcre -PCRE_LIB_DEPENDS= libpcre.so:${PORTSDIR}/devel/pcre +PCRE_LIB_DEPENDS= libpcre.so:devel/pcre UNICODE_DESC= Adds Ncurses UTF-8/Unicode support UNICODE_CONFIGURE_ON= --enable-unicode -UNICODE_LIB_DEPENDS= libncursesw.so:${PORTSDIR}/devel/ncurses +UNICODE_LIB_DEPENDS= libncursesw.so:devel/ncurses IPV6_DESC= Enable IPv6 packet capture support IPV6_CONFIGURE_ON= --enable-ipv6 Modified: head/sysutils/mcollective-puppet-agent/Makefile ============================================================================== --- head/sysutils/mcollective-puppet-agent/Makefile Wed Apr 6 18:36:20 2016 (r412638) +++ head/sysutils/mcollective-puppet-agent/Makefile Wed Apr 6 19:02:43 2016 (r412639) @@ -7,7 +7,7 @@ COMMENT= MCollective agent to manage the # See MASTERDIR for MAINTAINER. -RUN_DEPENDS= mcollective-puppet-common>=${PORTVERSION}:${PORTSDIR}/sysutils/mcollective-puppet-common +RUN_DEPENDS= mcollective-puppet-common>=${PORTVERSION}:sysutils/mcollective-puppet-common MASTERDIR= ${.CURDIR}/../mcollective-puppet-common Modified: head/sysutils/mcollective-puppet-client/Makefile ============================================================================== --- head/sysutils/mcollective-puppet-client/Makefile Wed Apr 6 18:36:20 2016 (r412638) +++ head/sysutils/mcollective-puppet-client/Makefile Wed Apr 6 19:02:43 2016 (r412639) @@ -6,7 +6,7 @@ COMMENT= MCollective client to manage th # See MASTERDIR for MAINTAINER. -RUN_DEPENDS= mcollective-puppet-common>=${PORTVERSION}:${PORTSDIR}/sysutils/mcollective-puppet-common +RUN_DEPENDS= mcollective-puppet-common>=${PORTVERSION}:sysutils/mcollective-puppet-common MASTERDIR= ${.CURDIR}/../mcollective-puppet-common Modified: head/sysutils/mcollective-puppet-common/Makefile ============================================================================== --- head/sysutils/mcollective-puppet-common/Makefile Wed Apr 6 18:36:20 2016 (r412638) +++ head/sysutils/mcollective-puppet-common/Makefile Wed Apr 6 19:02:43 2016 (r412639) @@ -9,7 +9,7 @@ COMMENT?= MCollective common files to ma LICENSE= APACHE20 -RUN_DEPENDS?= mcollective>=2:${PORTSDIR}/sysutils/mcollective +RUN_DEPENDS?= mcollective>=2:sysutils/mcollective USE_GITHUB= yes GH_ACCOUNT= puppetlabs