From owner-svn-ports-head@FreeBSD.ORG Wed Sep 11 17:07:24 2013 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTP id 89B4DCF2; Wed, 11 Sep 2013 17:07:24 +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 74A332942; Wed, 11 Sep 2013 17:07:24 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.7/8.14.7) with ESMTP id r8BH7OJg091789; Wed, 11 Sep 2013 17:07:24 GMT (envelope-from az@svn.freebsd.org) Received: (from az@localhost) by svn.freebsd.org (8.14.7/8.14.5/Submit) id r8BH7Kr6091757; Wed, 11 Sep 2013 17:07:20 GMT (envelope-from az@svn.freebsd.org) Message-Id: <201309111707.r8BH7Kr6091757@svn.freebsd.org> From: Andrej Zverev Date: Wed, 11 Sep 2013 17:07:20 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r326994 - in head/security: ipfwcount libwhisker log2timeline p5-AuthCAS p5-Authen-DecHpwd p5-Authen-NTLM p5-Crypt-Enigma p5-Crypt-Loki97 p5-Crypt-NULL p5-Crypt-OpenSSL-AES p5-Crypt-TEA... 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, 11 Sep 2013 17:07:24 -0000 Author: az Date: Wed Sep 11 17:07:20 2013 New Revision: 326994 URL: http://svnweb.freebsd.org/changeset/ports/326994 Log: - convert to the new perl5 framework - trim Makefile header Approved by: portmgr (bapt@, blanket) Modified: head/security/ipfwcount/Makefile (contents, props changed) head/security/libwhisker/Makefile head/security/log2timeline/Makefile (contents, props changed) head/security/p5-AuthCAS/Makefile (contents, props changed) head/security/p5-Authen-DecHpwd/Makefile (contents, props changed) head/security/p5-Authen-NTLM/Makefile (contents, props changed) head/security/p5-Crypt-Enigma/Makefile (contents, props changed) head/security/p5-Crypt-Loki97/Makefile (contents, props changed) head/security/p5-Crypt-NULL/Makefile (contents, props changed) head/security/p5-Crypt-OpenSSL-AES/Makefile head/security/p5-Crypt-TEA/Makefile (contents, props changed) head/security/p5-Crypt-TripleDES/Makefile (contents, props changed) head/security/p5-Crypt-URandom/Makefile (contents, props changed) head/security/p5-Digest-DJB/Makefile (contents, props changed) head/security/p5-Digest-Pearson/Makefile (contents, props changed) head/security/p5-Net-Daemon-SSL/Makefile (contents, props changed) head/security/p5-Safe-Hole/Makefile head/security/pam_ldap/Makefile (contents, props changed) head/security/ssl-admin/Makefile Modified: head/security/ipfwcount/Makefile ============================================================================== --- head/security/ipfwcount/Makefile Wed Sep 11 16:52:45 2013 (r326993) +++ head/security/ipfwcount/Makefile Wed Sep 11 17:07:20 2013 (r326994) @@ -1,9 +1,5 @@ -# New ports collection makefile for: ipfwcount -# Date created: 22 February 2006 -# Whom: Robert Archer -# +# Created by: Robert Archer # $FreeBSD$ -# PORTNAME= ipfwcount PORTVERSION= 0.2.1 @@ -18,7 +14,7 @@ COMMENT= Summarise ipfw logs by counting PLIST_FILES= bin/ipfwcount MAN1= ipfwcount.1 -USE_PERL5= yes +USES= perl5 .if !defined(NOPORTDOCS) PLIST_DIRS= %%EXAMPLESDIR%% Modified: head/security/libwhisker/Makefile ============================================================================== --- head/security/libwhisker/Makefile Wed Sep 11 16:52:45 2013 (r326993) +++ head/security/libwhisker/Makefile Wed Sep 11 17:07:20 2013 (r326994) @@ -13,7 +13,7 @@ COMMENT= Perl module to create HTTP test WRKSRC= ${WRKDIR}/${PORTNAME}2-${PORTVERSION} NO_BUILD= yes -USE_PERL5= yes +USES= perl5 PLIST_FILES= ${SITE_PERL_REL}/LW2.pm Modified: head/security/log2timeline/Makefile ============================================================================== --- head/security/log2timeline/Makefile Wed Sep 11 16:52:45 2013 (r326993) +++ head/security/log2timeline/Makefile Wed Sep 11 17:07:20 2013 (r326994) @@ -1,6 +1,5 @@ # Created by: Nobutaka Mantani # $FreeBSD$ -# PORTNAME= log2timeline PORTVERSION= 0.64 @@ -39,7 +38,8 @@ BUILD_DEPENDS= p5-Archive-Zip>=0:${PORTS p5-libwww>=0:${PORTSDIR}/www/p5-libwww RUN_DEPENDS:= ${BUILD_DEPENDS} -PERL_CONFIGURE= yes +USES= perl5 +USE_PERL5= configure WRKSRC= ${WRKDIR}/${PORTNAME} MAN1= l2t_process.1 \ Modified: head/security/p5-AuthCAS/Makefile ============================================================================== --- head/security/p5-AuthCAS/Makefile Wed Sep 11 16:52:45 2013 (r326993) +++ head/security/p5-AuthCAS/Makefile Wed Sep 11 17:07:20 2013 (r326994) @@ -19,7 +19,8 @@ BUILD_DEPENDS= p5-libwww>=0:${PORTSDIR}/ RUN_DEPENDS:= ${BUILD_DEPENDS} -PERL_CONFIGURE= YES +USES= perl5 +USE_PERL5= configure MAN3= AuthCAS.3 Modified: head/security/p5-Authen-DecHpwd/Makefile ============================================================================== --- head/security/p5-Authen-DecHpwd/Makefile Wed Sep 11 16:52:45 2013 (r326993) +++ head/security/p5-Authen-DecHpwd/Makefile Wed Sep 11 17:07:20 2013 (r326994) @@ -1,9 +1,5 @@ -# New ports collection makefile for: Authen-DecHpwd -# Date created: 01 Jun 2008 -# Whom: brix@FreeBSD.org -# +# Created by: brix@FreeBSD.org # $FreeBSD$ -# PORTNAME= Authen-DecHpwd PORTVERSION= 2.006 @@ -20,7 +16,8 @@ BUILD_DEPENDS= p5-Scalar-String>=0:${POR RUN_DEPENDS:= ${BUILD_DEPENDS} LICENSE= GPLv2 -PERL_MODBUILD= yes +USES= perl5 +USE_PERL5= modbuild MAN3= Authen::DecHpwd.3 Modified: head/security/p5-Authen-NTLM/Makefile ============================================================================== --- head/security/p5-Authen-NTLM/Makefile Wed Sep 11 16:52:45 2013 (r326993) +++ head/security/p5-Authen-NTLM/Makefile Wed Sep 11 17:07:20 2013 (r326994) @@ -1,8 +1,4 @@ -# New ports collection makefile for: p5-Authen-NTLM -# Date created: June 07 2006 -# Whom: James Thomason -# -# +# Created by: James Thomason # $FreeBSD$ PORTNAME= Authen-NTLM @@ -18,7 +14,8 @@ COMMENT= An NTLM authentication module BUILD_DEPENDS= p5-Digest-HMAC>=0:${PORTSDIR}/security/p5-Digest-HMAC RUN_DEPENDS= p5-Digest-HMAC>=0:${PORTSDIR}/security/p5-Digest-HMAC -PERL_CONFIGURE= yes +USES= perl5 +USE_PERL5= configure MAN3= Authen::NTLM.3 Modified: head/security/p5-Crypt-Enigma/Makefile ============================================================================== --- head/security/p5-Crypt-Enigma/Makefile Wed Sep 11 16:52:45 2013 (r326993) +++ head/security/p5-Crypt-Enigma/Makefile Wed Sep 11 17:07:20 2013 (r326994) @@ -1,6 +1,4 @@ -# New ports collection Makefile for: p5-Crypt-Enigma -# Date created: 20 Dec 2006 -# Whom: Gabor Kovesdan +# Created by: Gabor Kovesdan # $FreeBSD$ PORTNAME= Crypt-Enigma @@ -12,7 +10,8 @@ PKGNAMEPREFIX= p5- MAINTAINER= skreuzer@FreeBSD.org COMMENT= Perl extension for the Enigma cipher -PERL_CONFIGURE= yes +USES= perl5 +USE_PERL5= configure MAN3= Crypt::Enigma.3 Modified: head/security/p5-Crypt-Loki97/Makefile ============================================================================== --- head/security/p5-Crypt-Loki97/Makefile Wed Sep 11 16:52:45 2013 (r326993) +++ head/security/p5-Crypt-Loki97/Makefile Wed Sep 11 17:07:20 2013 (r326994) @@ -1,6 +1,4 @@ -# New ports collection Makefile for: p5-Crypt-Loki97 -# Date created: 20 Dec 2006 -# Whom: Gabor Kovesdan +# Created by: Gabor Kovesdan # $FreeBSD$ PORTNAME= Crypt-Loki97 @@ -12,7 +10,8 @@ PKGNAMEPREFIX= p5- MAINTAINER= ashish@FreeBSD.org COMMENT= Perl extension for Loki97 block cipher -PERL_CONFIGURE= yes +USES= perl5 +USE_PERL5= configure MAN3= Crypt::Loki97.3 Modified: head/security/p5-Crypt-NULL/Makefile ============================================================================== --- head/security/p5-Crypt-NULL/Makefile Wed Sep 11 16:52:45 2013 (r326993) +++ head/security/p5-Crypt-NULL/Makefile Wed Sep 11 17:07:20 2013 (r326994) @@ -1,9 +1,5 @@ -# New ports collection makefile for: p5-Crypt-NULL -# Date created: 2005-08-06 -# Whom: TAKAHASHI Kaoru -# +# Created by: TAKAHASHI Kaoru # $FreeBSD$ -# PORTNAME= Crypt-NULL PORTVERSION= 1.02 @@ -14,7 +10,8 @@ PKGNAMEPREFIX= p5- MAINTAINER= kaoru@kaisei.org COMMENT= Perl implementation of the NULL encryption algorithm -PERL_CONFIGURE= yes +USES= perl5 +USE_PERL5= configure MAN3= Crypt::NULL.3 Modified: head/security/p5-Crypt-OpenSSL-AES/Makefile ============================================================================== --- head/security/p5-Crypt-OpenSSL-AES/Makefile Wed Sep 11 16:52:45 2013 (r326993) +++ head/security/p5-Crypt-OpenSSL-AES/Makefile Wed Sep 11 17:07:20 2013 (r326994) @@ -11,7 +11,8 @@ PKGNAMEPREFIX= p5- MAINTAINER= jdferrell3@yahoo.com COMMENT= A Perl wrapper around OpenSSL's AES library -PERL_CONFIGURE= yes +USES= perl5 +USE_PERL5= configure MAN3= Crypt::OpenSSL::AES.3 Modified: head/security/p5-Crypt-TEA/Makefile ============================================================================== --- head/security/p5-Crypt-TEA/Makefile Wed Sep 11 16:52:45 2013 (r326993) +++ head/security/p5-Crypt-TEA/Makefile Wed Sep 11 17:07:20 2013 (r326994) @@ -1,6 +1,4 @@ -# New ports collection Makefile for: p5-Crypt-TEA -# Date created: 18 Dec 2006 -# Whom: Gabor Kovesdan +# Created by: Gabor Kovesdan # $FreeBSD$ PORTNAME= Crypt-TEA @@ -12,7 +10,8 @@ PKGNAMEPREFIX= p5- MAINTAINER= skreuzer@FreeBSD.org COMMENT= Perl extension to Tiny Encryption Algorithm -PERL_CONFIGURE= yes +USES= perl5 +USE_PERL5= configure MAN3= Crypt::TEA.3 Modified: head/security/p5-Crypt-TripleDES/Makefile ============================================================================== --- head/security/p5-Crypt-TripleDES/Makefile Wed Sep 11 16:52:45 2013 (r326993) +++ head/security/p5-Crypt-TripleDES/Makefile Wed Sep 11 17:07:20 2013 (r326994) @@ -1,9 +1,5 @@ -# New ports collection makefile for: Crypt-TripleDES -# Date created: Wed Jan 3 16:20:30 2001 -# Whom: will -# +# Created by: will # $FreeBSD$ -# PORTNAME= Crypt-TripleDES PORTVERSION= 0.24 @@ -14,7 +10,8 @@ PKGNAMEPREFIX= p5- MAINTAINER= skreuzer@FreeBSD.org COMMENT= Perl module implementing the Triple-DES cipher -PERL_CONFIGURE= yes +USES= perl5 +USE_PERL5= configure MAN3= Crypt::TripleDES.3 Modified: head/security/p5-Crypt-URandom/Makefile ============================================================================== --- head/security/p5-Crypt-URandom/Makefile Wed Sep 11 16:52:45 2013 (r326993) +++ head/security/p5-Crypt-URandom/Makefile Wed Sep 11 17:07:20 2013 (r326994) @@ -9,7 +9,8 @@ PKGNAMEPREFIX= p5- MAINTAINER= kuriyama@FreeBSD.org COMMENT= Perl extension to provide non blocking randomness -PERL_CONFIGURE= yes +USES= perl5 +USE_PERL5= configure MAN3= Crypt::URandom.3 Modified: head/security/p5-Digest-DJB/Makefile ============================================================================== --- head/security/p5-Digest-DJB/Makefile Wed Sep 11 16:52:45 2013 (r326993) +++ head/security/p5-Digest-DJB/Makefile Wed Sep 11 17:07:20 2013 (r326994) @@ -1,6 +1,4 @@ -# Ports collection Makefile for: p5-Digest-DJB -# Date created: 17 Dec 2005 -# Whom: Gabor Kovesdan +# Created by: Gabor Kovesdan # $FreeBSD$ PORTNAME= Digest-DJB @@ -12,7 +10,8 @@ PKGNAMEPREFIX= p5- MAINTAINER= ashish@FreeBSD.org COMMENT= Perl extension for D.J Bernstein's hash algorithm -PERL_CONFIGURE= yes +USES= perl5 +USE_PERL5= configure MAN3= Digest::DJB.3 Modified: head/security/p5-Digest-Pearson/Makefile ============================================================================== --- head/security/p5-Digest-Pearson/Makefile Wed Sep 11 16:52:45 2013 (r326993) +++ head/security/p5-Digest-Pearson/Makefile Wed Sep 11 17:07:20 2013 (r326994) @@ -1,6 +1,4 @@ -# Ports collection Makefile for: p5-Digest-Pearson -# Date created: 17 Dec 2005 -# Whom: Gabor Kovesdan +# Created by: Gabor Kovesdan # $FreeBSD$ PORTNAME= Digest-Pearson @@ -12,7 +10,8 @@ PKGNAMEPREFIX= p5- MAINTAINER= ashish@FreeBSD.org COMMENT= Perl extension for Peter K. Pearson's hash algorithm -PERL_CONFIGURE= yes +USES= perl5 +USE_PERL5= configure MAN3= Digest::Pearson.3 Modified: head/security/p5-Net-Daemon-SSL/Makefile ============================================================================== --- head/security/p5-Net-Daemon-SSL/Makefile Wed Sep 11 16:52:45 2013 (r326993) +++ head/security/p5-Net-Daemon-SSL/Makefile Wed Sep 11 17:07:20 2013 (r326994) @@ -1,9 +1,5 @@ -# New ports collection makefile for: p5-Net-Daemon-SSL -# Date created: 25 April 2005 -# Whom: Simon Dick -# +# Created by: Simon Dick # $FreeBSD$ -# PORTNAME= Net-Daemon-SSL PORTVERSION= 1.0 @@ -14,7 +10,8 @@ PKGNAMEPREFIX= p5- MAINTAINER= simond@irrelevant.org COMMENT= Perl5 extension for portable daemons -PERL_CONFIGURE= yes +USES= perl5 +USE_PERL5= configure BUILD_DEPENDS+= p5-Net-Daemon>=0:${PORTSDIR}/net/p5-Net-Daemon \ p5-IO-Socket-SSL>=0:${PORTSDIR}/security/p5-IO-Socket-SSL Modified: head/security/p5-Safe-Hole/Makefile ============================================================================== --- head/security/p5-Safe-Hole/Makefile Wed Sep 11 16:52:45 2013 (r326993) +++ head/security/p5-Safe-Hole/Makefile Wed Sep 11 17:07:20 2013 (r326994) @@ -1,9 +1,5 @@ -# New ports collection makefile for: p5-Safe-Hole -# Date created: 3 July 2002 -# Whom: Seth Kingsley -# +# Created by: Seth Kingsley # $FreeBSD$ -# PORTNAME= Safe-Hole PORTVERSION= 0.13 @@ -14,7 +10,8 @@ PKGNAMEPREFIX= p5- MAINTAINER= sethk@meowfishies.com COMMENT= Make a hole to the original main compartment in the Safe compartment -PERL_MODBUILD= yes +USES= perl5 +USE_PERL5= modbuild MAN3= Safe::Hole.3 Modified: head/security/pam_ldap/Makefile ============================================================================== --- head/security/pam_ldap/Makefile Wed Sep 11 16:52:45 2013 (r326993) +++ head/security/pam_ldap/Makefile Wed Sep 11 17:07:20 2013 (r326994) @@ -1,9 +1,5 @@ -# New ports collection makefile for: pam_ldap -# Date created: 26 May 2001 -# Whom: Joe Clarke -# +# Created by: Joe Clarke # $FreeBSD$ -# PORTNAME= pam_ldap PORTVERSION= 1.8.6 @@ -19,7 +15,8 @@ COMMENT= A pam module for authenticating USE_GMAKE= yes GNU_CONFIGURE= yes USE_OPENLDAP= yes -USE_PERL5_BUILD=yes +USES= perl5 +USE_PERL5= build WRKSRC= ${WRKDIR}/${PORTNAME}-${PORTVERSION:S/.//g} PAM_LDAP_CONF?= ldap.conf CONFIGURE_ARGS= --with-ldap-lib=openldap \ Modified: head/security/ssl-admin/Makefile ============================================================================== --- head/security/ssl-admin/Makefile Wed Sep 11 16:52:45 2013 (r326993) +++ head/security/ssl-admin/Makefile Wed Sep 11 17:07:20 2013 (r326994) @@ -14,7 +14,8 @@ LICENSE= BSD RUN_DEPENDS= zip:${PORTSDIR}/archivers/zip -USE_PERL5_RUN= YES +USES= perl5 +USE_PERL5= run MAN1= ssl-admin.1 MAN5= ssl-admin.conf.5 SUB_FILES= pkg-message