Skip site navigation (1)Skip section navigation (2)
Date:      Thu, 12 Sep 2013 06:03:59 +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: r327033 - in head: astro/p5-GPS astro/p5-Weather-Underground astro/p5-ZConf-Weather astro/weatherspect comms/p5-Nexmo-SMS comms/p5-SMS-Send comms/p5-SMS-Send-TW-ShareSMS math/p5-Math-Ba...
Message-ID:  <201309120603.r8C63x43069324@svn.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: az
Date: Thu Sep 12 06:03:58 2013
New Revision: 327033
URL: http://svnweb.freebsd.org/changeset/ports/327033

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

Modified:
  head/astro/p5-GPS/Makefile   (contents, props changed)
  head/astro/p5-Weather-Underground/Makefile   (contents, props changed)
  head/astro/p5-ZConf-Weather/Makefile   (contents, props changed)
  head/astro/weatherspect/Makefile   (contents, props changed)
  head/comms/p5-Nexmo-SMS/Makefile   (contents, props changed)
  head/comms/p5-SMS-Send-TW-ShareSMS/Makefile   (contents, props changed)
  head/comms/p5-SMS-Send/Makefile   (contents, props changed)
  head/math/p5-Math-BaseCnv/Makefile   (contents, props changed)
  head/math/p5-Math-Geometry/Makefile   (contents, props changed)
  head/math/p5-Math-Vec/Makefile   (contents, props changed)
  head/math/p5-Math-VectorReal/Makefile   (contents, props changed)
  head/math/p5-NetCDF/Makefile   (contents, props changed)
  head/math/p5-Number-WithError/Makefile   (contents, props changed)
  head/math/p5-Set-IntSpan/Makefile   (contents, props changed)
  head/math/p5-Statistics-Lite/Makefile   (contents, props changed)
  head/x11-fonts/geminifonts/Makefile   (contents, props changed)
  head/x11-fonts/p5-type1inst/Makefile   (contents, props changed)

Modified: head/astro/p5-GPS/Makefile
==============================================================================
--- head/astro/p5-GPS/Makefile	Thu Sep 12 05:53:03 2013	(r327032)
+++ head/astro/p5-GPS/Makefile	Thu Sep 12 06:03:58 2013	(r327033)
@@ -14,7 +14,8 @@ COMMENT=	Perl interface to GPS receivers
 BUILD_DEPENDS=	p5-Device-SerialPort>=0.07:${PORTSDIR}/comms/p5-Device-SerialPort
 RUN_DEPENDS:=	${BUILD_DEPENDS}
 
-PERL_CONFIGURE=	yes
+USES=		perl5
+USE_PERL5=	configure
 
 MAN3=		GPS::Serial.3 \
 		GPS::NMEA.3 \

Modified: head/astro/p5-Weather-Underground/Makefile
==============================================================================
--- head/astro/p5-Weather-Underground/Makefile	Thu Sep 12 05:53:03 2013	(r327032)
+++ head/astro/p5-Weather-Underground/Makefile	Thu Sep 12 06:03:58 2013	(r327033)
@@ -1,9 +1,5 @@
-# New ports collection makefile for:	p5-Weather-Underground
-# Date created:		2006-05-16
-# Whom:			Simon Olofsson <simon@olofsson.de>
-#
+# Created by: Simon Olofsson <simon@olofsson.de>
 # $FreeBSD$
-#
 
 PORTNAME=	Weather-Underground
 PORTVERSION=	3.03
@@ -19,7 +15,8 @@ BUILD_DEPENDS=	p5-libwww>=0:${PORTSDIR}/
 		p5-HTML-Parser>=0:${PORTSDIR}/www/p5-HTML-Parser
 RUN_DEPENDS:=	${BUILD_DEPENDS}
 
-PERL_CONFIGURE=	yes
+USES=		perl5
+USE_PERL5=	configure
 
 MAN3=		Weather::Underground.3
 

