Skip site navigation (1)Skip section navigation (2)
Date:      Mon, 16 Sep 2013 17:03:42 +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: r327418 - in head: databases/mysql56-server databases/mysqltuner databases/p5-DBZ_File databases/rrdtool10 databases/slony1v2 databases/tarantool irc/anope irc/bitchx irc/epic5 irc/insp...
Message-ID:  <201309161703.r8GH3gRR088105@svn.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: az
Date: Mon Sep 16 17:03:42 2013
New Revision: 327418
URL: http://svnweb.freebsd.org/changeset/ports/327418

Log:
  - convert to the new perl5 framework
  - convert USE_GMAKE to Uses
  
  Approved by:	portmgr (bapt@, blanket)

Modified:
  head/databases/mysql56-server/Makefile
  head/databases/mysqltuner/Makefile   (contents, props changed)
  head/databases/p5-DBZ_File/Makefile   (contents, props changed)
  head/databases/rrdtool10/Makefile
  head/databases/slony1v2/Makefile
  head/databases/tarantool/Makefile
  head/irc/anope/Makefile
  head/irc/bitchx/Makefile
  head/irc/epic5/Makefile   (contents, props changed)
  head/irc/inspircd12/Makefile
  head/irc/ircd-ratbox/Makefile   (contents, props changed)
  head/irc/ircservices/Makefile   (contents, props changed)
  head/irc/irssi-devel/Makefile
  head/irc/p5-POE-Component-IRC/Makefile
  head/irc/p5-Parse-IRC/Makefile   (contents, props changed)
  head/irc/pisg/Makefile   (contents, props changed)
  head/irc/ratbox-services/Makefile   (contents, props changed)
  head/irc/weechat-devel/Makefile
  head/irc/weechat/Makefile

Modified: head/databases/mysql56-server/Makefile
==============================================================================
--- head/databases/mysql56-server/Makefile	Mon Sep 16 16:58:41 2013	(r327417)
+++ head/databases/mysql56-server/Makefile	Mon Sep 16 17:03:42 2013	(r327418)
@@ -42,7 +42,8 @@ CMAKE_ARGS+=	-DINSTALL_DOCDIR="share/doc
 USE_MYSQL=	yes
 WANT_MYSQL_VER=	56
 
-USE_PERL5_RUN=	yes
+USES+=		perl5
+USE_PERL5=	run
 
 LATEST_LINK=	mysql56-server
 

Modified: head/databases/mysqltuner/Makefile
==============================================================================
--- head/databases/mysqltuner/Makefile	Mon Sep 16 16:58:41 2013	(r327417)
+++ head/databases/mysqltuner/Makefile	Mon Sep 16 17:03:42 2013	(r327418)
@@ -17,7 +17,8 @@ COMMENT=	A Script Assist You with MySQL 
 LICENSE=	GPLv3
 
 FETCH_ARGS=	-pRr
-USE_PERL5=	yes
+
+USES=		perl5
 NO_BUILD=	yes
 
 PLIST_FILES=	bin/${PORTNAME}.pl

Modified: head/databases/p5-DBZ_File/Makefile
==============================================================================
--- head/databases/p5-DBZ_File/Makefile	Mon Sep 16 16:58:41 2013	(r327417)
+++ head/databases/p5-DBZ_File/Makefile	Mon Sep 16 17:03:42 2013	(r327418)
@@ -15,7 +15,8 @@ DISTNAME=	${PORTNAME}_${PORTVERSION}
 MAINTAINER=	leeym@FreeBSD.org
 COMMENT=	Perl module to access a DBZ database
 
-PERL_CONFIGURE=	yes
+USES=		perl5
+USE_PERL5=	configure
 CONFIGURE_ARGS=	DEFINE="-I${FILESDIR}" POLLUTE=1
 
 WRKSRC=		${WRKDIR}/DBZ_File

Modified: head/databases/rrdtool10/Makefile
==============================================================================
--- head/databases/rrdtool10/Makefile	Mon Sep 16 16:58:41 2013	(r327417)
+++ head/databases/rrdtool10/Makefile	Mon Sep 16 17:03:42 2013	(r327418)
@@ -10,13 +10,12 @@ MASTER_SITES=	http://oss.oetiker.ch/rrdt
 MAINTAINER=	lth@FreeBSD.org
 COMMENT=	Round Robin Database Tools
 
-USE_PERL5=	yes
 MAKE_ENV=	PERL=${PERL}
 
 CONFLICTS=	rrdtool-1.2*
 LATEST_LINK=	rrdtool10
 
-USES=		pkgconfig
+USES=		pkgconfig perl5
 USE_AUTOTOOLS=	libtool
 USE_LDCONFIG=	yes
 CONFIGURE_ARGS=	--enable-shared --enable-local-zlib \

