Skip site navigation (1)Skip section navigation (2)
Date:      Tue, 10 Sep 2013 11:32:20 +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: r326894 - in head/databases: innotop mariadb-scripts mysql51-scripts mysqlsla p5-Amazon-SimpleDB p5-CDB_File p5-DBD-Multi p5-DBICx-Deploy p5-DBICx-TestDatabase p5-DBIx-Abstract p5-DBIx-...
Message-ID:  <201309101132.r8ABWK7u055757@svn.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: az
Date: Tue Sep 10 11:32:20 2013
New Revision: 326894
URL: http://svnweb.freebsd.org/changeset/ports/326894

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

Modified:
  head/databases/innotop/Makefile
  head/databases/mariadb-scripts/Makefile   (contents, props changed)
  head/databases/mysql51-scripts/Makefile   (contents, props changed)
  head/databases/mysqlsla/Makefile   (contents, props changed)
  head/databases/p5-Amazon-SimpleDB/Makefile   (contents, props changed)
  head/databases/p5-CDB_File/Makefile
  head/databases/p5-DBD-Multi/Makefile   (contents, props changed)
  head/databases/p5-DBICx-Deploy/Makefile   (contents, props changed)
  head/databases/p5-DBICx-TestDatabase/Makefile   (contents, props changed)
  head/databases/p5-DBIx-Abstract/Makefile   (contents, props changed)
  head/databases/p5-DBIx-Class-DynamicSubclass/Makefile   (contents, props changed)
  head/databases/p5-DBIx-Class-InflateColumn-Authen-Passphrase/Makefile   (contents, props changed)
  head/databases/p5-DBIx-Class-PassphraseColumn/Makefile
  head/databases/p5-DBIx-Connector/Makefile   (contents, props changed)
  head/databases/p5-DBIx-Wrapper/Makefile   (contents, props changed)
  head/databases/p5-Data-Pageset/Makefile   (contents, props changed)
  head/databases/p5-KyotoCabinet/Makefile   (contents, props changed)
  head/databases/p5-SQL-Abstract-Plugin-InsertMulti/Makefile   (contents, props changed)
  head/databases/p5-tokyotyrant/Makefile   (contents, props changed)

Modified: head/databases/innotop/Makefile
==============================================================================
--- head/databases/innotop/Makefile	Tue Sep 10 10:52:18 2013	(r326893)
+++ head/databases/innotop/Makefile	Tue Sep 10 11:32:20 2013	(r326894)
@@ -1,9 +1,5 @@
-# New ports collection makefile for:	innotop
-# Date created:				23 October 2006
-# Whom:	      				Steven Kreuzer <skreuzer@f2o.org>
-#
+# Created by: Steven Kreuzer <skreuzer@f2o.org>
 # $FreeBSD$
-#
 
 PORTNAME=	innotop
 PORTVERSION=	1.9.1
@@ -23,7 +19,8 @@ RUN_DEPENDS=	p5-DBD-mysql>=0:${PORTSDIR}
 		p5-DBI>=1.46:${PORTSDIR}/databases/p5-DBI \
 		p5-Term-ReadKey>=2.10:${PORTSDIR}/devel/p5-Term-ReadKey
 
-PERL_CONFIGURE=	yes
+USES=		perl5
+USE_PERL5=	configure
 USE_MYSQL=	yes
 
 MAN1=		innotop.1

Modified: head/databases/mariadb-scripts/Makefile
==============================================================================
--- head/databases/mariadb-scripts/Makefile	Tue Sep 10 10:52:18 2013	(r326893)
+++ head/databases/mariadb-scripts/Makefile	Tue Sep 10 11:32:20 2013	(r326894)
@@ -8,7 +8,7 @@ COMMENT=	Scripts for mariadb - drop-in r
 LICENSE=	GPLv2
 
 UNIQUENAME=	${PORTNAME}${PKGNAMESUFFIX}