Modified: head/astro/p5-ZConf-Weather/Makefile
==============================================================================
--- head/astro/p5-ZConf-Weather/Makefile	Thu Sep 12 05:53:03 2013	(r327032)
+++ head/astro/p5-ZConf-Weather/Makefile	Thu Sep 12 06:03:58 2013	(r327033)
@@ -1,9 +1,5 @@
-# New ports collection makefile for:	p5-ZConf-Weather
-# Date created:		2009-09-27
-# Whom:			Zane C, Bowers <vvelox@vvelox.net>
-#
+# Created by: Zane C, Bowers <vvelox@vvelox.net>
 # $FreeBSD$
-#
 
 PORTNAME=	ZConf-Weather
 PORTVERSION=	1.0.0
@@ -21,7 +17,8 @@ BUILD_DEPENDS=	p5-ZConf>=6.1.0:${PORTSDI
 		p5-Weather-Underground>=3.03:${PORTSDIR}/astro/p5-Weather-Underground
 RUN_DEPENDS:=	${BUILD_DEPENDS}
 
-PERL_CONFIGURE=	yes
+USES=		perl5
+USE_PERL5=	configure
 
 MAN3=		ZConf::Weather.3
 

Modified: head/astro/weatherspect/Makefile
==============================================================================
--- head/astro/weatherspect/Makefile	Thu Sep 12 05:53:03 2013	(r327032)
+++ head/astro/weatherspect/Makefile	Thu Sep 12 06:03:58 2013	(r327033)
@@ -1,9 +1,5 @@
-# New ports collection makefile for:	weatherspect
-# Date created:		2006-05-16
-# Whom:			Simon Olofsson <simon@olofsson.de>
-#
+# Created by: Simon Olofsson <simon@olofsson.de>
 # $FreeBSD$
-#
 
 PORTNAME=	weatherspect
 PORTVERSION=	1.9
@@ -24,7 +20,7 @@ RUN_DEPENDS=	p5-Term-Animation>=0:${PORT
 PORTSCOUT=	skipv:1.31	# Wrong versioning upstream
 
 NO_BUILD=	yes
-USE_PERL5=	yes
+USES=		perl5
 PLIST_FILES=	bin/weatherspect
 
 do-install:

Modified: head/comms/p5-Nexmo-SMS/Makefile
==============================================================================
--- head/comms/p5-Nexmo-SMS/Makefile	Thu Sep 12 05:53:03 2013	(r327032)
+++ head/comms/p5-Nexmo-SMS/Makefile	Thu Sep 12 06:03:58 2013	(r327033)
@@ -1,9 +1,5 @@
-# New ports collection makefile for:	p5-Nexmo-SMS
-# Date created:		2011-11-25
-# Whom:			Jui-Nan Lin <jnlin@csie.nctu.edu.tw>
-#
+# Created by: Jui-Nan Lin <jnlin@csie.nctu.edu.tw>
 # $FreeBSD$
-#
 
 PORTNAME=	Nexmo-SMS
 PORTVERSION=	0.06
@@ -23,7 +19,8 @@ RUN_DEPENDS:=	${BUILD_DEPENDS}
 TEST_DEPENDS=	p5-Test-Pod>=1.22:${PORTSDIR}/devel/p5-Test-Pod \
 		p5-Test-Pod-Coverage>=1.08:${PORTSDIR}/devel/p5-Test-Pod-Coverage
 
-PERL_CONFIGURE=	yes
+USES=		perl5
+USE_PERL5=	configure
 
 MAN3=		Nexmo::SMS.3 \
 		Nexmo::SMS::BinaryMessage.3 \

Modified: head/comms/p5-SMS-Send-TW-ShareSMS/Makefile
==============================================================================
--- head/comms/p5-SMS-Send-TW-ShareSMS/Makefile	Thu Sep 12 05:53:03 2013	(r327032)
+++ head/comms/p5-SMS-Send-TW-ShareSMS/Makefile	Thu Sep 12 06:03:58 2013	(r327033)
@@ -1,9 +1,5 @@
-# New ports collection makefile for:	p5-SMS-Send-TW-ShareSMS
-# Date created:		2007-10-06
-# Whom:			Tsung-Han Yeh <snowfly@yuntech.edu.tw>
-#
+# Created by: Tsung-Han Yeh <snowfly@yuntech.edu.tw>
 # $FreeBSD$
-#
 
 PORTNAME=	SMS-Send-TW-ShareSMS
 PORTVERSION=	0.02
@@ -19,7 +15,8 @@ BUILD_DEPENDS=	p5-SMS-Send>=0.03:${PORTS
 		p5-libwww>=2:${PORTSDIR}/www/p5-libwww
 RUN_DEPENDS:=	${BUILD_DEPENDS}
 
-PERL_CONFIGURE=	yes
+USES=		perl5
+USE_PERL5=	configure
 
 MAN3=		SMS::Send::TW::ShareSMS.3
 

Modified: head/comms/p5-SMS-Send/Makefile
==============================================================================
--- head/comms/p5-SMS-Send/Makefile	Thu Sep 12 05:53:03 2013	(r327032)
+++ head/comms/p5-SMS-Send/Makefile	Thu Sep 12 06:03:58 2013	(r327033)
@@ -1,9 +1,5 @@
-# New ports collection makefile for:	p5-SMS-Send
-# Date created:		2006-08-26
-# Whom:			Tsung-Han Yeh <snowfly@yuntech.edu.tw>
-#
+# Created by: Tsung-Han Yeh <snowfly@yuntech.edu.tw>
 # $FreeBSD$
-#
 
 PORTNAME=	SMS-Send
 PORTVERSION=	1.06
@@ -21,7 +17,8 @@ BUILD_DEPENDS=	p5-Class-Adapter>=1.05:${
 		p5-Params-Util>=1.00:${PORTSDIR}/devel/p5-Params-Util
 RUN_DEPENDS:=	${BUILD_DEPENDS}
 
-PERL_CONFIGURE=	yes
+USES=		perl5
+USE_PERL5=	configure
 
 MAN3=		SMS::Send.3 \
 		SMS::Send::AU::Test.3 \

Modified: head/math/p5-Math-BaseCnv/Makefile
==============================================================================
--- head/math/p5-Math-BaseCnv/Makefile	Thu Sep 12 05:53:03 2013	(r327032)
+++ head/math/p5-Math-BaseCnv/Makefile	Thu Sep 12 06:03:58 2013	(r327033)
@@ -1,9 +1,5 @@
-# New ports collection makefile for:	Math-BaseCnv
-# Date created:		3rd June, 2009
-# Whom:			Wen Heping <wenheping@gmail.com>
-#
+# Created by: Wen Heping <wenheping@gmail.com>
 # $FreeBSD$
-#
 
 PORTNAME=	Math-BaseCnv
 PORTVERSION=	1.4.75
@@ -20,7 +16,8 @@ BUILD_DEPENDS=	p5-Test-Pod>=0:${PORTSDIR
 		p5-Test-Pod-Coverage>=0:${PORTSDIR}/devel/p5-Test-Pod-Coverage
 RUN_DEPENDS=	p5-Memoize>=0:${PORTSDIR}/devel/p5-Memoize
 
-PERL_CONFIGURE=	yes
+USES=		perl5
+USE_PERL5=	configure
 
 MAN3=		Math::BaseCnv.3
 

Modified: head/math/p5-Math-Geometry/Makefile
==============================================================================
--- head/math/p5-Math-Geometry/Makefile	Thu Sep 12 05:53:03 2013	(r327032)
+++ head/math/p5-Math-Geometry/Makefile	Thu Sep 12 06:03:58 2013	(r327033)
@@ -1,9 +1,5 @@
-# New ports collection makefile for:	p5-Math-Geometry
-# Date created:		2006-08-19
-# Whom:			Gea-Suan Lin <gslin@gslin.org>
-#
+# Created by: Gea-Suan Lin <gslin@gslin.org>
 # $FreeBSD$
-#
 
 PORTNAME=	Math-Geometry
 PORTVERSION=	0.04
@@ -16,7 +12,8 @@ COMMENT=	Geometry related functions
 
 RUN_DEPENDS=	p5-Math-Matrix>=0:${PORTSDIR}/math/p5-Math-Matrix
 
-PERL_CONFIGURE=	yes
+USES=		perl5
+USE_PERL5=	configure
 
 MAN3=		Math::Geometry.3
 

Modified: head/math/p5-Math-Vec/Makefile
==============================================================================
--- head/math/p5-Math-Vec/Makefile	Thu Sep 12 05:53:03 2013	(r327032)
+++ head/math/p5-Math-Vec/Makefile	Thu Sep 12 06:03:58 2013	(r327033)
@@ -1,9 +1,4 @@
-# New ports collection makefile for:	Math::Vec
-# Date created:		6 May 2005
-# Whom:			Jun Kuriyama <kuriyama@FreeBSD.org>
-#
 # $FreeBSD$
-#
 
 PORTNAME=	Math-Vec
 PORTVERSION=	1.01
@@ -14,7 +9,8 @@ PKGNAMEPREFIX=	p5-
 MAINTAINER=	kuriyama@FreeBSD.org
 COMMENT=	Object-Oriented Vector Math Methods in Perl
 
-PERL_MODBUILD=	yes
+USES=		perl5
+USE_PERL5=	modbuild
 MAN3=		Math::Vec.3
 
 .include <bsd.port.mk>

Modified: head/math/p5-Math-VectorReal/Makefile
==============================================================================
--- head/math/p5-Math-VectorReal/Makefile	Thu Sep 12 05:53:03 2013	(r327032)
+++ head/math/p5-Math-VectorReal/Makefile	Thu Sep 12 06:03:58 2013	(r327033)
@@ -1,9 +1,5 @@
-# New ports collection makefile for:	Math-VectorReal
-# Date created:				11 May, 2009
-# Whom:					Wen Heping <wenheping@gmail.com>
-#
+# Created by: Wen Heping <wenheping@gmail.com>
 # $FreeBSD$
-#
 
 PORTNAME=	Math-VectorReal
 PORTVERSION=	1.02
@@ -14,7 +10,8 @@ PKGNAMEPREFIX=	p5-
 MAINTAINER=	wenheping@gmail.com
 COMMENT=	Perl Module to handle 3D Vector Mathematics
 
-PERL_CONFIGURE=	yes
+USES=		perl5
+USE_PERL5=	configure
 
 MAN3=	Math::VectorReal.3
 

Modified: head/math/p5-NetCDF/Makefile
==============================================================================
--- head/math/p5-NetCDF/Makefile	Thu Sep 12 05:53:03 2013	(r327032)
+++ head/math/p5-NetCDF/Makefile	Thu Sep 12 06:03:58 2013	(r327033)
@@ -1,9 +1,5 @@
-# New ports collection makefile for:	p5-NetCDF
-# Date created:				2003-11-17
-# Whom:	      				Douglas K. Rand (rand@meridian-enviro.com)
-#
+# Created by: Douglas K. Rand (rand@meridian-enviro.com)
 # $FreeBSD$
-#
 
 PORTNAME=	NetCDF
 PORTVERSION=	1.2.4
@@ -24,7 +20,7 @@ LIB_DEPENDS=	netcdf.7:${PORTSDIR}/scienc
 LIB_DEPENDS=	netcdf.4:${PORTSDIR}/science/netcdf
 .endif
 
-USE_PERL5=	yes
+USES=		perl5
 
 WRKSRC=		${WRKDIR}/${DISTNAME}/src
 GNU_CONFIGURE=	yes

Modified: head/math/p5-Number-WithError/Makefile
==============================================================================
--- head/math/p5-Number-WithError/Makefile	Thu Sep 12 05:53:03 2013	(r327032)
+++ head/math/p5-Number-WithError/Makefile	Thu Sep 12 06:03:58 2013	(r327033)
@@ -1,9 +1,5 @@
-# New ports collection makefile for:	Number-WithError
-# Date created:				15 May 2006
-# Whom:					Aaron Dalton <aaron@FreeBSD.org>
-#
+# Created by: Aaron Dalton <aaron@FreeBSD.org>
 # $FreeBSD$
-#
 
 PORTNAME=	Number-WithError
 PORTVERSION=	1.01
@@ -22,6 +18,7 @@ TEST_DEPENDS=	p5-Test-LectroTest>=0:${PO
 
 MAN3=	Number::WithError.3
 
-PERL_CONFIGURE=	yes
+USES=		perl5
+USE_PERL5=	configure
 
 .include <bsd.port.mk>

Modified: head/math/p5-Set-IntSpan/Makefile
==============================================================================
--- head/math/p5-Set-IntSpan/Makefile	Thu Sep 12 05:53:03 2013	(r327032)
+++ head/math/p5-Set-IntSpan/Makefile	Thu Sep 12 06:03:58 2013	(r327033)
@@ -10,7 +10,8 @@ PKGNAMEPREFIX=	p5-
 MAINTAINER=	danilogondolfo@gmail.com
 COMMENT=	Manages sets of integers
 
-PERL_CONFIGURE=	yes
+USES=		perl5
+USE_PERL5=	configure
 
 MAN3=		Set::IntSpan.3
 

Modified: head/math/p5-Statistics-Lite/Makefile
==============================================================================
--- head/math/p5-Statistics-Lite/Makefile	Thu Sep 12 05:53:03 2013	(r327032)
+++ head/math/p5-Statistics-Lite/Makefile	Thu Sep 12 06:03:58 2013	(r327033)
@@ -1,9 +1,5 @@
-# New ports collection makefile for:	p5-Statistics-Lite
-# Date created:				1 December 2004
-# Whom:					Sergey A. Osokin <osa@FreeBSD.org>
-#
+# Created by: Sergey A. Osokin <osa@FreeBSD.org>
 # $FreeBSD$
-#
 
 PORTNAME=	Statistics-Lite
 PORTVERSION=	3.2
@@ -14,7 +10,8 @@ PKGNAMEPREFIX=	p5-
 MAINTAINER=	osa@FreeBSD.org
 COMMENT=	The lightweight and functional object-oriented statistics
 
-PERL_CONFIGURE=	yes
+USES=		perl5
+USE_PERL5=	configure
 USE_DOS2UNIX=	yes
 
 MAN3=		Statistics::Lite.3

Modified: head/x11-fonts/geminifonts/Makefile
==============================================================================
--- head/x11-fonts/geminifonts/Makefile	Thu Sep 12 05:53:03 2013	(r327032)
+++ head/x11-fonts/geminifonts/Makefile	Thu Sep 12 06:03:58 2013	(r327033)
@@ -1,9 +1,5 @@
-# New ports collection makefile for:	koi8rPS
-# Date created:				Oct 30, 2000
-# Whom:					mi@aldan.algebra.com
-#
+# Created by: mi@aldan.algebra.com
 # $FreeBSD$
-#
 
 PORTNAME=	gemini
 PORTVERSION=	1.0
@@ -22,7 +18,8 @@ BUILD_DEPENDS=	bdftopcf:${PORTSDIR}/x11-
 		mkfontdir:${PORTSDIR}/x11-fonts/mkfontdir \
 		mkfontscale:${PORTSDIR}/x11-fonts/mkfontscale
 
-USE_PERL5_BUILD=yes
+USES=		perl5
+USE_PERL5=	build
 USE_XORG=	x11
 NO_WRKSUBDIR=	yes
 

Modified: head/x11-fonts/p5-type1inst/Makefile
==============================================================================
--- head/x11-fonts/p5-type1inst/Makefile	Thu Sep 12 05:53:03 2013	(r327032)
+++ head/x11-fonts/p5-type1inst/Makefile	Thu Sep 12 06:03:58 2013	(r327033)
@@ -1,9 +1,5 @@
-# New ports collection makefile for:	p5-type1inst
-# Date created:		7 Jan 1998
-# Whom:			giffunip@asme.org
-#
+# Created by: giffunip@asme.org
 # $FreeBSD$
-#
 
 PORTNAME=	type1inst
 PORTVERSION=	0.6.1
@@ -21,7 +17,7 @@ RUN_DEPENDS=	${LOCALBASE}/bin/mkfontdir:
 		${LOCALBASE}/bin/mkfontscale:${PORTSDIR}/x11-fonts/mkfontscale
 .endif
 
-USE_PERL5=	yes
+USES=		perl5
 NO_BUILD=	yes
 PORTDOCS=	README
 PLIST_FILES=	bin/t1embed bin/type1inst



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