Skip site navigation (1)Skip section navigation (2)
Date:      Tue, 10 Sep 2013 07:12:35 +0000 (UTC)
From:      Andrej Zverev <az@FreeBSD.org>
To:        ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org
Subject:   svn commit: r326870 - in head: cad/p5-GDS2 converters/convmv converters/iconv-extra converters/osm2mp converters/p5-Convert-UU converters/p5-JSON1 converters/p5-MIME-Base32 converters/p5-Sereal-Dec...
Message-ID:  <201309100712.r8A7CZu0091387@svn.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: az
Date: Tue Sep 10 07:12:35 2013
New Revision: 326870
URL: http://svnweb.freebsd.org/changeset/ports/326870

Log:
  - convert to the new perl5 framework
  - trim Makefile header
  
  Approved by:	portmgr (bapt@, blanket)

Modified:
  head/cad/p5-GDS2/Makefile   (contents, props changed)
  head/converters/convmv/Makefile   (contents, props changed)
  head/converters/iconv-extra/Makefile   (contents, props changed)
  head/converters/osm2mp/Makefile   (contents, props changed)
  head/converters/p5-Convert-UU/Makefile   (contents, props changed)
  head/converters/p5-JSON1/Makefile   (contents, props changed)
  head/converters/p5-MIME-Base32/Makefile
  head/converters/p5-Sereal-Decoder/Makefile   (contents, props changed)
  head/converters/p5-String-SetUTF8/Makefile   (contents, props changed)
  head/converters/p5-URI-UTF8-Punycode/Makefile
  head/converters/p5-bsdconv/Makefile   (contents, props changed)
  head/devel/autoconf/Makefile   (contents, props changed)
  head/devel/mingw32-openssl/Makefile   (contents, props changed)
  head/devel/p5-Class-Std/Makefile   (contents, props changed)
  head/devel/p5-Data-Swap/Makefile   (contents, props changed)
  head/devel/p5-POEx-Role-Streaming/Makefile   (contents, props changed)
  head/devel/p5-Qudo/Makefile   (contents, props changed)
  head/devel/p5-Template-Provider-Encode/Makefile   (contents, props changed)
  head/devel/p5-uni-perl/Makefile

Modified: head/cad/p5-GDS2/Makefile
==============================================================================
--- head/cad/p5-GDS2/Makefile	Tue Sep 10 06:53:15 2013	(r326869)
+++ head/cad/p5-GDS2/Makefile	Tue Sep 10 07:12:35 2013	(r326870)
@@ -1,9 +1,5 @@
-# New ports collection makefile for:	p5-GDS2
-# Date created:				Sun, Apr 29 2007
-# Whom:					Hiroki Sato <hrs@FreeBSD.org>
-#
+# Created by: Hiroki Sato <hrs@FreeBSD.org>
 # $FreeBSD$
-#
 
 PORTNAME=	GDS2
 PORTVERSION=	3.00