-USE_PERL5=	yes
+USES=		perl5
 
 MASTERDIR=	${.CURDIR}/../mariadb-server
 MARIADB_SCRIPTS_SLAVE=	yes

Modified: head/databases/mysql51-scripts/Makefile
==============================================================================
--- head/databases/mysql51-scripts/Makefile	Tue Sep 10 10:52:18 2013	(r326893)
+++ head/databases/mysql51-scripts/Makefile	Tue Sep 10 11:32:20 2013	(r326894)
@@ -1,9 +1,5 @@
-# New ports collection makefile for:    MySQL-scripts
-# Date created:         28 Jan 2006
-# Whom:                 Alex Dupre <ale@FreeBSD.org>
-#
+# Created by: Alex Dupre <ale@FreeBSD.org>
 # $FreeBSD$
-#
 
 PORTNAME=	mysql
 PKGNAMESUFFIX=	-scripts
@@ -17,6 +13,6 @@ PKGMESSAGE=	mustnotexist
 PLIST=		${PKGDIR}/pkg-plist.scripts
 
 SCRIPTS_ONLY=	yes
-USE_PERL5=	yes
+USES=		perl5
 
 .include "${MASTERDIR}/Makefile"

Modified: head/databases/mysqlsla/Makefile
==============================================================================
--- head/databases/mysqlsla/Makefile	Tue Sep 10 10:52:18 2013	(r326893)
+++ head/databases/mysqlsla/Makefile	Tue Sep 10 11:32:20 2013	(r326894)
@@ -1,7 +1,4 @@
-# New ports collection makefile for:	mysqlsla
-# Date created:			2006-11-23
-# Whom:				Alexander Zhuravlev <zaa@zaa.pp.ru>
-#
+# Created by: Alexander Zhuravlev <zaa@zaa.pp.ru>
 # $FreeBSD$
 
 PORTNAME=	mysqlsla
@@ -16,7 +13,7 @@ COMMENT=	Mysqlsla analyzes general, slow
 RUN_DEPENDS=	p5-DBI>=0:${PORTSDIR}/databases/p5-DBI \
 		p5-Term-ReadKey>=0:${PORTSDIR}/devel/p5-Term-ReadKey
 
-USE_PERL5=	yes
+USES=		perl5
 NO_BUILD=	yes
 
 PLIST_FILES=	bin/mysqlsla

Modified: head/databases/p5-Amazon-SimpleDB/Makefile
==============================================================================
--- head/databases/p5-Amazon-SimpleDB/Makefile	Tue Sep 10 10:52:18 2013	(r326893)
+++ head/databases/p5-Amazon-SimpleDB/Makefile	Tue Sep 10 11:32:20 2013	(r326894)
@@ -1,9 +1,5 @@
-# New ports collection makefile for:	p5-Amazon-SimpleDB
-# Date created:		2009-02-02
-# Whom:			Gea-Suan Lin <gslin@gslin.org>
-#
+# Created by: Gea-Suan Lin <gslin@gslin.org>
 # $FreeBSD$
-#
 
 PORTNAME=	Amazon-SimpleDB
 PORTVERSION=	0.03
