From owner-svn-ports-head@FreeBSD.ORG Sat Sep 7 14:37:03 2013 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 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTP id 94ADBCA4; Sat, 7 Sep 2013 14:37:03 +0000 (UTC) (envelope-from az@FreeBSD.org) 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)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 64B1D24CB; Sat, 7 Sep 2013 14:37:03 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.7/8.14.7) with ESMTP id r87Eb387040373; Sat, 7 Sep 2013 14:37:03 GMT (envelope-from az@svn.freebsd.org) Received: (from az@localhost) by svn.freebsd.org (8.14.7/8.14.5/Submit) id r87Eax4V040255; Sat, 7 Sep 2013 14:36:59 GMT (envelope-from az@svn.freebsd.org) Message-Id: <201309071436.r87Eax4V040255@svn.freebsd.org> From: Andrej Zverev Date: Sat, 7 Sep 2013 14:36:59 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r326639 - in head/devel: cvsstat p5-App-Rad p5-App-Trace p5-AppConfig-Std p5-Class-Date p5-Data-Rmap p5-Data-Structure-Util p5-Data-Uniqid p5-Getopt-Attribute p5-IO-FDPass p5-IPC-MMA p5... 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.14 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, 07 Sep 2013 14:37:03 -0000 Author: az Date: Sat Sep 7 14:36:58 2013 New Revision: 326639 URL: http://svnweb.freebsd.org/changeset/ports/326639 Log: - convert to the new perl5 framework - trim Makefile header Approved by: portmgr (bapt@, blanket) Modified: head/devel/cvsstat/Makefile head/devel/p5-App-Rad/Makefile head/devel/p5-App-Trace/Makefile (contents, props changed) head/devel/p5-AppConfig-Std/Makefile (contents, props changed) head/devel/p5-Class-Date/Makefile (contents, props changed) head/devel/p5-Data-Rmap/Makefile (contents, props changed) head/devel/p5-Data-Structure-Util/Makefile (contents, props changed) head/devel/p5-Data-Uniqid/Makefile (contents, props changed) head/devel/p5-Getopt-Attribute/Makefile (contents, props changed) head/devel/p5-IO-FDPass/Makefile (contents, props changed) head/devel/p5-IPC-MMA/Makefile (contents, props changed) head/devel/p5-MouseX-ConfigFromFile/Makefile (contents, props changed) head/devel/p5-POE-Quickie/Makefile (contents, props changed) head/devel/p5-ShipIt-Step-Manifest/Makefile (contents, props changed) head/devel/p5-Sort-Array/Makefile (contents, props changed) head/devel/p5-Tie-Hash-MultiValue/Makefile (contents, props changed) head/devel/p5-Tie-ToObject/Makefile (contents, props changed) head/devel/p5-VCP-Dest-svk/Makefile (contents, props changed) head/devel/p5-VCS-CVS/Makefile (contents, props changed) Modified: head/devel/cvsstat/Makefile ============================================================================== --- head/devel/cvsstat/Makefile Sat Sep 7 14:09:38 2013 (r326638) +++ head/devel/cvsstat/Makefile Sat Sep 7 14:36:58 2013 (r326639) @@ -13,7 +13,7 @@ EXTRACT_ONLY= # empty MAINTAINER= glarkin@FreeBSD.org COMMENT= Transforms the output of 'cvs status' to a sorted ASCII table -USE_PERL5= yes +USES= perl5 NO_BUILD= yes PLIST_FILES= bin/cvsstat Modified: head/devel/p5-App-Rad/Makefile ============================================================================== --- head/devel/p5-App-Rad/Makefile Sat Sep 7 14:09:38 2013 (r326638) +++ head/devel/p5-App-Rad/Makefile Sat Sep 7 14:36:58 2013 (r326639) @@ -13,7 +13,8 @@ COMMENT= Rapid (and easy!) creation of c LICENSE= ART10 GPLv1 LICENSE_COMB= dual -PERL_CONFIGURE= yes +USES= perl5 +USE_PERL5= configure MAN3= App::Rad.3 \ App::Rad::Exclude.3 \ Modified: head/devel/p5-App-Trace/Makefile ============================================================================== --- head/devel/p5-App-Trace/Makefile Sat Sep 7 14:09:38 2013 (r326638) +++ head/devel/p5-App-Trace/Makefile Sat Sep 7 14:36:58 2013 (r326639) @@ -1,9 +1,5 @@ -# New ports collection makefile for: p5-App-Trace -# Date created: 2006-08-20 -# Whom: Gea-Suan Lin -# +# Created by: Gea-Suan Lin # $FreeBSD$ -# PORTNAME= App-Trace PORTVERSION= 0.50 @@ -16,7 +12,8 @@ COMMENT= Embedded debug statements, incl RUN_DEPENDS= p5-App-Options>=0:${PORTSDIR}/devel/p5-App-Options -PERL_CONFIGURE= yes +USES= perl5 +USE_PERL5= configure MAN3= App::Trace.3 Modified: head/devel/p5-AppConfig-Std/Makefile ============================================================================== --- head/devel/p5-AppConfig-Std/Makefile Sat Sep 7 14:09:38 2013 (r326638) +++ head/devel/p5-AppConfig-Std/Makefile Sat Sep 7 14:36:58 2013 (r326639) @@ -16,7 +16,8 @@ LICENSE_COMB= dual RUN_DEPENDS= p5-AppConfig>=1.52:${PORTSDIR}/devel/p5-AppConfig BUILD_DEPENDS:= ${RUN_DEPENDS} -PERL_CONFIGURE= yes +USES= perl5 +USE_PERL5= configure MAN3= AppConfig::Std.3 Modified: head/devel/p5-Class-Date/Makefile ============================================================================== --- head/devel/p5-Class-Date/Makefile Sat Sep 7 14:09:38 2013 (r326638) +++ head/devel/p5-Class-Date/Makefile Sat Sep 7 14:36:58 2013 (r326639) @@ -1,9 +1,5 @@ -# New ports collection makefile for: p5-Class-Date -# Date Created: 28 June 2001 -# Whom: Pete Fritchman -# +# Created by: Pete Fritchman # $FreeBSD$ -# PORTNAME= Class-Date PORTVERSION= 1.1.10 @@ -14,7 +10,8 @@ PKGNAMEPREFIX= p5- MAINTAINER= culot@FreeBSD.org COMMENT= A Perl class for easy date and time manipulation -PERL_CONFIGURE= yes +USES= perl5 +USE_PERL5= configure MAN3= Class::Date.3 Modified: head/devel/p5-Data-Rmap/Makefile ============================================================================== --- head/devel/p5-Data-Rmap/Makefile Sat Sep 7 14:09:38 2013 (r326638) +++ head/devel/p5-Data-Rmap/Makefile Sat Sep 7 14:36:58 2013 (r326639) @@ -1,9 +1,5 @@ -# New ports collection makefile for: p5-Data-Rmap -# Date created: 2010-11-28 -# Whom: Gea-Suan Lin -# +# Created by: Gea-Suan Lin # $FreeBSD$ -# PORTNAME= Data-Rmap PORTVERSION= 0.62 @@ -16,7 +12,8 @@ COMMENT= Recursive map, apply a block to TEST_DEPENDS= p5-Test-Exception>=0:${PORTSDIR}/devel/p5-Test-Exception -PERL_MODBUILD= yes +USES= perl5 +USE_PERL5= modbuild MAN3= Data::Rmap.3 Modified: head/devel/p5-Data-Structure-Util/Makefile ============================================================================== --- head/devel/p5-Data-Structure-Util/Makefile Sat Sep 7 14:09:38 2013 (r326638) +++ head/devel/p5-Data-Structure-Util/Makefile Sat Sep 7 14:36:58 2013 (r326639) @@ -1,9 +1,5 @@ -# New ports collection makefile for: p5-Data-Structure -# Date created: April 9 2006 -# Whom: Jon Nistor -# +# Created by: Jon Nistor # $FreeBSD$ -# PORTNAME= Data-Structure-Util PORTVERSION= 0.15 @@ -18,7 +14,8 @@ COMMENT= Perl5 module to change the natu BUILD_DEPENDS= p5-Clone>=0:${PORTSDIR}/devel/p5-Clone \ p5-Test-Pod>=0:${PORTSDIR}/devel/p5-Test-Pod -PERL_CONFIGURE= yes +USES= perl5 +USE_PERL5= configure MAN3= Data::Structure::Util.3 Modified: head/devel/p5-Data-Uniqid/Makefile ============================================================================== --- head/devel/p5-Data-Uniqid/Makefile Sat Sep 7 14:09:38 2013 (r326638) +++ head/devel/p5-Data-Uniqid/Makefile Sat Sep 7 14:36:58 2013 (r326639) @@ -1,9 +1,5 @@ -# New ports collection makefile for: p5-Data-Uniqid -# Date created: 2008-11-28 -# Whom: Sergey V. Dyatko -# +# Created by: Sergey V. Dyatko # $FreeBSD$ -# PORTNAME= Data-Uniqid PORTVERSION= 0.12 @@ -14,7 +10,8 @@ PKGNAMEPREFIX= p5- MAINTAINER= sergey.dyatko@gmail.com COMMENT= Perl extension for simple genrating of unique id's -PERL_CONFIGURE= yes +USES= perl5 +USE_PERL5= configure MAN3= Data::Uniqid.3 Modified: head/devel/p5-Getopt-Attribute/Makefile ============================================================================== --- head/devel/p5-Getopt-Attribute/Makefile Sat Sep 7 14:09:38 2013 (r326638) +++ head/devel/p5-Getopt-Attribute/Makefile Sat Sep 7 14:36:58 2013 (r326639) @@ -1,9 +1,5 @@ -# New ports collection makefile for: p5-Getopt-Attribute -# Date created: 2010-11-28 -# Whom: Gea-Suan Lin -# +# Created by: Gea-Suan Lin # $FreeBSD$ -# PORTNAME= Getopt-Attribute PORTVERSION= 2.101700 @@ -14,7 +10,8 @@ PKGNAMEPREFIX= p5- MAINTAINER= gslin@gslin.org COMMENT= Attribute wrapper for Getopt::Long -PERL_CONFIGURE= yes +USES= perl5 +USE_PERL5= configure MAN3= Getopt::Attribute.3 Modified: head/devel/p5-IO-FDPass/Makefile ============================================================================== --- head/devel/p5-IO-FDPass/Makefile Sat Sep 7 14:09:38 2013 (r326638) +++ head/devel/p5-IO-FDPass/Makefile Sat Sep 7 14:36:58 2013 (r326639) @@ -9,7 +9,8 @@ PKGNAMEPREFIX= p5- MAINTAINER= kuriyama@FreeBSD.org COMMENT= Perl extension to pass a file descriptor over a socket -PERL_CONFIGURE= yes +USES= perl5 +USE_PERL5= configure MAN3= IO::FDPass.3 Modified: head/devel/p5-IPC-MMA/Makefile ============================================================================== --- head/devel/p5-IPC-MMA/Makefile Sat Sep 7 14:09:38 2013 (r326638) +++ head/devel/p5-IPC-MMA/Makefile Sat Sep 7 14:36:58 2013 (r326639) @@ -1,9 +1,5 @@ -# New ports collection makefile for: IPC-MMA -# Date created: 24 May 2011 -# Whom: Peter Vereshagin -# +# Created by: Peter Vereshagin # $FreeBSD$ -# PORTNAME= IPC-MMA PORTVERSION= 0.81 @@ -19,7 +15,8 @@ RUN_DEPENDS= p5-Devel-CheckOS>=0:${PORTS LIB_DEPENDS= mm.14:${PORTSDIR}/devel/mm TEST_DEPENDS= p5-Test-Warn>=0:${PORTSDIR}/devel/p5-Test-Warn -PERL_CONFIGURE= yes +USES= perl5 +USE_PERL5= configure MAN3= IPC::MMA.3 Modified: head/devel/p5-MouseX-ConfigFromFile/Makefile ============================================================================== --- head/devel/p5-MouseX-ConfigFromFile/Makefile Sat Sep 7 14:09:38 2013 (r326638) +++ head/devel/p5-MouseX-ConfigFromFile/Makefile Sat Sep 7 14:36:58 2013 (r326639) @@ -1,9 +1,5 @@ -# New ports collection makefile for: p5-MouseX-ConfigFromFile -# Date created: 2009-04-22 -# Whom: TERAMOTO Masahiro -# +# Created by: TERAMOTO Masahiro # $FreeBSD$ -# PORTNAME= MouseX-ConfigFromFile PORTVERSION= 0.05 @@ -20,7 +16,8 @@ BUILD_DEPENDS= p5-Filter>=0:${PORTSDIR}/ p5-MouseX-Types-Path-Class>=0.05:${PORTSDIR}/devel/p5-MouseX-Types-Path-Class RUN_DEPENDS:= ${BUILD_DEPENDS} -PERL_CONFIGURE= yes +USES= perl5 +USE_PERL5= configure MAN3= MouseX::ConfigFromFile.3 Modified: head/devel/p5-POE-Quickie/Makefile ============================================================================== --- head/devel/p5-POE-Quickie/Makefile Sat Sep 7 14:09:38 2013 (r326638) +++ head/devel/p5-POE-Quickie/Makefile Sat Sep 7 14:36:58 2013 (r326639) @@ -1,9 +1,5 @@ -# New ports collection makefile for: p5-POE-Quickie -# Date created: 2011-05-04 -# Whom: Takefu -# +# Created by: Takefu # $FreeBSD$ -# PORTNAME= POE-Quickie PORTVERSION= 0.18 @@ -24,7 +20,8 @@ RUN_DEPENDS:= ${BUILD_DEPENDS} TEST_DEPENDS= p5-Capture-Tiny>=0.07:${PORTSDIR}/devel/p5-Capture-Tiny \ p5-Test-Deep>=0:${PORTSDIR}/devel/p5-Test-Deep -PERL_CONFIGURE= yes +USES= perl5 +USE_PERL5= configure MAN3= POE::Quickie.3 Modified: head/devel/p5-ShipIt-Step-Manifest/Makefile ============================================================================== --- head/devel/p5-ShipIt-Step-Manifest/Makefile Sat Sep 7 14:09:38 2013 (r326638) +++ head/devel/p5-ShipIt-Step-Manifest/Makefile Sat Sep 7 14:36:58 2013 (r326639) @@ -1,9 +1,5 @@ -# New ports collection makefile for: p5-ShipIt-Step-Manifest -# Date created: 2010-11-28 -# Whom: Gea-Suan Lin -# +# Created by: Gea-Suan Lin # $FreeBSD$ -# PORTNAME= ShipIt-Step-Manifest PORTVERSION= 0.01 @@ -18,7 +14,8 @@ COMMENT= ShipIt step for recreating the RUN_DEPENDS= p5-Dist-Joseki>=0:${PORTSDIR}/devel/p5-Dist-Joseki \ p5-ShipIt>=0:${PORTSDIR}/devel/p5-ShipIt -PERL_CONFIGURE= yes +USES= perl5 +USE_PERL5= configure MAN3= ShipIt::Step::Manifest.3 Modified: head/devel/p5-Sort-Array/Makefile ============================================================================== --- head/devel/p5-Sort-Array/Makefile Sat Sep 7 14:09:38 2013 (r326638) +++ head/devel/p5-Sort-Array/Makefile Sat Sep 7 14:36:58 2013 (r326639) @@ -10,7 +10,8 @@ PKGNAMEPREFIX= p5- MAINTAINER= ehaupt@FreeBSD.org COMMENT= Powerful array sorting Perl interface -PERL_CONFIGURE= yes +USES= perl5 +USE_PERL5= configure MAN3= Sort::Array.3 Modified: head/devel/p5-Tie-Hash-MultiValue/Makefile ============================================================================== --- head/devel/p5-Tie-Hash-MultiValue/Makefile Sat Sep 7 14:09:38 2013 (r326638) +++ head/devel/p5-Tie-Hash-MultiValue/Makefile Sat Sep 7 14:36:58 2013 (r326639) @@ -1,9 +1,5 @@ -# New ports collection makefile for: p5-Tie-Hash-MultiValue -# Date created: 2010-09-10 -# Whom: Frederic Culot -# +# Created by: Frederic Culot # $FreeBSD$ -# PORTNAME= Tie-Hash-MultiValue PORTVERSION= 1.02 @@ -14,7 +10,8 @@ PKGNAMEPREFIX= p5- MAINTAINER= culot@FreeBSD.org COMMENT= Store multiple values per key -PERL_CONFIGURE= yes +USES= perl5 +USE_PERL5= configure MAN3= Tie::Hash::MultiValue.3 Modified: head/devel/p5-Tie-ToObject/Makefile ============================================================================== --- head/devel/p5-Tie-ToObject/Makefile Sat Sep 7 14:09:38 2013 (r326638) +++ head/devel/p5-Tie-ToObject/Makefile Sat Sep 7 14:36:58 2013 (r326639) @@ -1,9 +1,5 @@ -# New ports collection makefile for: p5-Tie-ToObject -# Date created: 2008-02-13 -# Whom: Felippe de Meirelles Motta -# +# Created by: Felippe de Meirelles Motta # $FreeBSD$ -# PORTNAME= Tie-ToObject PORTVERSION= 0.03 @@ -17,7 +13,8 @@ COMMENT= Tie to an existing object TEST_DEPENDS= p5-Test-use-ok>=0:${PORTSDIR}/devel/p5-Test-use-ok -PERL_CONFIGURE= yes +USES= perl5 +USE_PERL5= configure MAN3= Tie::ToObject.3 Modified: head/devel/p5-VCP-Dest-svk/Makefile ============================================================================== --- head/devel/p5-VCP-Dest-svk/Makefile Sat Sep 7 14:09:38 2013 (r326638) +++ head/devel/p5-VCP-Dest-svk/Makefile Sat Sep 7 14:36:58 2013 (r326639) @@ -1,9 +1,5 @@ -# New ports collection makefile for: devel/p5-VCP-Dest-svk -# Date created: Jul 19 2004 -# Whom: Rong-En Fan -# +# Created by: Rong-En Fan # $FreeBSD$ -# PORTNAME= VCP-Dest-svk PORTVERSION= 0.29 @@ -22,7 +18,8 @@ BUILD_DEPENDS= p5-VCP-autrijus>=0:${PORT p5-YAML>=0:${PORTSDIR}/textproc/p5-YAML RUN_DEPENDS:= ${BUILD_DEPENDS} -PERL_CONFIGURE= yes +USES= perl5 +USE_PERL5= configure MAN3= VCP::Dest::svk.3 Modified: head/devel/p5-VCS-CVS/Makefile ============================================================================== --- head/devel/p5-VCS-CVS/Makefile Sat Sep 7 14:09:38 2013 (r326638) +++ head/devel/p5-VCS-CVS/Makefile Sat Sep 7 14:36:58 2013 (r326639) @@ -1,9 +1,5 @@ -# New ports collection makefile for: p5-VCS-CVS -# Date created: 15 May 2001 -# Whom: Anatoliy Dmytriyev -# +# Created by: Anatoliy Dmytriyev # $FreeBSD$ -# PORTNAME= VCS-CVS PORTVERSION= 2.06 @@ -18,7 +14,8 @@ COMMENT= Perl module that provides a sim BUILD_DEPENDS= p5-Test-Pod>=0:${PORTSDIR}/devel/p5-Test-Pod -PERL_MODBUILD= yes +USES= perl5 +USE_PERL5= modbuild MAN3= VCS::CVS.3 .include