From owner-svn-ports-head@FreeBSD.ORG Tue May 5 16:20:39 2015 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 7542D6AA; Tue, 5 May 2015 16:20:39 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::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 570CD1846; Tue, 5 May 2015 16:20:39 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.9/8.14.9) with ESMTP id t45GKda0070931; Tue, 5 May 2015 16:20:39 GMT (envelope-from bdrewery@FreeBSD.org) Received: (from bdrewery@localhost) by svn.freebsd.org (8.14.9/8.14.9/Submit) id t45GKcWP070922; Tue, 5 May 2015 16:20:38 GMT (envelope-from bdrewery@FreeBSD.org) Message-Id: <201505051620.t45GKcWP070922@svn.freebsd.org> X-Authentication-Warning: svn.freebsd.org: bdrewery set sender to bdrewery@FreeBSD.org using -f From: Bryan Drewery Date: Tue, 5 May 2015 16:20:38 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r385479 - in head/net: ntp ntp-devel 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.20 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: Tue, 05 May 2015 16:20:39 -0000 Author: bdrewery Date: Tue May 5 16:20:37 2015 New Revision: 385479 URL: https://svnweb.freebsd.org/changeset/ports/385479 Log: Rework r385426: - The include/event2 directory was being created improperly due to the lack of a pkgconfig dependency. Add it to USES. - Remove WRKSRC from SHEBANG list. Reported by: many Modified: head/net/ntp-devel/Makefile head/net/ntp-devel/pkg-plist head/net/ntp/Makefile head/net/ntp/pkg-plist Modified: head/net/ntp-devel/Makefile ============================================================================== --- head/net/ntp-devel/Makefile Tue May 5 16:16:31 2015 (r385478) +++ head/net/ntp-devel/Makefile Tue May 5 16:20:37 2015 (r385479) @@ -3,7 +3,7 @@ PORTNAME= ntp PORTVERSION= 4.3.20 -PORTREVISION= 1 +PORTREVISION= 2 CATEGORIES= net ipv6 MASTER_SITES= http://www.eecis.udel.edu/~ntp/ntp_spool/ntp4/ntp-dev/ \ http://archive.ntp.org/ntp4/ntp-dev/ @@ -17,12 +17,12 @@ CONFLICTS= ntp-[0-9].* ntp-rc-* GNU_CONFIGURE= yes OPTIONS_SUB= yes -USES= cpe pathfix shebangfix libtool +USES= cpe pathfix shebangfix libtool pkgconfig LIB_DEPENDS= libevent.so:${PORTSDIR}/devel/libevent2 -SHEBANG_FILES= ${WRKSRC}/scripts/ntptrace/ntptrace.in \ - ${WRKSRC}/scripts/ntp-wait/ntp-wait.in \ - ${WRKSRC}/scripts/update-leap/update-leap +SHEBANG_FILES= scripts/ntptrace/ntptrace.in \ + scripts/ntp-wait/ntp-wait.in \ + scripts/update-leap/update-leap perl_OLD_CMD= @PATH_PERL@ .include "Makefile.inc" Modified: head/net/ntp-devel/pkg-plist ============================================================================== --- head/net/ntp-devel/pkg-plist Tue May 5 16:16:31 2015 (r385478) +++ head/net/ntp-devel/pkg-plist Tue May 5 16:20:37 2015 (r385479) @@ -497,4 +497,3 @@ sbin/update-leap %%EXAMPLESDIR%%/malarky.conf %%EXAMPLESDIR%%/pogo.conf %%EXAMPLESDIR%%/rackety.conf -@dir include/event2 Modified: head/net/ntp/Makefile ============================================================================== --- head/net/ntp/Makefile Tue May 5 16:16:31 2015 (r385478) +++ head/net/ntp/Makefile Tue May 5 16:20:37 2015 (r385479) @@ -3,7 +3,7 @@ PORTNAME= ntp PORTVERSION= 4.2.8p2 -PORTREVISION= 1 +PORTREVISION= 2 CATEGORIES= net ipv6 MASTER_SITES= http://www.eecis.udel.edu/~ntp/ntp_spool/ntp4/ntp-4.2/ \ http://archive.ntp.org/ntp4/ntp-4.2/ \ @@ -17,12 +17,12 @@ CONFLICTS= ntp-rc-* ntp-devel-* GNU_CONFIGURE= yes OPTIONS_SUB= yes -USES= cpe pathfix shebangfix libtool +USES= cpe pathfix shebangfix libtool pkgconfig LIB_DEPENDS= libevent.so:${PORTSDIR}/devel/libevent2 -SHEBANG_FILES= ${WRKSRC}/scripts/ntptrace/ntptrace.in \ - ${WRKSRC}/scripts/ntp-wait/ntp-wait.in \ - ${WRKSRC}/scripts/update-leap/update-leap +SHEBANG_FILES= scripts/ntptrace/ntptrace.in \ + scripts/ntp-wait/ntp-wait.in \ + scripts/update-leap/update-leap perl_OLD_CMD= @PATH_PERL@ .include "Makefile.inc" Modified: head/net/ntp/pkg-plist ============================================================================== --- head/net/ntp/pkg-plist Tue May 5 16:16:31 2015 (r385478) +++ head/net/ntp/pkg-plist Tue May 5 16:20:37 2015 (r385479) @@ -497,4 +497,3 @@ sbin/update-leap %%EXAMPLESDIR%%/malarky.conf %%EXAMPLESDIR%%/pogo.conf %%EXAMPLESDIR%%/rackety.conf -@dir include/event2