@@ -21,7 +17,8 @@ BUILD_DEPENDS=	p5-Digest-HMAC>0:${PORTSD
 		p5-libwww>0:${PORTSDIR}/www/p5-libwww
 RUN_DEPENDS:=	${BUILD_DEPENDS}
 
-PERL_CONFIGURE=	yes
+USES=		perl5
+USE_PERL5=	configure
 
 MAN3=		Amazon::SimpleDB.3 \
 		Amazon::SimpleDB::Domain.3 \

Modified: head/databases/p5-CDB_File/Makefile
==============================================================================
--- head/databases/p5-CDB_File/Makefile	Tue Sep 10 10:52:18 2013	(r326893)
+++ head/databases/p5-CDB_File/Makefile	Tue Sep 10 11:32:20 2013	(r326894)
@@ -1,10 +1,5 @@
-# ex:ts=8
-# New ports collection makefile for:	p5-CDB_Fiile
-# Date created:			24 June 2001
-# Whom:				Jon Nistor <nistor@snickers.org>
-#
+# Created by: Jon Nistor <nistor@snickers.org>
 # $FreeBSD$
-#
 
 PORTNAME=	CDB_File
 PORTVERSION=	0.97
@@ -15,7 +10,8 @@ PKGNAMEPREFIX=	p5-
 MAINTAINER=	nistor@snickers.org
 COMMENT=	Perl5 interface to the CDB package
 
-PERL_CONFIGURE=	yes
+USES=		perl5
+USE_PERL5=	configure
 
 MAN3=		CDB_File.3
 

Modified: head/databases/p5-DBD-Multi/Makefile
==============================================================================
--- head/databases/p5-DBD-Multi/Makefile	Tue Sep 10 10:52:18 2013	(r326893)
+++ head/databases/p5-DBD-Multi/Makefile	Tue Sep 10 11:32:20 2013	(r326894)
@@ -1,9 +1,5 @@
-# New ports collection makefile for:	p5-DBD-Multi
-# Date created:		2007-07-07
-# Whom:			Tsung-Han Yeh <snowfly@yuntech.edu.tw>
-#
+# Created by: Tsung-Han Yeh <snowfly@yuntech.edu.tw>
 # $FreeBSD$
-#
 
 PORTNAME=	DBD-Multi
 PORTVERSION=	0.16
@@ -28,7 +24,8 @@ TEST_DEPENDS=	p5-DBD-SQLite>=1.09:${PORT
 		p5-Test-Pod>=1.14:${PORTSDIR}/devel/p5-Test-Pod \
 		p5-Test-Pod-Coverage>=1.04:${PORTSDIR}/devel/p5-Test-Pod-Coverage
 
-PERL_CONFIGURE=	yes
+USES=		perl5
+USE_PERL5=	configure
 
 MAN3=		DBD::Multi.3
 

Modified: head/databases/p5-DBICx-Deploy/Makefile
==============================================================================
--- head/databases/p5-DBICx-Deploy/Makefile	Tue Sep 10 10:52:18 2013	(r326893)
+++ head/databases/p5-DBICx-Deploy/Makefile	Tue Sep 10 11:32:20 2013	(r326894)
@@ -1,9 +1,5 @@
-# New ports collection makefile for:	DBICx-Deploy
-# Date created:	   			23 Oct 2008
-# Whom:		   			Martin Wilke <miwi@FreeBSD.org>
-#
+# Created by: Martin Wilke <miwi@FreeBSD.org>
 # $FreeBSD$
-#
 
 PORTNAME=	DBICx-Deploy
 PORTVERSION=	0.02
@@ -22,7 +18,8 @@ BUILD_DEPENDS=	p5-DBIx-Class>=0.07003:${
 RUN_DEPENDS=	p5-DBIx-Class>=0.07003:${PORTSDIR}/databases/p5-DBIx-Class \
 		p5-SQL-Translator>=0:${PORTSDIR}/databases/p5-SQL-Translator
 
-PERL_CONFIGURE=	yes
+USES=		perl5
+USE_PERL5=	configure
 
 MAN1=	dbicdeploy.1
 MAN3=	DBICx::Deploy.3

Modified: head/databases/p5-DBICx-TestDatabase/Makefile
==============================================================================
--- head/databases/p5-DBICx-TestDatabase/Makefile	Tue Sep 10 10:52:18 2013	(r326893)
+++ head/databases/p5-DBICx-TestDatabase/Makefile	Tue Sep 10 11:32:20 2013	(r326894)
@@ -1,9 +1,5 @@
-# New ports collection makefile for:	DBICx-TestDatabase
-# Date created:	   			23 Oct 2008
-# Whom:		   			Martin Wilke <miwi@FreeBSD.org>
-#
+# Created by: Martin Wilke <miwi@FreeBSD.org>
 # $FreeBSD$
-#
 
 PORTNAME=	DBICx-TestDatabase
 PORTVERSION=	0.04
@@ -24,7 +20,8 @@ RUN_DEPENDS=	p5-DBD-SQLite>=1.12:${PORTS
 		p5-File-Temp>0:${PORTSDIR}/devel/p5-File-Temp
 TEST_DEPENDS=	p5-Test-use-ok>=0:${PORTSDIR}/devel/p5-Test-use-ok
 
-PERL_CONFIGURE=	yes
+USES=		perl5
+USE_PERL5=	configure
 
 MAN3=		DBICx::TestDatabase.3 \
 		DBICx::TestDatabase::Subclass.3

Modified: head/databases/p5-DBIx-Abstract/Makefile
==============================================================================
--- head/databases/p5-DBIx-Abstract/Makefile	Tue Sep 10 10:52:18 2013	(r326893)
+++ head/databases/p5-DBIx-Abstract/Makefile	Tue Sep 10 11:32:20 2013	(r326894)
@@ -1,9 +1,5 @@
-# New ports collection makefile for:	p5-DBIx-Abstract
-# Date created:				6 Jan 2006
-# Whom:					Jon Nistor <nistor@snickers.org>
-#
+# Created by: Jon Nistor <nistor@snickers.org>
 # $FreeBSD$
-#
 
 PORTNAME=	DBIx-Abstract
 PORTVERSION=	1.010
@@ -21,7 +17,8 @@ RUN_DEPENDS=	p5-Check-ISA>=0:${PORTSDIR}
 		p5-DBI>=0:${PORTSDIR}/databases/p5-DBI
 TEST_DEPENDS=	p5-DBD-SQLite>=0:${PORTSDIR}/databases/p5-DBD-SQLite
 
-PERL_CONFIGURE=	yes
+USES=		perl5
+USE_PERL5=	configure
 
 MAN3=		DBIx::Abstract.3
 

Modified: head/databases/p5-DBIx-Class-DynamicSubclass/Makefile
==============================================================================
--- head/databases/p5-DBIx-Class-DynamicSubclass/Makefile	Tue Sep 10 10:52:18 2013	(r326893)
+++ head/databases/p5-DBIx-Class-DynamicSubclass/Makefile	Tue Sep 10 11:32:20 2013	(r326894)
@@ -1,9 +1,5 @@
-# New ports collection makefile for:	p5-DBIx-Class-DynamicSubclass
-# Date created:		2008-07-15
-# Whom:			Vladimir Timofeev <vovkasm@gmail.com>
-#
+# Created by: Vladimir Timofeev <vovkasm@gmail.com>
 # $FreeBSD$
-#
 
 PORTNAME=	DBIx-Class-DynamicSubclass
 PORTVERSION=	0.03
@@ -17,7 +13,8 @@ COMMENT=	Use dynamic subclassing with DB
 RUN_DEPENDS=	p5-DBIx-Class>=0.07003:${PORTSDIR}/databases/p5-DBIx-Class
 BUILD_DEPENDS:=	${RUN_DEPENDS}
 
-PERL_CONFIGURE=	yes
+USES=		perl5
+USE_PERL5=	configure
 
 MAN3=	DBIx::Class::DynamicSubclass.3
 

Modified: head/databases/p5-DBIx-Class-InflateColumn-Authen-Passphrase/Makefile
==============================================================================
--- head/databases/p5-DBIx-Class-InflateColumn-Authen-Passphrase/Makefile	Tue Sep 10 10:52:18 2013	(r326893)
+++ head/databases/p5-DBIx-Class-InflateColumn-Authen-Passphrase/Makefile	Tue Sep 10 11:32:20 2013	(r326894)
@@ -1,4 +1,3 @@
-# Created by Frank Wall <fw@moov.de>
 # $FreeBSD$
 
 PORTNAME=	DBIx-Class-InflateColumn-Authen-Passphrase
@@ -18,7 +17,8 @@ BUILD_DEPENDS:=	p5-DBIx-Class-DynamicDef
 		p5-DBIx-Class>=0.08009:${PORTSDIR}/databases/p5-DBIx-Class \
 		p5-Authen-Passphrase>=0:${PORTSDIR}/security/p5-Authen-Passphrase
 
-PERL_CONFIGURE=	yes
+USES=		perl5
+USE_PERL5=	configure
 
 MAN3=		DBIx::Class::InflateColumn::Authen::Passphrase.3
 

Modified: head/databases/p5-DBIx-Class-PassphraseColumn/Makefile
==============================================================================
--- head/databases/p5-DBIx-Class-PassphraseColumn/Makefile	Tue Sep 10 10:52:18 2013	(r326893)
+++ head/databases/p5-DBIx-Class-PassphraseColumn/Makefile	Tue Sep 10 11:32:20 2013	(r326894)
@@ -14,7 +14,8 @@ RUN_DEPENDS=	p5-DBIx-Class-DynamicDefaul
 		p5-DBIx-Class>=0.08009:${PORTSDIR}/databases/p5-DBIx-Class
 BUILD_DEPENDS:=	${RUN_DEPENDS}
 
-PERL_CONFIGURE=	yes
+USES=		perl5
+USE_PERL5=	configure
 
 MAN3=	DBIx::Class::PassphraseColumn.3
 

Modified: head/databases/p5-DBIx-Connector/Makefile
==============================================================================
--- head/databases/p5-DBIx-Connector/Makefile	Tue Sep 10 10:52:18 2013	(r326893)
+++ head/databases/p5-DBIx-Connector/Makefile	Tue Sep 10 11:32:20 2013	(r326894)
@@ -14,7 +14,8 @@ RUN_DEPENDS=	\
 BUILD_DEPENDS:=	${RUN_DEPENDS}
 TEST_DEPENDS=	p5-Test-MockModule>=0:${PORTSDIR}/devel/p5-Test-MockModule
 
-PERL_MODBUILD=	yes
+USES=		perl5
+USE_PERL5=	modbuild
 
 MAN3=	DBIx::Connector.3 \
 	DBIx::Connector::Driver.3 \

Modified: head/databases/p5-DBIx-Wrapper/Makefile
==============================================================================
--- head/databases/p5-DBIx-Wrapper/Makefile	Tue Sep 10 10:52:18 2013	(r326893)
+++ head/databases/p5-DBIx-Wrapper/Makefile	Tue Sep 10 11:32:20 2013	(r326894)
@@ -1,9 +1,5 @@
-# New ports collection makefile for:   p5-DBIx-Wrapper
-# Date created:        8 January 2012
-# Whom:                Don Owens <don@regexguy.com>
-#
+# Created by: Don Owens <don@regexguy.com>
 # $FreeBSD$
-#
 
 PORTNAME=	DBIx-Wrapper
 PORTVERSION=	0.28
@@ -16,7 +12,8 @@ COMMENT=	A wrapper around Perl's DBI mod
 
 RUN_DEPENDS=	p5-DBI>=0:${PORTSDIR}/databases/p5-DBI
 
-PERL_CONFIGURE=	yes
+USES=		perl5
+USE_PERL5=	configure
 
 MAN3=		DBIx::Wrapper.3 \
 		DBIx::Wrapper::Request.3

Modified: head/databases/p5-Data-Pageset/Makefile
==============================================================================
--- head/databases/p5-Data-Pageset/Makefile	Tue Sep 10 10:52:18 2013	(r326893)
+++ head/databases/p5-Data-Pageset/Makefile	Tue Sep 10 11:32:20 2013	(r326894)
@@ -1,9 +1,5 @@
-# New ports collection makefile for:	p5-Data-Pageset
-# Date created:				29 May 2006
-# Whom:					Aaron Dalton <aaron@FreeBSD.org>
-#
+# Created by: Aaron Dalton <aaron@FreeBSD.org>
 # $FreeBSD$
-#
 
 PORTNAME=	Data-Pageset
 PORTVERSION=	1.06
@@ -20,6 +16,7 @@ RUN_DEPENDS:=	${BUILD_DEPENDS}
 
 MAN3=	Data::Pageset.3
 
-PERL_CONFIGURE=	yes
+USES=		perl5
+USE_PERL5=	configure
 
 .include <bsd.port.mk>

Modified: head/databases/p5-KyotoCabinet/Makefile
==============================================================================
--- head/databases/p5-KyotoCabinet/Makefile	Tue Sep 10 10:52:18 2013	(r326893)
+++ head/databases/p5-KyotoCabinet/Makefile	Tue Sep 10 11:32:20 2013	(r326894)
@@ -1,9 +1,5 @@
-# New ports collection makefile for:	p5-KyotoCabinet
-# Date created:				2011-09-19
-# Whom:					Geraud CONTINSOUZAS <geraud@gcu.info>
-#
+# Created by: Geraud CONTINSOUZAS <geraud@gcu.info>
 # $FreeBSD$
-#
 
 PORTNAME=	KyotoCabinet
 PORTVERSION=	1.18
@@ -20,7 +16,8 @@ LICENSE=	GPLv3
 
 LIB_DEPENDS=	kyotocabinet:${PORTSDIR}/databases/kyotocabinet
 
-PERL_CONFIGURE=	yes
+USES=		perl5
+USE_PERL5=	configure
 
 MAN3=	KyotoCabinet.3
 

Modified: head/databases/p5-SQL-Abstract-Plugin-InsertMulti/Makefile
==============================================================================
--- head/databases/p5-SQL-Abstract-Plugin-InsertMulti/Makefile	Tue Sep 10 10:52:18 2013	(r326893)
+++ head/databases/p5-SQL-Abstract-Plugin-InsertMulti/Makefile	Tue Sep 10 11:32:20 2013	(r326894)
@@ -1,9 +1,4 @@
-# New ports collection makefile for:	SQL::Abstract::Plugin::InsertMulti
-# Date created:		26 Dec 2010
-# Whom:			Jun Kuriyama <kuriyama@FreeBSD.org>
-#
 # $FreeBSD$
-#
 
 PORTNAME=	SQL-Abstract-Plugin-InsertMulti
 PORTVERSION=	0.03
@@ -19,7 +14,8 @@ RUN_DEPENDS=	\
 	p5-Sub-Exporter>0:${PORTSDIR}/devel/p5-Sub-Exporter
 BUILD_DEPENDS:=	${RUN_DEPENDS}
 
-PERL_CONFIGURE=	yes
+USES=		perl5
+USE_PERL5=	configure
 
 MAN3=	SQL::Abstract::Plugin::InsertMulti.3
 

Modified: head/databases/p5-tokyotyrant/Makefile
==============================================================================
--- head/databases/p5-tokyotyrant/Makefile	Tue Sep 10 10:52:18 2013	(r326893)
+++ head/databases/p5-tokyotyrant/Makefile	Tue Sep 10 11:32:20 2013	(r326894)
@@ -1,9 +1,5 @@
-# ports collection makefile for:	perl interface to TokyoTyrant
-# Date created:				17 February 2010
-# Whom:					Hiroyuki Hanai <hanai@FreeBSD.org>
-#
+# Created by: Hiroyuki Hanai <hanai@FreeBSD.org>
 # $FreeBSD$
-#
 
 PORTNAME=	tokyotyrant
 PORTVERSION=	1.16
@@ -19,7 +15,8 @@ COMMENT=	Perl5 interface to the TokyoTyr
 BUILD_DEPENDS=	tokyotyrant>=1.1.40:${PORTSDIR}/databases/tokyotyrant
 LIB_DEPENDS=	tokyotyrant:${PORTSDIR}/databases/tokyotyrant
 
-PERL_CONFIGURE=	yes
+USES=		perl5
+USE_PERL5=	configure
 
 MAN3=		TokyoTyrant.3
 



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