From owner-svn-ports-head@FreeBSD.ORG Wed Sep 4 03:27:42 2013 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTP id 43730FCE; Wed, 4 Sep 2013 03:27:42 +0000 (UTC) (envelope-from az@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 2473F2548; Wed, 4 Sep 2013 03:27:42 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.7/8.14.7) with ESMTP id r843RgW6039248; Wed, 4 Sep 2013 03:27:42 GMT (envelope-from az@svn.freebsd.org) Received: (from az@localhost) by svn.freebsd.org (8.14.7/8.14.5/Submit) id r843Rccl039220; Wed, 4 Sep 2013 03:27:38 GMT (envelope-from az@svn.freebsd.org) Message-Id: <201309040327.r843Rccl039220@svn.freebsd.org> From: Andrej Zverev Date: Wed, 4 Sep 2013 03:27:38 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r326245 - in head/net-mgmt: aspathtree check_mysql_health flowviewer ipcalc nagios-check_mysql_slave nagios-check_netsnmp nagiosgraph nsca nsca27 p5-AnyEvent-SNMP p5-FusionInventory-Age... X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 04 Sep 2013 03:27:42 -0000 Author: az Date: Wed Sep 4 03:27:37 2013 New Revision: 326245 URL: http://svnweb.freebsd.org/changeset/ports/326245 Log: - convert to the new perl5 framework Approved by: portmgr (bapt@, blanket) Modified: head/net-mgmt/aspathtree/Makefile head/net-mgmt/check_mysql_health/Makefile (contents, props changed) head/net-mgmt/flowviewer/Makefile (contents, props changed) head/net-mgmt/ipcalc/Makefile (contents, props changed) head/net-mgmt/nagios-check_mysql_slave/Makefile (contents, props changed) head/net-mgmt/nagios-check_netsnmp/Makefile (contents, props changed) head/net-mgmt/nagiosgraph/Makefile (contents, props changed) head/net-mgmt/nsca/Makefile (contents, props changed) head/net-mgmt/nsca27/Makefile (contents, props changed) head/net-mgmt/p5-AnyEvent-SNMP/Makefile (contents, props changed) head/net-mgmt/p5-FusionInventory-Agent-Task-SNMPQuery/Makefile head/net-mgmt/p5-Nagios-Plugin-LDAP/Makefile (contents, props changed) head/net-mgmt/p5-Net-CIDR/Makefile head/net-mgmt/p5-Net-IPAddress/Makefile head/net-mgmt/p5-Net-SNMP-Util/Makefile (contents, props changed) head/net-mgmt/p5-Telnet-Cisco/Makefile (contents, props changed) head/net-mgmt/p5-Xymon-Client/Makefile (contents, props changed) head/net-mgmt/p5-jmx4perl/Makefile head/net-mgmt/routers2/Makefile (contents, props changed) Modified: head/net-mgmt/aspathtree/Makefile ============================================================================== --- head/net-mgmt/aspathtree/Makefile Wed Sep 4 03:24:02 2013 (r326244) +++ head/net-mgmt/aspathtree/Makefile Wed Sep 4 03:27:37 2013 (r326245) @@ -18,7 +18,7 @@ WRKSRC= ${WRKDIR}/ASpath-tree-v${PORTV RESTRICTED= not redistributable, license agreement required NO_BUILD= yes -USE_PERL5= yes +USES= perl5 SCRIPTS_ENV+= PERL5=${PERL5} SUB_FILES= pkg-message CONFIG_FILES= ASpath-tree.config Modified: head/net-mgmt/check_mysql_health/Makefile ============================================================================== --- head/net-mgmt/check_mysql_health/Makefile Wed Sep 4 03:24:02 2013 (r326244) +++ head/net-mgmt/check_mysql_health/Makefile Wed Sep 4 03:27:37 2013 (r326245) @@ -26,7 +26,7 @@ CONFIGURE_ARGS= --with-statefiles-dir=${ --libexecdir=${PREFIX}/libexec/nagios \ --with-perl=${PERL} -USE_PERL5= yes +USES= perl5 NAGIOSUSER?= nagios NAGIOSGROUP?= nagios Modified: head/net-mgmt/flowviewer/Makefile ============================================================================== --- head/net-mgmt/flowviewer/Makefile Wed Sep 4 03:24:02 2013 (r326244) +++ head/net-mgmt/flowviewer/Makefile Wed Sep 4 03:27:37 2013 (r326245) @@ -29,7 +29,7 @@ SUB_LIST+= "FLOWVIEWERDIR=${FLOWVIEWERDI "PKGNAME=${PKGNAME}" SUB_FILES= pkg-message -USE_PERL5= yes +USES= perl5 NO_BUILD= yes PORTDOCS= README Modified: head/net-mgmt/ipcalc/Makefile ============================================================================== --- head/net-mgmt/ipcalc/Makefile Wed Sep 4 03:24:02 2013 (r326244) +++ head/net-mgmt/ipcalc/Makefile Wed Sep 4 03:27:37 2013 (r326245) @@ -16,7 +16,7 @@ COMMENT= IP Calculator PLIST_FILES= bin/ipcalc NO_BUILD= yes -USE_PERL5= yes +USES= perl5 do-install: ${INSTALL_SCRIPT} ${WRKSRC}/${PORTNAME} ${PREFIX}/bin/${PORTNAME} Modified: head/net-mgmt/nagios-check_mysql_slave/Makefile ============================================================================== --- head/net-mgmt/nagios-check_mysql_slave/Makefile Wed Sep 4 03:24:02 2013 (r326244) +++ head/net-mgmt/nagios-check_mysql_slave/Makefile Wed Sep 4 03:27:37 2013 (r326245) @@ -23,7 +23,8 @@ RUN_DEPENDS= p5-DBI>=1.60.7:${PORTSDIR}/ PORTSCOUT= ignore:1 NO_BUILD= yes -USE_PERL5_RUN= yes +USES= perl5 +USE_PERL5= run DOC_FILES= check_mysql_slave.html check_mysql_slave.pod do-install: Modified: head/net-mgmt/nagios-check_netsnmp/Makefile ============================================================================== --- head/net-mgmt/nagios-check_netsnmp/Makefile Wed Sep 4 03:24:02 2013 (r326244) +++ head/net-mgmt/nagios-check_netsnmp/Makefile Wed Sep 4 03:27:37 2013 (r326245) @@ -18,7 +18,8 @@ COMMENT= Nagios plug-in to get some comm RUN_DEPENDS= ${LOCALBASE}/libexec/nagios/utils.pm:${PORTSDIR}/net-mgmt/nagios-plugins \ p5-Net-SNMP>=0:${PORTSDIR}/net-mgmt/p5-Net-SNMP -USE_PERL5_RUN= yes +USES= perl5 +USE_PERL5= run NO_BUILD= yes PLIST_FILES= libexec/nagios/check_netsnmp %%DOCSDIR%%/check_netsnmp.html PLIST_DIRS= %%DOCSDIR%% Modified: head/net-mgmt/nagiosgraph/Makefile ============================================================================== --- head/net-mgmt/nagiosgraph/Makefile Wed Sep 4 03:24:02 2013 (r326244) +++ head/net-mgmt/nagiosgraph/Makefile Wed Sep 4 03:27:37 2013 (r326245) @@ -17,7 +17,8 @@ COMMENT= Generate rrdtool\'s graphs by p RUN_DEPENDS= ${LOCALBASE}/bin/nagios:${PORTSDIR}/net-mgmt/nagios \ rrdtool>=0:${PORTSDIR}/databases/rrdtool -USE_PERL5_RUN= yes +USES= perl5 +USE_PERL5= run NO_BUILD= yes PORTDOCS= AUTHORS CHANGELOG INSTALL README TODO Modified: head/net-mgmt/nsca/Makefile ============================================================================== --- head/net-mgmt/nsca/Makefile Wed Sep 4 03:24:02 2013 (r326244) +++ head/net-mgmt/nsca/Makefile Wed Sep 4 03:27:37 2013 (r326245) @@ -30,7 +30,7 @@ CONFLICTS= nsca-client-2.7.* .endif GNU_CONFIGURE= yes -USE_PERL5= yes +USES= perl5 CONFIGURE_ARGS= --prefix=${PREFIX} --localstatedir=/var/spool/nagios DOCSDIR?= ${PREFIX}/share/doc/${PORTNAME}${PKGNAMESUFFIX} Modified: head/net-mgmt/nsca27/Makefile ============================================================================== --- head/net-mgmt/nsca27/Makefile Wed Sep 4 03:24:02 2013 (r326244) +++ head/net-mgmt/nsca27/Makefile Wed Sep 4 03:27:37 2013 (r326245) @@ -30,7 +30,7 @@ CONFLICTS= nsca-client-2.9.* .endif GNU_CONFIGURE= yes -USE_PERL5= yes +USES= perl5 CONFIGURE_ARGS= --prefix=${PREFIX} --localstatedir=/var/spool/nagios DOCSDIR?= ${PREFIX}/share/doc/${PORTNAME}${PKGNAMESUFFIX} Modified: head/net-mgmt/p5-AnyEvent-SNMP/Makefile ============================================================================== --- head/net-mgmt/p5-AnyEvent-SNMP/Makefile Wed Sep 4 03:24:02 2013 (r326244) +++ head/net-mgmt/p5-AnyEvent-SNMP/Makefile Wed Sep 4 03:27:37 2013 (r326245) @@ -19,7 +19,8 @@ RUN_DEPENDS= p5-AnyEvent>=5.23:${PORTSDI p5-common-sense>=3.4:${PORTSDIR}/devel/p5-common-sense BUILD_DEPENDS:= ${RUN_DEPENDS} -PERL_CONFIGURE= YES +USES= perl5 +USE_PERL5= configure MAN3= AnyEvent::SNMP.3 Modified: head/net-mgmt/p5-FusionInventory-Agent-Task-SNMPQuery/Makefile ============================================================================== --- head/net-mgmt/p5-FusionInventory-Agent-Task-SNMPQuery/Makefile Wed Sep 4 03:24:02 2013 (r326244) +++ head/net-mgmt/p5-FusionInventory-Agent-Task-SNMPQuery/Makefile Wed Sep 4 03:27:37 2013 (r326245) @@ -20,6 +20,7 @@ BUILD_DEPENDS= p5-FusionInventory-Agent> p5-XML-Simple>=0:${PORTSDIR}/textproc/p5-XML-Simple RUN_DEPENDS:= ${BUILD_DEPENDS} -PERL_CONFIGURE= yes +USES= perl5 +USE_PERL5= configure .include Modified: head/net-mgmt/p5-Nagios-Plugin-LDAP/Makefile ============================================================================== --- head/net-mgmt/p5-Nagios-Plugin-LDAP/Makefile Wed Sep 4 03:24:02 2013 (r326244) +++ head/net-mgmt/p5-Nagios-Plugin-LDAP/Makefile Wed Sep 4 03:27:37 2013 (r326245) @@ -14,7 +14,8 @@ PKGNAMEPREFIX= p5- MAINTAINER= avk@vl.ru COMMENT= Nagios plugin to observe LDAP -PERL_CONFIGURE= yes +USES= perl5 +USE_PERL5= configure BUILD_DEPENDS= p5-perl-ldap>=0:${PORTSDIR}/net/p5-perl-ldap \ p5-Nagios-Plugin>=0:${PORTSDIR}/net-mgmt/p5-Nagios-Plugin \ Modified: head/net-mgmt/p5-Net-CIDR/Makefile ============================================================================== --- head/net-mgmt/p5-Net-CIDR/Makefile Wed Sep 4 03:24:02 2013 (r326244) +++ head/net-mgmt/p5-Net-CIDR/Makefile Wed Sep 4 03:27:37 2013 (r326245) @@ -9,7 +9,8 @@ PKGNAMEPREFIX= p5- MAINTAINER= jadawin@FreeBSD.org COMMENT= Perl module to manipulate IPv4/IPv6 netblocks in CIDR notation -PERL_CONFIGURE= yes +USES= perl5 +USE_PERL5= configure MAN3= Net::CIDR.3 Modified: head/net-mgmt/p5-Net-IPAddress/Makefile ============================================================================== --- head/net-mgmt/p5-Net-IPAddress/Makefile Wed Sep 4 03:24:02 2013 (r326244) +++ head/net-mgmt/p5-Net-IPAddress/Makefile Wed Sep 4 03:27:37 2013 (r326245) @@ -11,7 +11,8 @@ PKGNAMEPREFIX= p5- MAINTAINER= ale@biancalanas.net COMMENT= Perl functions used to manipulate IP addresses, masks and FQDN's -PERL_CONFIGURE= yes +USES= perl5 +USE_PERL5= configure MAN3= Net::IPAddress.3 Modified: head/net-mgmt/p5-Net-SNMP-Util/Makefile ============================================================================== --- head/net-mgmt/p5-Net-SNMP-Util/Makefile Wed Sep 4 03:24:02 2013 (r326244) +++ head/net-mgmt/p5-Net-SNMP-Util/Makefile Wed Sep 4 03:27:37 2013 (r326245) @@ -18,7 +18,8 @@ COMMENT= Utility functions for Net::SNMP RUN_DEPENDS= p5-Net-SNMP>=0:${PORTSDIR}/net-mgmt/p5-Net-SNMP \ p5-Scalar-List-Utils>=0:${PORTSDIR}/lang/p5-Scalar-List-Utils -PERL_CONFIGURE= yes +USES= perl5 +USE_PERL5= configure MAN3= Net::SNMP::Util.3 Net::SNMP::Util::OID.3 Net::SNMP::Util::TC.3 Modified: head/net-mgmt/p5-Telnet-Cisco/Makefile ============================================================================== --- head/net-mgmt/p5-Telnet-Cisco/Makefile Wed Sep 4 03:24:02 2013 (r326244) +++ head/net-mgmt/p5-Telnet-Cisco/Makefile Wed Sep 4 03:27:37 2013 (r326245) @@ -18,7 +18,8 @@ COMMENT= Perl5 module to telnet to Cisco RUN_DEPENDS= p5-Net-Telnet>=3.02:${PORTSDIR}/net/p5-Net-Telnet \ p5-Term-ReadKey>=2:${PORTSDIR}/devel/p5-Term-ReadKey -PERL_CONFIGURE= yes +USES= perl5 +USE_PERL5= configure MAN3= Net::Telnet::Cisco.3 Modified: head/net-mgmt/p5-Xymon-Client/Makefile ============================================================================== --- head/net-mgmt/p5-Xymon-Client/Makefile Wed Sep 4 03:24:02 2013 (r326244) +++ head/net-mgmt/p5-Xymon-Client/Makefile Wed Sep 4 03:27:37 2013 (r326245) @@ -14,7 +14,8 @@ PKGNAMEPREFIX= p5- MAINTAINER= gslin@gslin.org COMMENT= Interface to xymon/hobbit client -PERL_CONFIGURE= yes +USES= perl5 +USE_PERL5= configure MAN3= Xymon::Client.3 Modified: head/net-mgmt/p5-jmx4perl/Makefile ============================================================================== --- head/net-mgmt/p5-jmx4perl/Makefile Wed Sep 4 03:24:02 2013 (r326244) +++ head/net-mgmt/p5-jmx4perl/Makefile Wed Sep 4 03:27:37 2013 (r326245) @@ -38,7 +38,8 @@ RUN_DEPENDS= p5-Archive-Zip>=0:${PORTSDI p5-libwww>=0:${PORTSDIR}/www/p5-libwww BUILD_DEPENDS:= ${RUN_DEPENDS} -PERL_MODBUILD= yes +USES= perl5 +USE_PERL5= modbuild MAN1 = cacti_jmx4perl.1 \ check_jmx4perl.1 \ Modified: head/net-mgmt/routers2/Makefile ============================================================================== --- head/net-mgmt/routers2/Makefile Wed Sep 4 03:24:02 2013 (r326244) +++ head/net-mgmt/routers2/Makefile Wed Sep 4 03:27:37 2013 (r326245) @@ -28,7 +28,7 @@ RUN_DEPENDS= p5-Convert-ASN1>=0:${PORTSD WRKSRC= ${WRKDIR}/${PORTNAME}-v${PORTVERSION} -USE_PERL5= YES +USES= perl5 NO_BUILD= YES