summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authoraz <az@FreeBSD.org>2013-09-16 17:03:42 +0000
committeraz <az@FreeBSD.org>2013-09-16 17:03:42 +0000
commit07673ea56e79850a055955863f379793fb272d54 (patch)
tree9b94453d2ae9c02c16c1562358f70fdbdeba9e53
parente727b45488cd2ddb6cec7ed27719fb23fb0b606a (diff)
downloadFreeBSD-ports-07673ea56e79850a055955863f379793fb272d54.zip
FreeBSD-ports-07673ea56e79850a055955863f379793fb272d54.tar.gz
- convert to the new perl5 framework
- convert USE_GMAKE to Uses Approved by: portmgr (bapt@, blanket)
-rw-r--r--databases/mysql56-server/Makefile3
-rw-r--r--databases/mysqltuner/Makefile3
-rw-r--r--databases/p5-DBZ_File/Makefile3
-rw-r--r--databases/rrdtool10/Makefile3
-rw-r--r--databases/slony1v2/Makefile5
-rw-r--r--databases/tarantool/Makefile4
-rw-r--r--irc/anope/Makefile4
-rw-r--r--irc/bitchx/Makefile4
-rw-r--r--irc/epic5/Makefile3
-rw-r--r--irc/inspircd12/Makefile4
-rw-r--r--irc/ircd-ratbox/Makefile3
-rw-r--r--irc/ircservices/Makefile4
-rw-r--r--irc/irssi-devel/Makefile6
-rw-r--r--irc/p5-POE-Component-IRC/Makefile3
-rw-r--r--irc/p5-Parse-IRC/Makefile3
-rw-r--r--irc/pisg/Makefile2
-rw-r--r--irc/ratbox-services/Makefile4
-rw-r--r--irc/weechat-devel/Makefile3
-rw-r--r--irc/weechat/Makefile3
19 files changed, 32 insertions, 35 deletions
diff --git a/databases/mysql56-server/Makefile b/databases/mysql56-server/Makefile
index 6ad38cd..4dd1fd1 100644
--- a/databases/mysql56-server/Makefile
+++ b/databases/mysql56-server/Makefile
@@ -42,7 +42,8 @@ CMAKE_ARGS+= -DINSTALL_DOCDIR="share/doc/mysql" \
USE_MYSQL= yes
WANT_MYSQL_VER= 56
-USE_PERL5_RUN= yes
+USES+= perl5
+USE_PERL5= run
LATEST_LINK= mysql56-server
diff --git a/databases/mysqltuner/Makefile b/databases/mysqltuner/Makefile
index 6457c5d..729e78f 100644
--- a/databases/mysqltuner/Makefile
+++ b/databases/mysqltuner/Makefile
@@ -17,7 +17,8 @@ COMMENT= A Script Assist You with MySQL Configuration
LICENSE= GPLv3
FETCH_ARGS= -pRr
-USE_PERL5= yes
+
+USES= perl5
NO_BUILD= yes
PLIST_FILES= bin/${PORTNAME}.pl
diff --git a/databases/p5-DBZ_File/Makefile b/databases/p5-DBZ_File/Makefile
index 817aa1d..a324184 100644
--- a/databases/p5-DBZ_File/Makefile
+++ b/databases/p5-DBZ_File/Makefile
@@ -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
diff --git a/databases/rrdtool10/Makefile b/databases/rrdtool10/Makefile
index bfc728d..4012961 100644
--- a/databases/rrdtool10/Makefile
+++ b/databases/rrdtool10/Makefile
@@ -10,13 +10,12 @@ MASTER_SITES= http://oss.oetiker.ch/rrdtool/pub/rrdtool-1.0.x/
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 \
diff --git a/databases/slony1v2/Makefile b/databases/slony1v2/Makefile
index 7460b91..fae3e91 100644
--- a/databases/slony1v2/Makefile
+++ b/databases/slony1v2/Makefile
@@ -16,9 +16,8 @@ BUILD_DEPENDS= ${LOCALBASE}/bin/flex:${PORTSDIR}/textproc/flex \
${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/flex
.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
diff --git a/databases/tarantool/Makefile b/databases/tarantool/Makefile
index a2dbcb3..52d69bb 100644
--- a/databases/tarantool/Makefile
+++ b/databases/tarantool/Makefile
@@ -13,11 +13,9 @@ COMMENT= High performance key/value storage server
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
diff --git a/irc/anope/Makefile b/irc/anope/Makefile
index 5983f05..f1afe19 100644
--- a/irc/anope/Makefile
+++ b/irc/anope/Makefile
@@ -9,14 +9,14 @@ MASTER_SITES= SF/${PORTNAME}/${PORTNAME}-stable/Anope%20${PORTVERSION}
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 \
diff --git a/irc/bitchx/Makefile b/irc/bitchx/Makefile
index 922204d..ff76e74 100644
--- a/irc/bitchx/Makefile
+++ b/irc/bitchx/Makefile
@@ -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" \
diff --git a/irc/epic5/Makefile b/irc/epic5/Makefile
index ba8ca2f..cc2796d 100644
--- a/irc/epic5/Makefile
+++ b/irc/epic5/Makefile
@@ -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
diff --git a/irc/inspircd12/Makefile b/irc/inspircd12/Makefile
index 3eea964..1ad8b40 100644
--- a/irc/inspircd12/Makefile
+++ b/irc/inspircd12/Makefile
@@ -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} \
diff --git a/irc/ircd-ratbox/Makefile b/irc/ircd-ratbox/Makefile
index 717a1c8..cf5097a 100644
--- a/irc/ircd-ratbox/Makefile
+++ b/irc/ircd-ratbox/Makefile
@@ -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 "
diff --git a/irc/ircservices/Makefile b/irc/ircservices/Makefile
index 7250bfe..14934d3 100644
--- a/irc/ircservices/Makefile
+++ b/irc/ircservices/Makefile
@@ -15,9 +15,9 @@ MASTER_SITES= http://www.ircservices.za.net/download/ \
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}
diff --git a/irc/irssi-devel/Makefile b/irc/irssi-devel/Makefile
index eb66863..9e14055 100644
--- a/irc/irssi-devel/Makefile
+++ b/irc/irssi-devel/Makefile
@@ -16,9 +16,7 @@ LIB_DEPENDS= glib-2.0:${PORTSDIR}/devel/glib20
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
diff --git a/irc/p5-POE-Component-IRC/Makefile b/irc/p5-POE-Component-IRC/Makefile
index fe012a7..5d03743 100644
--- a/irc/p5-POE-Component-IRC/Makefile
+++ b/irc/p5-POE-Component-IRC/Makefile
@@ -25,7 +25,8 @@ RUN_DEPENDS= p5-POE>=1.311:${PORTSDIR}/devel/p5-POE \
BUILD_DEPENDS:= ${RUN_DEPENDS}
TEST_DEPENDS= p5-Test-Differences>=0:${PORTSDIR}/devel/p5-Test-Differences
-PERL_CONFIGURE= yes
+USES= perl5
+USE_PERL5= configure
PORTEXAMPLES= *
diff --git a/irc/p5-Parse-IRC/Makefile b/irc/p5-Parse-IRC/Makefile
index 48f468e..a11e9cc 100644
--- a/irc/p5-Parse-IRC/Makefile
+++ b/irc/p5-Parse-IRC/Makefile
@@ -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
diff --git a/irc/pisg/Makefile b/irc/pisg/Makefile
index 52e4504..ad49144 100644
--- a/irc/pisg/Makefile
+++ b/irc/pisg/Makefile
@@ -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
diff --git a/irc/ratbox-services/Makefile b/irc/ratbox-services/Makefile
index 6ed3960..0c66b8a 100644
--- a/irc/ratbox-services/Makefile
+++ b/irc/ratbox-services/Makefile
@@ -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
diff --git a/irc/weechat-devel/Makefile b/irc/weechat-devel/Makefile
index 602ce6b..8f777bc 100644
--- a/irc/weechat-devel/Makefile
+++ b/irc/weechat-devel/Makefile
@@ -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
diff --git a/irc/weechat/Makefile b/irc/weechat/Makefile
index 48b73b8..f4895f7 100644
--- a/irc/weechat/Makefile
+++ b/irc/weechat/Makefile
@@ -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
OpenPOWER on IntegriCloud