@@ -15,7 +11,8 @@ DISTNAME=	${PORTNAME}-${PORTVERSION:S,.a
 MAINTAINER=	hrs@FreeBSD.org
 COMMENT=	GDS2 - GDS2 stream module
 
-PERL_MODBUILD=	yes
+USES=		perl5
+USE_PERL5=	modbuild
 WRKSRC=		${WRKDIR}/${PORTNAME}-${PORTVERSION:S,.a$,,}
 PLIST_FILES=	${SITE_PERL_REL}/GDS2.pm \
 		${PROGRAMS:S,^,bin/,}

Modified: head/converters/convmv/Makefile
==============================================================================
--- head/converters/convmv/Makefile	Tue Sep 10 06:53:15 2013	(r326869)
+++ head/converters/convmv/Makefile	Tue Sep 10 07:12:35 2013	(r326870)
@@ -1,9 +1,5 @@
-# New ports collection makefile for:	convmv
-# Date created:		27 October 2004
-# Whom:			Kuang-che Wu <kcwu@csie.org>
-#
+# Created by: Kuang-che Wu <kcwu@csie.org>
 # $FreeBSD$
-#
 
 PORTNAME=	convmv
 PORTVERSION=	1.15
@@ -17,7 +13,7 @@ COMMENT=	Convert filenames from one enco
 LICENSE=	GPLv2 GPLv3
 LICENSE_COMB=	dual
 
-USE_PERL5=	yes
+USES=		perl5
 PLIST_FILES=	bin/convmv
 
 MAN1=		convmv.1

Modified: head/converters/iconv-extra/Makefile
==============================================================================
--- head/converters/iconv-extra/Makefile	Tue Sep 10 06:53:15 2013	(r326869)
+++ head/converters/iconv-extra/Makefile	Tue Sep 10 07:12:35 2013	(r326870)
@@ -1,9 +1,5 @@
-# New ports collection makefile for:	iconv
-# Date created:				10 September 2000
-# Whom:			Konstantin Chuguev <Konstantin.Chuguev@dante.org.uk>
-#
+# Created by: Konstantin Chuguev <Konstantin.Chuguev@dante.org.uk>
 # $FreeBSD$
-#
 
 PORTNAME=	iconv-extra
 PORTVERSION=	2.0
@@ -16,6 +12,6 @@ COMMENT=	Additional charsets for the ico
 
 LIB_DEPENDS=	biconv.2:${PORTSDIR}/converters/iconv
 
-USE_PERL5=	yes
+USES=		perl5
 
 .include <bsd.port.mk>

Modified: head/converters/osm2mp/Makefile
==============================================================================
--- head/converters/osm2mp/Makefile	Tue Sep 10 06:53:15 2013	(r326869)
+++ head/converters/osm2mp/Makefile	Tue Sep 10 07:12:35 2013	(r326870)
@@ -21,7 +21,8 @@ RUN_DEPENDS=	p5-YAML>=0:${PORTSDIR}/text
 LICENSE=	GPLv2
 
 USE_BZIP2=	yes
-USE_PERL5_RUN=	yes
+USES=		perl5
+USE_PERL5=	run
 NO_BUILD=	yes
 
 SUB_FILES=	pkg-message

Modified: head/converters/p5-Convert-UU/Makefile
==============================================================================
--- head/converters/p5-Convert-UU/Makefile	Tue Sep 10 06:53:15 2013	(r326869)
+++ head/converters/p5-Convert-UU/Makefile	Tue Sep 10 07:12:35 2013	(r326870)
@@ -1,9 +1,5 @@
-# New ports collection makefile for:	p5-Convert-UU
-# Date created:				October 20th 1996
-# Whom:	      				James FitzGibbon <jfitz@FreeBSD.org>
-#
+# Created by: James FitzGibbon <jfitz@FreeBSD.org>
 # $FreeBSD$
-#
 
 PORTNAME=	Convert-UU
 PORTVERSION=	0.52.01
@@ -15,7 +11,8 @@ DISTNAME=	${PORTNAME}-${PORTVERSION:C/\.
 MAINTAINER=	demon@FreeBSD.org
 COMMENT=	Perl5 module for uuencode and uudecode
 
-PERL_CONFIGURE=	YES
+USES=		perl5
+USE_PERL5=	configure
 
 MAN1=		puuencode.1 puudecode.1
 MAN3=		Convert::UU.3

Modified: head/converters/p5-JSON1/Makefile
==============================================================================
--- head/converters/p5-JSON1/Makefile	Tue Sep 10 06:53:15 2013	(r326869)
+++ head/converters/p5-JSON1/Makefile	Tue Sep 10 07:12:35 2013	(r326870)
@@ -1,9 +1,4 @@
-# New ports collection makefile for:	JSON
-# Date created:		19 Aug 2005
-# Whom:			Jun Kuriyama <kuriyama@FreeBSD.org>
-#
 # $FreeBSD$
-#
 
 PORTNAME=	JSON
 PORTVERSION=	1.15
@@ -18,7 +13,8 @@ RUN_DEPENDS=	p5-libwww>=0:${PORTSDIR}/ww
 BUILD_DEPENDS:=	${RUN_DEPENDS}
 
 CONFLICTS=	p5-JSON-2.*
-PERL_CONFIGURE=	yes
+USES=		perl5
+USE_PERL5=	configure
 NO_LATEST_LINK=	yes
 MAN3=		Apache::JSONRPC.3 JSON.3 JSON::Converter.3 \
 		JSON::PP.3 JSON::PP5005.3 JSON::PP56.3 JSON::Parser.3 \

Modified: head/converters/p5-MIME-Base32/Makefile
==============================================================================
--- head/converters/p5-MIME-Base32/Makefile	Tue Sep 10 06:53:15 2013	(r326869)
+++ head/converters/p5-MIME-Base32/Makefile	Tue Sep 10 07:12:35 2013	(r326870)
@@ -1,4 +1,4 @@
-# Created by: nork@freebsd.org
+# Created by: nork@FreeBSD.org
 # $FreeBSD$
 
 PORTNAME=	MIME-Base32
@@ -14,7 +14,8 @@ LICENSE=	ART10 GPLv1
 LICENSE_COMB=	dual
 
 WRKSRC=		${WRKDIR}/${PORTNAME}-1.02
-PERL_CONFIGURE=	YES
+USES=		perl5
+USE_PERL5=	configure
 
 MAN3=		MIME::Base32.3
 

Modified: head/converters/p5-Sereal-Decoder/Makefile
==============================================================================
--- head/converters/p5-Sereal-Decoder/Makefile	Tue Sep 10 06:53:15 2013	(r326869)
+++ head/converters/p5-Sereal-Decoder/Makefile	Tue Sep 10 07:12:35 2013	(r326870)
@@ -13,7 +13,8 @@ COMMENT=	Perl extension for fast, compac
 TEST_DEPENDS=	\
 	p5-Test-LongString>0:${PORTSDIR}/devel/p5-Test-LongString
 
-PERL_CONFIGURE=	yes
+USES=		perl5
+USE_PERL5=	configure
 
 MAN3=	Sereal::Decoder.3
 

Modified: head/converters/p5-String-SetUTF8/Makefile
==============================================================================
--- head/converters/p5-String-SetUTF8/Makefile	Tue Sep 10 06:53:15 2013	(r326869)
+++ head/converters/p5-String-SetUTF8/Makefile	Tue Sep 10 07:12:35 2013	(r326870)
@@ -1,9 +1,5 @@
-# New ports collection makefile for:	String::SetUTF8
-# Date created:				25 May 2009
-# Whom:					Andrei V. Shetuhin <reki@reki.ru>
-#
+# Created by: Andrei V. Shetuhin <reki@reki.ru>
 # $FreeBSD$
-#
 
 PORTNAME=	String-SetUTF8
 PORTVERSION=	1.00
@@ -14,7 +10,8 @@ PKGNAMEPREFIX=	p5-
 MAINTAINER=	reki@reki.ru
 COMMENT=	Perl module to manipulate internal UTF-8 flag on strings
 
-PERL_CONFIGURE=	yes
+USES=		perl5
+USE_PERL5=	configure
 
 MAN3=		String::SetUTF8.3
 

Modified: head/converters/p5-URI-UTF8-Punycode/Makefile
==============================================================================
--- head/converters/p5-URI-UTF8-Punycode/Makefile	Tue Sep 10 06:53:15 2013	(r326869)
+++ head/converters/p5-URI-UTF8-Punycode/Makefile	Tue Sep 10 07:12:35 2013	(r326870)
@@ -12,7 +12,8 @@ COMMENT=	Punycode conversion of UTF-8 st
 
 LICENSE=	GPLv3
 
-PERL_CONFIGURE=	yes
+USES=		perl5
+USE_PERL5=	configure
 
 MAN3=		URI::UTF8::Punycode.3
 

Modified: head/converters/p5-bsdconv/Makefile
==============================================================================
--- head/converters/p5-bsdconv/Makefile	Tue Sep 10 06:53:15 2013	(r326869)
+++ head/converters/p5-bsdconv/Makefile	Tue Sep 10 07:12:35 2013	(r326870)
@@ -19,7 +19,8 @@ GH_ACCOUNT=	buganini
 GH_COMMIT=	092d398
 GH_PROJECT=	perl-${PORTNAME}
 
-PERL_CONFIGURE=	yes
+USES=		perl5
+USE_PERL5=	configure
 
 MAN3=		bsdconv.3
 

Modified: head/devel/autoconf/Makefile
==============================================================================
--- head/devel/autoconf/Makefile	Tue Sep 10 06:53:15 2013	(r326869)
+++ head/devel/autoconf/Makefile	Tue Sep 10 07:12:35 2013	(r326870)
@@ -1,9 +1,5 @@
-# New ports collection makefile for:	autoconf
-# Date created:		7th December 2006
-# Whom:			ade@FreeBSD.org
-#
+# Created by: ade@FreeBSD.org
 # $FreeBSD$
-#
 
 PORTNAME=	autoconf
 PORTVERSION=	2.69
@@ -24,7 +20,7 @@ BUILD_VERSION=	2.69
 PLIST_SUB=	BUILD_VERSION=${BUILD_VERSION}
 USE_XZ=		yes
 USE_GMAKE=	yes
-USE_PERL5=	yes
+USES=		perl5
 INFO=		autoconf
 
 GNU_CONFIGURE=	yes

Modified: head/devel/mingw32-openssl/Makefile
==============================================================================
--- head/devel/mingw32-openssl/Makefile	Tue Sep 10 06:53:15 2013	(r326869)
+++ head/devel/mingw32-openssl/Makefile	Tue Sep 10 07:12:35 2013	(r326870)
@@ -1,9 +1,5 @@
-# New ports collection makefile for:	mingw32-openssl
-# Date created:		5 December 2011
-# Whom:			Akinori MUSHA aka knu <knu@idaemons.org>
-#
+# Created by: Akinori MUSHA aka knu <knu@idaemons.org>
 # $FreeBSD$
-#
 
 PORTNAME=	openssl
 PORTVERSION=	1.0.0k
@@ -23,7 +19,8 @@ BUILD_DEPENDS=	makedepend:${PORTSDIR}/de
 		${LOCALBASE}/mingw32/include/stdlib.h:${PORTSDIR}/devel/${PKGNAMEPREFIX}bin-msvcrt \
 		${LOCALBASE}/mingw32/lib/libz.a:${PORTSDIR}/devel/mingw32-zlib
 
-USE_PERL5_BUILD=	yes
+USES=		perl5
+USE_PERL5=	build
 MAKE_JOBS_UNSAFE=	yes
 CONFIGURE_PREFIX=	${PREFIX}/mingw32
 OPENSSLDIR=		${CONFIGURE_PREFIX}/openssl

Modified: head/devel/p5-Class-Std/Makefile
==============================================================================
--- head/devel/p5-Class-Std/Makefile	Tue Sep 10 06:53:15 2013	(r326869)
+++ head/devel/p5-Class-Std/Makefile	Tue Sep 10 07:12:35 2013	(r326870)
@@ -1,9 +1,5 @@
-# New ports collection makefile for:	p5-Class-Std
-# Date created:		30 May 2006
-# Whom:			Andrew Pantyukhin <infofarmer@FreeBSD.org>
-#
+# Created by: Andrew Pantyukhin <infofarmer@FreeBSD.org>
 # $FreeBSD$
-#
 
 PORTNAME=	Class-Std
 DISTVERSION=	0.011
@@ -17,7 +13,8 @@ COMMENT=	Support for creating standard "
 BUILD_DEPENDS=	p5-version>=0:${PORTSDIR}/devel/p5-version
 RUN_DEPENDS:=	${BUILD_DEPENDS}
 
-PERL_CONFIGURE=	YES
+USES=		perl5
+USE_PERL5=	configure
 
 MAN3=		Class::Std.3
 

Modified: head/devel/p5-Data-Swap/Makefile
==============================================================================
--- head/devel/p5-Data-Swap/Makefile	Tue Sep 10 06:53:15 2013	(r326869)
+++ head/devel/p5-Data-Swap/Makefile	Tue Sep 10 07:12:35 2013	(r326870)
@@ -1,9 +1,5 @@
-# New ports collection makefile for:	Data::Swap
-# Date created:				10 December 2005
-# Whom:					Parv <parv@pair.org>
-#
+# Created by: Parv <parv@pair.org>
 # $FreeBSD$
-#
 
 PORTNAME=	Data-Swap
 PORTVERSION=	0.08
@@ -14,7 +10,8 @@ PKGNAMEPREFIX=	p5-
 MAINTAINER=	parv@pair.com
 COMMENT=	XS module to swap the contents and types of referenced variables
 
-PERL_CONFIGURE=	yes
+USES=		perl5
+USE_PERL5=	configure
 
 MAN3=	Data::Swap.3
 

Modified: head/devel/p5-POEx-Role-Streaming/Makefile
==============================================================================
--- head/devel/p5-POEx-Role-Streaming/Makefile	Tue Sep 10 06:53:15 2013	(r326869)
+++ head/devel/p5-POEx-Role-Streaming/Makefile	Tue Sep 10 07:12:35 2013	(r326870)
@@ -1,9 +1,4 @@
-# New ports collection makefile for:	POEx::Role::Streaming
-# Date created:		10 Oct 2010
-# Whom:			Jun Kuriyama <kuriyama@FreeBSD.org>
-#
 # $FreeBSD$
-#
 
 PORTNAME=	POEx-Role-Streaming
 PORTVERSION=	1.102610
@@ -24,7 +19,8 @@ RUN_DEPENDS=	\
 	p5-aliased>0:${PORTSDIR}/devel/p5-aliased
 BUILD_DEPENDS:=	${RUN_DEPENDS}
 
-PERL_CONFIGURE=	yes
+USES=		perl5
+USE_PERL5=	configure
 
 MAN3=	POEx::Role::Streaming.3
 

Modified: head/devel/p5-Qudo/Makefile
==============================================================================
--- head/devel/p5-Qudo/Makefile	Tue Sep 10 06:53:15 2013	(r326869)
+++ head/devel/p5-Qudo/Makefile	Tue Sep 10 07:12:35 2013	(r326870)
@@ -1,9 +1,4 @@
-# New ports collection makefile for:	Qudo
-# Date created:		27 Jun 2012
-# Whom:			Jun Kuriyama <kuriyama@FreeBSD.org>
-#
 # $FreeBSD$
-#
 
 PORTNAME=	Qudo
 PORTVERSION=	0.0213
@@ -23,7 +18,8 @@ RUN_DEPENDS=	\
 	p5-YAML>0:${PORTSDIR}/textproc/p5-YAML
 BUILD_DEPENDS=	${RUN_DEPENDS}
 
-PERL_CONFIGURE=	yes
+USES=		perl5
+USE_PERL5=	configure
 
 MAN3=	Qudo.3 \
 	Qudo::Manager.3 \

Modified: head/devel/p5-Template-Provider-Encode/Makefile
==============================================================================
--- head/devel/p5-Template-Provider-Encode/Makefile	Tue Sep 10 06:53:15 2013	(r326869)
+++ head/devel/p5-Template-Provider-Encode/Makefile	Tue Sep 10 07:12:35 2013	(r326870)
@@ -1,9 +1,5 @@
-# New ports collection makefile for:	p5-Template-Provider-Encode
-# Date created:		2009-01-08
-# Whom:			Murilo Opsfelder <mopsfelder@gmail.com>
-#
+# Created by: Murilo Opsfelder <mopsfelder@gmail.com>
 # $FreeBSD$
-#
 
 PORTNAME=	Template-Provider-Encode
 PORTVERSION=	0.02
@@ -16,7 +12,8 @@ COMMENT=	Encode templates for Template T
 
 RUN_DEPENDS=	p5-Template-Toolkit>=0:${PORTSDIR}/www/p5-Template-Toolkit
 
-PERL_CONFIGURE=	yes
+USES=		perl5
+USE_PERL5=	configure
 
 MAN3=		Template::Provider::Encode.3 \
 		Template::Provider::Encode::Guess.3

Modified: head/devel/p5-uni-perl/Makefile
==============================================================================
--- head/devel/p5-uni-perl/Makefile	Tue Sep 10 06:53:15 2013	(r326869)
+++ head/devel/p5-uni-perl/Makefile	Tue Sep 10 07:12:35 2013	(r326870)
@@ -1,9 +1,5 @@
-# New ports collection makefile for:	p5-uni-perl
-# Date created:		2009-10-20
-# Whom:			Mons Anderson <mons@cpan.org>
-#
+# Created by: Mons Anderson <mons@cpan.org>
 # $FreeBSD$
-#
 
 PORTNAME=	uni-perl
 PORTVERSION=	0.91
@@ -20,6 +16,7 @@ RUN_DEPENDS=	p5-Encode>=2.37:${PORTSDIR}
 BUILD_DEPENDS:=	${RUN_DEPENDS}
 TEST_DEPENDS=	p5-Test-NoWarnings>=0:${PORTSDIR}/devel/p5-Test-NoWarnings
 
-PERL_CONFIGURE=	yes
+USES=		perl5
+USE_PERL5=	configure
 
 .include <bsd.port.mk>



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201309100712.r8A7CZu0091387>