Modified: head/databases/slony1v2/Makefile
==============================================================================
--- head/databases/slony1v2/Makefile	Mon Sep 16 16:58:41 2013	(r327417)
+++ head/databases/slony1v2/Makefile	Mon Sep 16 17:03:42 2013	(r327418)
@@ -16,9 +16,8 @@ BUILD_DEPENDS=	${LOCALBASE}/bin/flex:${P
 		${LOCALBASE}/bin/postmaster:${PORTSDIR}/databases/postgresql${PGSQL_VER}-server
 
 GNU_CONFIGURE=	yes
-USES=		bison
+USES=		bison gmake
 USE_PGSQL=	yes
-USE_GMAKE=	yes
 USE_BZIP2=	yes
 USE_RC_SUBR=	slon
 
@@ -35,7 +34,7 @@ CONFIGURE_ENV+=	FLEX=${LOCALBASE}/bin/fl
 .include <bsd.port.options.mk>
 
 .if ${PORT_OPTIONS:MPERLTOOLS}
-USE_PERL5=	yes
+USES+=		perl5
 CONFIGURE_ARGS+=--with-perltools=${LOCALBASE}/sbin
 RUN_DEPENDS+=	p5-DBD-Pg>=0:${PORTSDIR}/databases/p5-DBD-Pg
 BUILD_DEPENDS+=	p5-DBD-Pg>=0:${PORTSDIR}/databases/p5-DBD-Pg

Modified: head/databases/tarantool/Makefile
==============================================================================
--- head/databases/tarantool/Makefile	Mon Sep 16 16:58:41 2013	(r327417)
+++ head/databases/tarantool/Makefile	Mon Sep 16 17:03:42 2013	(r327418)
@@ -13,11 +13,9 @@ COMMENT=	High performance key/value stor
 LICENSE=	BSD
 
 TR_REV=		45-g2f7b3f9
-USES=		cmake gettext:build
+USES=		cmake gettext:build gmake perl5
 USE_GCC=	yes
-USE_GMAKE=	yes
 USE_LDCONFIG=	yes
-USE_PERL5=	yes
 USE_RC_SUBR=	${PORTNAME}
 SUB_FILES=	pkg-message
 MAN1=		tarantool_box.1

Modified: head/irc/anope/Makefile
==============================================================================
--- head/irc/anope/Makefile	Mon Sep 16 16:58:41 2013	(r327417)
+++ head/irc/anope/Makefile	Mon Sep 16 17:03:42 2013	(r327418)
@@ -9,14 +9,14 @@ MASTER_SITES=	SF/${PORTNAME}/${PORTNAME}
 MAINTAINER=	dhn@FreeBSD.org
 COMMENT=	A set of IRC services for IRC networks
 
-USE_GMAKE=	yes
+USES=		gmake perl5
+USE_PERL5=	build
 GNU_CONFIGURE=	yes
 CONFIGURE_ARGS=	--libdir="${LOCALBASE}/lib" \
 		--includedir="${LOCALBASE}/include" \
 		--with-bindir=${PREFIX}/libexec/anope \
 		--with-datadir=${DATADIR} \
 		--with-rungroup=ircdru
-USE_PERL5_BUILD=	yes
 
 PORTDOCS=	BUGS COPYING DEFCON EVENTS \
 		FAQ INSTALL IRCD MODULES MYSQL \

Modified: head/irc/bitchx/Makefile
==============================================================================
--- head/irc/bitchx/Makefile	Mon Sep 16 16:58:41 2013	(r327417)
+++ head/irc/bitchx/Makefile	Mon Sep 16 17:03:42 2013	(r327418)
@@ -12,9 +12,9 @@ MAINTAINER?=	dan.mashal@gmail.com
 COMMENT?=	Feature-rich scriptable IRC client
 
 WRKSRC=		${WRKDIR}/${DISTNAME:C,-final$,,}
-USE_PERL5=	yes
+
+USES=		gmake perl5
 GNU_CONFIGURE=	yes
-USE_GMAKE=	yes
 CONFIGURE_ARGS+=--exec-prefix="${PREFIX}/share" \
 		--bindir="${PREFIX}/bin" \
 		--datadir="${PREFIX}/share" \

Modified: head/irc/epic5/Makefile
==============================================================================
--- head/irc/epic5/Makefile	Mon Sep 16 16:58:41 2013	(r327417)
+++ head/irc/epic5/Makefile	Mon Sep 16 17:03:42 2013	(r327418)
@@ -22,7 +22,6 @@ MAN1=		epic5.1
 USE_OPENSSL=	yes
 PLIST_SUB+=	PORTVERSION=${PORTVERSION}
 USE_BZIP2=	yes
-WANT_PERL=	yes
 CFLAGS:=	${CFLAGS:C/-O2/-g -O/g}
 
 OPTIONS_DEFINE=	IPV6 TCL PERL SSL TERMCAP DOCS RUBY
@@ -48,7 +47,7 @@ CONFIGURE_ARGS+=	--without-tcl
 #  enable perl5 support (requires perl 5.6.1 or newer)
 #
 .if ${PORT_OPTIONS:MPERL}
-USE_PERL5=	yes
+USES+=		perl5
 CONFIGURE_ARGS+=	--with-perl
 .else
 CONFIGURE_ARGS+=	--without-perl

Modified: head/irc/inspircd12/Makefile
==============================================================================
--- head/irc/inspircd12/Makefile	Mon Sep 16 16:58:41 2013	(r327417)
+++ head/irc/inspircd12/Makefile	Mon Sep 16 17:03:42 2013	(r327418)
@@ -15,7 +15,7 @@ CONFLICTS=	inspircd-2.*
 
 LATEST_LINK=	inspircd12
 
-USES=		shebangfix
+USES=		shebangfix perl5
 USE_BZIP2=	yes
 USE_LDCONFIG=	${PREFIX}/lib/inspircd
 USE_RC_SUBR=	inspircd
@@ -40,7 +40,7 @@ SUB_LIST+=	\
 PLIST_SUB+=	INSPIRCD_GRP=${INSPIRCD_GRP}
 
 # Configure script is written in perl
-USE_PERL5_BUILD=yes
+USE_PERL5=	build
 
 HAS_CONFIGURE=	yes
 CONFIGURE_ARGS=	--with-cc=${CXX} --config-dir=${ETCDIR}                   \

Modified: head/irc/ircd-ratbox/Makefile
==============================================================================
--- head/irc/ircd-ratbox/Makefile	Mon Sep 16 16:58:41 2013	(r327417)
+++ head/irc/ircd-ratbox/Makefile	Mon Sep 16 17:03:42 2013	(r327418)
@@ -99,7 +99,8 @@ PLIST_SUB+=		SERVICES="@comment "
 .endif
 
 .if ${PORT_OPTIONS:MSHORTCUTS}
-USE_PERL5_BUILD=	yes
+USES+=			perl5
+USE_PERL5=		build
 PLIST_SUB+=		SHORTCUTS=""
 .else
 PLIST_SUB+=		SHORTCUTS="@comment "

Modified: head/irc/ircservices/Makefile
==============================================================================
--- head/irc/ircservices/Makefile	Mon Sep 16 16:58:41 2013	(r327417)
+++ head/irc/ircservices/Makefile	Mon Sep 16 17:03:42 2013	(r327418)
@@ -15,9 +15,9 @@ MASTER_SITES=	http://www.ircservices.za.
 MAINTAINER=	bu7cher@yandex.ru
 COMMENT=	A system of IRC services for IRC networks
 
-USE_PERL5_BUILD=yes
+USES=		gmake perl5
+USE_PERL5=	build
 HAS_CONFIGURE=	yes
-USE_GMAKE=	yes
 USE_RC_SUBR=	ircservices
 
 DIST_SUBDIR=	${PORTNAME}

Modified: head/irc/irssi-devel/Makefile
==============================================================================
--- head/irc/irssi-devel/Makefile	Mon Sep 16 16:58:41 2013	(r327417)
+++ head/irc/irssi-devel/Makefile	Mon Sep 16 17:03:42 2013	(r327418)
@@ -16,9 +16,7 @@ LIB_DEPENDS=	glib-2.0:${PORTSDIR}/devel/
 CONFLICTS=	irssi-0.8*
 
 GNU_CONFIGURE=	yes
-USES=		pkgconfig
-USE_GMAKE=	yes
-WANT_PERL=	yes
+USES=		pkgconfig gmake
 
 MAN1=		irssi.1
 
@@ -40,7 +38,7 @@ CONFIGURE_ARGS+=	--disable-ssl
 .endif
 
 .if ${PORT_OPTIONS:MPERL}
-USE_PERL5=	yes
+USES+=		perl5
 CONFIGURE_ARGS+=	--with-perl-lib=site
 PLIST_SUB+=	WITH_PERL=""
 .else

Modified: head/irc/p5-POE-Component-IRC/Makefile
==============================================================================
--- head/irc/p5-POE-Component-IRC/Makefile	Mon Sep 16 16:58:41 2013	(r327417)
+++ head/irc/p5-POE-Component-IRC/Makefile	Mon Sep 16 17:03:42 2013	(r327418)
@@ -25,7 +25,8 @@ RUN_DEPENDS=	p5-POE>=1.311:${PORTSDIR}/d
 BUILD_DEPENDS:=	${RUN_DEPENDS}
 TEST_DEPENDS=	p5-Test-Differences>=0:${PORTSDIR}/devel/p5-Test-Differences
 
-PERL_CONFIGURE=	yes
+USES=		perl5
+USE_PERL5=	configure
 
 PORTEXAMPLES=	*
 

Modified: head/irc/p5-Parse-IRC/Makefile
==============================================================================
--- head/irc/p5-Parse-IRC/Makefile	Mon Sep 16 16:58:41 2013	(r327417)
+++ head/irc/p5-Parse-IRC/Makefile	Mon Sep 16 17:03:42 2013	(r327418)
@@ -13,7 +13,8 @@ COMMENT=	Parser for the IRC protocol
 LICENSE=	ART10 GPLv1
 LICENSE_COMB=	dual
 
-PERL_CONFIGURE=	yes
+USES=		perl5
+USE_PERL5=	configure
 
 MAN3=		Parse::IRC.3
 

Modified: head/irc/pisg/Makefile
==============================================================================
--- head/irc/pisg/Makefile	Mon Sep 16 16:58:41 2013	(r327417)
+++ head/irc/pisg/Makefile	Mon Sep 16 17:03:42 2013	(r327418)
@@ -9,7 +9,7 @@ MASTER_SITES=	SF
 MAINTAINER=	miwi@FreeBSD.org
 COMMENT=	A Perl IRC Statistics Generator
 
-USE_PERL5=	YES
+USES=		perl5
 NO_BUILD=	YES
 
 OPTIONS_DEFINE=	LOGCHARSET DOCS

Modified: head/irc/ratbox-services/Makefile
==============================================================================
--- head/irc/ratbox-services/Makefile	Mon Sep 16 16:58:41 2013	(r327417)
+++ head/irc/ratbox-services/Makefile	Mon Sep 16 17:03:42 2013	(r327418)
@@ -21,12 +21,12 @@ LOGDIR?=	/var/log
 RUNDIR?=	/var/run
 DBDIR?=		/var/db/${PORTNAME}
 PERL?=		${LOCALBASE}/bin/perl
-USES=		pkgconfig
+USES=		pkgconfig perl5
 SUB_FILES=	pkg-message pkg-install
 PLIST_SUB=	LOGDIR=${LOGDIR} RUNDIR=${RUNDIR} DBDIR=${DBDIR} PERL=${PERL}
 SUB_LIST=	LOGDIR=${LOGDIR} RUNDIR=${RUNDIR} DBDIR=${DBDIR} PERL=${PERL}
 
-USE_PERL5_BUILD=	yes
+USE_PERL5=	build
 GNU_CONFIGURE=	yes
 CPPFLAGS+=	-I${LOCALBASE}/include
 LDFLAGS+=	-L${LOCALBASE}/lib

Modified: head/irc/weechat-devel/Makefile
==============================================================================
--- head/irc/weechat-devel/Makefile	Mon Sep 16 16:58:41 2013	(r327417)
+++ head/irc/weechat-devel/Makefile	Mon Sep 16 17:03:42 2013	(r327418)
@@ -20,7 +20,6 @@ USE_LDCONFIG=	yes
 USES=		cmake iconv
 CMAKE_ARGS+=	-DENABLE_GUILE=no
 CFLAGS+=	-I${LOCALBASE}/include -L${LOCALBASE}/lib
-WANT_PERL=	yes
 
 LIB_DEPENDS+=	curl:${PORTSDIR}/ftp/curl \
 		gcrypt:${PORTSDIR}/security/libgcrypt
@@ -102,7 +101,7 @@ CMAKE_ARGS+=	-DENABLE_GNUTLS=no
 .endif
 
 .if ${PORT_OPTIONS:MPERL}
-USE_PERL5=	yes
+USES+=		perl5
 PLIST_SUB+=	PERL=""
 .else
 CMAKE_ARGS+=	-DENABLE_PERL=no

Modified: head/irc/weechat/Makefile
==============================================================================
--- head/irc/weechat/Makefile	Mon Sep 16 16:58:41 2013	(r327417)
+++ head/irc/weechat/Makefile	Mon Sep 16 17:03:42 2013	(r327418)
@@ -18,7 +18,6 @@ USE_LDCONFIG=	yes
 USES=		cmake iconv
 CMAKE_ARGS+=	-DENABLE_GUILE=no
 CFLAGS+=	-I${LOCALBASE}/include -L${LOCALBASE}/lib
-WANT_PERL=	yes
 
 LIB_DEPENDS+=	curl:${PORTSDIR}/ftp/curl \
 		gcrypt:${PORTSDIR}/security/libgcrypt
@@ -91,7 +90,7 @@ CMAKE_ARGS+=	-DENABLE_GNUTLS=no
 .endif
 
 .if ${PORT_OPTIONS:MPERL}
-USE_PERL5=	yes
+USES+=		perl5
 PLIST_SUB+=	PERL=""
 .else
 CMAKE_ARGS+=	-DENABLE_PERL=no



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