From owner-svn-ports-all@FreeBSD.ORG Tue Sep 10 16:48:46 2013 Return-Path: Delivered-To: svn-ports-all@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 464145BF; Tue, 10 Sep 2013 16:48:46 +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 1750C29AB; Tue, 10 Sep 2013 16:48:46 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.7/8.14.7) with ESMTP id r8AGmj2B048624; Tue, 10 Sep 2013 16:48:45 GMT (envelope-from az@svn.freebsd.org) Received: (from az@localhost) by svn.freebsd.org (8.14.7/8.14.5/Submit) id r8AGmgKE048599; Tue, 10 Sep 2013 16:48:42 GMT (envelope-from az@svn.freebsd.org) Message-Id: <201309101648.r8AGmgKE048599@svn.freebsd.org> From: Andrej Zverev Date: Tue, 10 Sep 2013 16:48:42 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r326918 - in head/textproc: p5-File-Inplace p5-HTML-HTMLDoc p5-Lingua-EN-Number-IsOrdinal p5-PDF-Writer p5-Regexp-DefaultFlags p5-String-CamelCase p5-String-RewritePrefix p5-Text-CSV-Ha... X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 10 Sep 2013 16:48:46 -0000 Author: az Date: Tue Sep 10 16:48:41 2013 New Revision: 326918 URL: http://svnweb.freebsd.org/changeset/ports/326918 Log: - convert to the new perl5 framework - trim Makefile header Approved by: portmgr (bapt@, blanket) Modified: head/textproc/p5-File-Inplace/Makefile (contents, props changed) head/textproc/p5-HTML-HTMLDoc/Makefile (contents, props changed) head/textproc/p5-Lingua-EN-Number-IsOrdinal/Makefile (contents, props changed) head/textproc/p5-PDF-Writer/Makefile (contents, props changed) head/textproc/p5-Regexp-DefaultFlags/Makefile (contents, props changed) head/textproc/p5-String-CamelCase/Makefile (contents, props changed) head/textproc/p5-String-RewritePrefix/Makefile head/textproc/p5-Text-CSV-Hashify/Makefile head/textproc/p5-Text-Emoticon-MSN/Makefile (contents, props changed) head/textproc/p5-Text-Sass/Makefile (contents, props changed) head/textproc/p5-Text-Table/Makefile head/textproc/p5-Tiffany/Makefile (contents, props changed) head/textproc/p5-Vroom/Makefile (contents, props changed) head/textproc/p5-XML-DOM-XPath/Makefile (contents, props changed) head/textproc/p5-XML-Parser/Makefile (contents, props changed) head/textproc/p5-XML-TreeBuilder/Makefile (contents, props changed) head/textproc/p5-YAML-LibYAML/Makefile (contents, props changed) head/textproc/p5-YAML-Tiny/Makefile (contents, props changed) head/textproc/txt2html/Makefile (contents, props changed) Modified: head/textproc/p5-File-Inplace/Makefile ============================================================================== --- head/textproc/p5-File-Inplace/Makefile Tue Sep 10 16:26:41 2013 (r326917) +++ head/textproc/p5-File-Inplace/Makefile Tue Sep 10 16:48:41 2013 (r326918) @@ -1,9 +1,5 @@ -# New ports collection makefile for: File-Inplace -# Date created: 2010-12-08 -# Whom: Greg Larkin -# +# Created by: Greg Larkin # $FreeBSD$ -# PORTNAME= File-Inplace PORTVERSION= 0.20 @@ -14,7 +10,8 @@ PKGNAMEPREFIX= p5- MAINTAINER= glarkin@FreeBSD.org COMMENT= Perl module for in-place editing of files -PERL_CONFIGURE= yes +USES= perl5 +USE_PERL5= configure MAN3= File::Inplace.3 Modified: head/textproc/p5-HTML-HTMLDoc/Makefile ============================================================================== --- head/textproc/p5-HTML-HTMLDoc/Makefile Tue Sep 10 16:26:41 2013 (r326917) +++ head/textproc/p5-HTML-HTMLDoc/Makefile Tue Sep 10 16:48:41 2013 (r326918) @@ -1,9 +1,5 @@ -# New ports collection makefile for: p5-HTML-HTMLDoc -# Date created: 13 January 2010 -# Whom: Konstantin Menshikov -# +# Created by: Konstantin Menshikov # $FreeBSD$ -# PORTNAME= HTML-HTMLDoc PORTVERSION= 0.10 @@ -19,7 +15,8 @@ COMMENT= Perl interface to the htmldoc p BUILD_DEPENDS= htmldoc>0:${PORTSDIR}/textproc/htmldoc RUN_DEPENDS:= ${BUILD_DEPENDS} -PERL_CONFIGURE= YES +USES= perl5 +USE_PERL5= configure MAN3= HTML::HTMLDoc.3 HTML::HTMLDoc::PDF.3 Modified: head/textproc/p5-Lingua-EN-Number-IsOrdinal/Makefile ============================================================================== --- head/textproc/p5-Lingua-EN-Number-IsOrdinal/Makefile Tue Sep 10 16:26:41 2013 (r326917) +++ head/textproc/p5-Lingua-EN-Number-IsOrdinal/Makefile Tue Sep 10 16:48:41 2013 (r326918) @@ -16,7 +16,8 @@ TEST_DEPENDS= \ p5-Test-Fatal>0:${PORTSDIR}/devel/p5-Test-Fatal \ p5-Try-Tiny:${PORTSDIR}/lang/p5-Try-Tiny -PERL_CONFIGURE= yes +USES= perl5 +USE_PERL5= configure MAN3= Lingua::EN::Number::IsOrdinal.3 Modified: head/textproc/p5-PDF-Writer/Makefile ============================================================================== --- head/textproc/p5-PDF-Writer/Makefile Tue Sep 10 16:26:41 2013 (r326917) +++ head/textproc/p5-PDF-Writer/Makefile Tue Sep 10 16:48:41 2013 (r326918) @@ -1,9 +1,5 @@ -# New ports collection makefile for: p5-PDF-Writer -# Date created: 2006-07-11 -# Whom: Gea-Suan Lin -# +# Created by: Gea-Suan Lin # $FreeBSD$ -# PORTNAME= PDF-Writer PORTVERSION= 0.06 @@ -14,7 +10,8 @@ PKGNAMEPREFIX= p5- MAINTAINER= gslin@gslin.org COMMENT= PDF writer abstraction layer -PERL_MODBUILD= yes +USES= perl5 +USE_PERL5= modbuild MAN3= PDF::Writer.3 PDF::Writer::pdfapi2.3 PDF::Writer::pdflib.3 Modified: head/textproc/p5-Regexp-DefaultFlags/Makefile ============================================================================== --- head/textproc/p5-Regexp-DefaultFlags/Makefile Tue Sep 10 16:26:41 2013 (r326917) +++ head/textproc/p5-Regexp-DefaultFlags/Makefile Tue Sep 10 16:48:41 2013 (r326918) @@ -1,9 +1,5 @@ -# New ports collection makefile for: p5-Regexp-DefaultFlags -# Date created: 2006-09-18 -# Whom: Gea-Suan Lin -# +# Created by: Gea-Suan Lin # $FreeBSD$ -# PORTNAME= Regexp-DefaultFlags PORTVERSION= 0.01 @@ -14,7 +10,8 @@ PKGNAMEPREFIX= p5- MAINTAINER= gslin@gslin.org COMMENT= Set default flags on regular expressions -PERL_CONFIGURE= yes +USES= perl5 +USE_PERL5= configure MAN3= Regexp::DefaultFlags.3 Modified: head/textproc/p5-String-CamelCase/Makefile ============================================================================== --- head/textproc/p5-String-CamelCase/Makefile Tue Sep 10 16:26:41 2013 (r326917) +++ head/textproc/p5-String-CamelCase/Makefile Tue Sep 10 16:48:41 2013 (r326918) @@ -1,9 +1,5 @@ -# New ports collection makefile for: p5-String-CamelCase -# Date created: 2007-10-30 -# Whom: TAKAHASHI Kaoru -# +# Created by: TAKAHASHI Kaoru # $FreeBSD$ -# PORTNAME= String-CamelCase PORTVERSION= 0.02 @@ -15,7 +11,8 @@ PKGNAMEPREFIX= p5- MAINTAINER= kaoru@kaisei.org COMMENT= Perl module for camelcase, de-camelcase -PERL_CONFIGURE= yes +USES= perl5 +USE_PERL5= configure MAN3= String::CamelCase.3 Modified: head/textproc/p5-String-RewritePrefix/Makefile ============================================================================== --- head/textproc/p5-String-RewritePrefix/Makefile Tue Sep 10 16:26:41 2013 (r326917) +++ head/textproc/p5-String-RewritePrefix/Makefile Tue Sep 10 16:48:41 2013 (r326918) @@ -1,9 +1,5 @@ -# New ports collection makefile for: textproc/p5-String-RewritePrefix -# Date created: 25 July 2009 -# Whom: Bill Brinzer -# +# Created by: Bill Brinzer # $FreeBSD$ -# PORTNAME= String-RewritePrefix PORTVERSION= 0.006 @@ -17,7 +13,8 @@ COMMENT= Rewrite strings based on a set TEST_DEPENDS= p5-Sub-Exporter>0:${PORTSDIR}/devel/p5-Sub-Exporter -PERL_CONFIGURE= yes +USES= perl5 +USE_PERL5= configure MAN3= String::RewritePrefix.3 Modified: head/textproc/p5-Text-CSV-Hashify/Makefile ============================================================================== --- head/textproc/p5-Text-CSV-Hashify/Makefile Tue Sep 10 16:26:41 2013 (r326917) +++ head/textproc/p5-Text-CSV-Hashify/Makefile Tue Sep 10 16:48:41 2013 (r326918) @@ -14,7 +14,8 @@ COMMENT= Composition and decomposition o BUILD_DEPENDS= p5-Text-CSV>=0:${PORTSDIR}/textproc/p5-Text-CSV RUN_DEPENDS:= ${BUILD_DEPENDS} -PERL_CONFIGURE= yes +USES= perl5 +USE_PERL5= configure MAN3= Text::CSV::Hashify.3 Modified: head/textproc/p5-Text-Emoticon-MSN/Makefile ============================================================================== --- head/textproc/p5-Text-Emoticon-MSN/Makefile Tue Sep 10 16:26:41 2013 (r326917) +++ head/textproc/p5-Text-Emoticon-MSN/Makefile Tue Sep 10 16:48:41 2013 (r326918) @@ -1,9 +1,5 @@ -# New ports collection makefile for: textproc/p5-Text-Emoticon-MSN -# Date created: 26 December 2009 -# Whom: Alex Deiter -# +# Created by: Alex Deiter # $FreeBSD$ -# PORTNAME= Text-Emoticon-MSN PORTVERSION= 0.04 @@ -20,7 +16,8 @@ EXPIRATION_DATE=2013-10-31 BUILD_DEPENDS= p5-Text-Emoticon>=0.02:${PORTSDIR}/textproc/p5-Text-Emoticon RUN_DEPENDS:= ${BUILD_DEPENDS} -PERL_CONFIGURE= yes +USES= perl5 +USE_PERL5= configure MAN3= Text::Emoticon::MSN.3 Modified: head/textproc/p5-Text-Sass/Makefile ============================================================================== --- head/textproc/p5-Text-Sass/Makefile Tue Sep 10 16:26:41 2013 (r326917) +++ head/textproc/p5-Text-Sass/Makefile Tue Sep 10 16:48:41 2013 (r326918) @@ -16,7 +16,8 @@ RUN_DEPENDS= \ BUILD_DEPENDS:= ${RUN_DEPENDS} TEST_DEPENDS= p5-Try-Tiny>0:${PORTSDIR}/lang/p5-Try-Tiny -PERL_MODBUILD= yes +USES= perl5 +USE_PERL5= modbuild MAN3= Text::Sass.3 \ Text::Sass::Expr.3 \ Modified: head/textproc/p5-Text-Table/Makefile ============================================================================== --- head/textproc/p5-Text-Table/Makefile Tue Sep 10 16:26:41 2013 (r326917) +++ head/textproc/p5-Text-Table/Makefile Tue Sep 10 16:48:41 2013 (r326918) @@ -13,7 +13,8 @@ COMMENT= Organize Data in Tables BUILD_DEPENDS= p5-Text-Aligner>=0.05:${PORTSDIR}/textproc/p5-Text-Aligner RUN_DEPENDS= p5-Text-Aligner>=0.05:${PORTSDIR}/textproc/p5-Text-Aligner -PERL_CONFIGURE= yes +USES= perl5 +USE_PERL5= configure MAN3= Text::Table.3 Modified: head/textproc/p5-Tiffany/Makefile ============================================================================== --- head/textproc/p5-Tiffany/Makefile Tue Sep 10 16:26:41 2013 (r326917) +++ head/textproc/p5-Tiffany/Makefile Tue Sep 10 16:48:41 2013 (r326918) @@ -23,7 +23,8 @@ TEST_DEPENDS= \ p5-Text-ClearSilver>0:${PORTSDIR}/textproc/p5-Text-ClearSilver \ p5-HTML-Template-Pro>0:${PORTSDIR}/www/p5-HTML-Template-Pro -PERL_MODBUILD= yes +USES= perl5 +USE_PERL5= modbuild MAN3= Tiffany.3 \ Tiffany::HTML::Template.3 \ Modified: head/textproc/p5-Vroom/Makefile ============================================================================== --- head/textproc/p5-Vroom/Makefile Tue Sep 10 16:26:41 2013 (r326917) +++ head/textproc/p5-Vroom/Makefile Tue Sep 10 16:48:41 2013 (r326918) @@ -1,9 +1,5 @@ -# New ports collection makefile for: p5-Vroom -# Date created: 2010-04-24 -# Whom: Li-Wen Hsu -# +# Created by: Li-Wen Hsu # $FreeBSD$ -# PORTNAME= Vroom PORTVERSION= 0.27 @@ -22,7 +18,8 @@ BUILD_DEPENDS= p5-File-HomeDir>=0:${PORT p5-YAML-LibYAML>=0:${PORTSDIR}/textproc/p5-YAML-LibYAML RUN_DEPENDS:= ${BUILD_DEPENDS} -PERL_CONFIGURE= yes +USES= perl5 +USE_PERL5= configure MAN3= Vroom.3 Vroom::Vroom.3 Modified: head/textproc/p5-XML-DOM-XPath/Makefile ============================================================================== --- head/textproc/p5-XML-DOM-XPath/Makefile Tue Sep 10 16:26:41 2013 (r326917) +++ head/textproc/p5-XML-DOM-XPath/Makefile Tue Sep 10 16:48:41 2013 (r326918) @@ -1,9 +1,5 @@ -# New ports collection makefile for: textproc/p5-XML-DOM-XPath -# Date created: 8 September 2005 -# Whom: Mauricio Herrera Cuadra -# +# Created by: Mauricio Herrera Cuadra # $FreeBSD$ -# PORTNAME= XML-DOM-XPath PORTVERSION= 0.14 @@ -17,7 +13,8 @@ COMMENT= Adds XPath support to XML::DOM, RUN_DEPENDS= p5-XML-DOM>=0:${PORTSDIR}/textproc/p5-XML-DOM \ p5-XML-XPathEngine>=0:${PORTSDIR}/textproc/p5-XML-XPathEngine -PERL_CONFIGURE= yes +USES= perl5 +USE_PERL5= configure MAN3= XML::DOM::XPath.3 Modified: head/textproc/p5-XML-Parser/Makefile ============================================================================== --- head/textproc/p5-XML-Parser/Makefile Tue Sep 10 16:26:41 2013 (r326917) +++ head/textproc/p5-XML-Parser/Makefile Tue Sep 10 16:48:41 2013 (r326918) @@ -12,7 +12,8 @@ COMMENT= Perl extension interface to Jam LIB_DEPENDS= expat:${PORTSDIR}/textproc/expat2 -PERL_CONFIGURE= yes +USES= perl5 +USE_PERL5= configure CONFIGURE_ARGS= EXPATLIBPATH=${LOCALBASE}/lib EXPATINCPATH=${LOCALBASE}/include MAN3= XML::Parser.3 XML::Parser::Expat.3 \ Modified: head/textproc/p5-XML-TreeBuilder/Makefile ============================================================================== --- head/textproc/p5-XML-TreeBuilder/Makefile Tue Sep 10 16:26:41 2013 (r326917) +++ head/textproc/p5-XML-TreeBuilder/Makefile Tue Sep 10 16:48:41 2013 (r326918) @@ -22,7 +22,8 @@ TEST_DEPENDS= p5-Devel-Cover>0:${PORTSDI p5-Test-Perl-Critic>0:${PORTSDIR}/textproc/p5-Test-Perl-Critic \ p5-Test-Pod-Coverage>0:${PORTSDIR}/devel/p5-Test-Pod-Coverage -PERL_MODBUILD= yes +USES= perl5 +USE_PERL5= modbuild MAN3= XML::TreeBuilder.3 XML::Element.3 Modified: head/textproc/p5-YAML-LibYAML/Makefile ============================================================================== --- head/textproc/p5-YAML-LibYAML/Makefile Tue Sep 10 16:26:41 2013 (r326917) +++ head/textproc/p5-YAML-LibYAML/Makefile Tue Sep 10 16:48:41 2013 (r326918) @@ -16,7 +16,8 @@ LICENSE_COMB= dual BUILD_DEPENDS= p5-Filter>0:${PORTSDIR}/devel/p5-Filter RUN_DEPENDS:= ${BUILD_DEPENDS} -PERL_CONFIGURE= yes +USES= perl5 +USE_PERL5= configure MAN3= YAML::XS::LibYAML.3 \ YAML::XS.3 Modified: head/textproc/p5-YAML-Tiny/Makefile ============================================================================== --- head/textproc/p5-YAML-Tiny/Makefile Tue Sep 10 16:26:41 2013 (r326917) +++ head/textproc/p5-YAML-Tiny/Makefile Tue Sep 10 16:48:41 2013 (r326918) @@ -1,9 +1,5 @@ -# New ports collection makefile for: p5-YAML-Tiny -# Date created: 2006-07-17 -# Whom: Yuan-Chung Hsiao -# +# Created by: Yuan-Chung Hsiao # $FreeBSD$ -# PORTNAME= YAML-Tiny PORTVERSION= 1.51 @@ -16,7 +12,8 @@ COMMENT= Read/Write YAML files with as l TEST_DEPENDS= p5-YAML>=0:${PORTSDIR}/textproc/p5-YAML -PERL_CONFIGURE= yes +USES= perl5 +USE_PERL5= configure MAN3= YAML::Tiny.3 Modified: head/textproc/txt2html/Makefile ============================================================================== --- head/textproc/txt2html/Makefile Tue Sep 10 16:26:41 2013 (r326917) +++ head/textproc/txt2html/Makefile Tue Sep 10 16:48:41 2013 (r326918) @@ -1,9 +1,5 @@ -# New ports collection makefile for: txt2html -# Date created: 29 Jun 1998 -# Whom: Don Croyle -# +# Created by: Don Croyle # $FreeBSD$ -# PORTNAME= txt2html PORTVERSION= 2.51 @@ -17,7 +13,8 @@ BUILD_DEPENDS= p5-Getopt-ArgvFile>=0:${P p5-YAML-Syck>=0:${PORTSDIR}/textproc/p5-YAML-Syck RUN_DEPENDS:= ${BUILD_DEPENDS} -PERL_MODBUILD= yes +USES= perl5 +USE_PERL5= modbuild MAN1= txt2html.1 MAN3= HTML::TextToHTML.3