From owner-freebsd-ports-bugs@FreeBSD.ORG Fri May 16 07:20:15 2003 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 101EA37B405 for ; Fri, 16 May 2003 07:20:15 -0700 (PDT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id B8A1E43FBD for ; Fri, 16 May 2003 07:20:12 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.12.9/8.12.9) with ESMTP id h4GEKCUp096633 for ; Fri, 16 May 2003 07:20:12 -0700 (PDT) (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.12.9/8.12.9/Submit) id h4GEKCmP096632; Fri, 16 May 2003 07:20:12 -0700 (PDT) Resent-Date: Fri, 16 May 2003 07:20:12 -0700 (PDT) Resent-Message-Id: <200305161420.h4GEKCmP096632@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-ports-bugs@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, Mathieu Arnold Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 2886037B408 for ; Fri, 16 May 2003 07:14:16 -0700 (PDT) Received: from mx3.absolight.com (mx3.absolight.net [212.43.217.9]) by mx1.FreeBSD.org (Postfix) with ESMTP id 450DE43F3F for ; Fri, 16 May 2003 07:14:15 -0700 (PDT) (envelope-from mat@aragorn.reaumur.absolight.net) Received: by mx3.absolight.com (Postfix, from userid 1007) id E68562A35; Fri, 16 May 2003 16:14:13 +0200 (CEST) Received: from aragorn.reaumur.absolight.net (aragorn.reaumur.absolight.net [212.43.217.58]) by mx3.absolight.com (Postfix) with ESMTP id A27722A07; Fri, 16 May 2003 16:14:13 +0200 (CEST) Received: by aragorn.reaumur.absolight.net (Postfix, from userid 1000) id E909286C5; Fri, 16 May 2003 16:14:12 +0200 (CEST) Message-Id: <20030516141412.E909286C5@aragorn.reaumur.absolight.net> Date: Fri, 16 May 2003 16:14:12 +0200 (CEST) From: Mathieu Arnold To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 cc: m@absolight.net cc: sheepkiller@cultdeadsheep.org Subject: ports/52330: (update) net/p5-DNS-Zone to work with all perls X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list Reply-To: Mathieu Arnold List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 16 May 2003 14:20:15 -0000 >Number: 52330 >Category: ports >Synopsis: (update) net/p5-DNS-Zone to work with all perls >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: update >Submitter-Id: current-users >Arrival-Date: Fri May 16 07:20:07 PDT 2003 >Closed-Date: >Last-Modified: >Originator: Mathieu Arnold >Release: FreeBSD 4.8-RELEASE i386 >Organization: Absolight >Environment: System: FreeBSD aragorn.reaumur.absolight.net 4.8-RELEASE FreeBSD 4.8-RELEASE #0: Thu Apr 10 13:45:07 CEST 2003 root@aragorn.reaumur.absolight.net:/usr/obj/usr/src/sys/ARAGORN i386 >Description: Yet another perl which thinks it needs perl 5.6.1, but does not. Fix WWW Site >How-To-Repeat: >Fix: --- p5-DNS-Zone-0.85.diff begins here --- Index: Makefile =================================================================== RCS file: /home/ncvs/ports/net/p5-DNS-Zone/Makefile,v retrieving revision 1.2 diff -u -b -w -r1.2 Makefile --- Makefile 2003/05/08 23:28:50 1.2 +++ Makefile 2003/05/16 14:11:46 @@ -18,7 +18,10 @@ PERL_CONFIGURE= yes -DOCSDIR= ${PREFIX}/share/doc/p5-DNS-Zone +post-patch: + ${FIND} ${WRKSRC} -name '*.pm' -o -name '*.t' -o -name '*.PL' | \ + ${XARGS} ${PERL} -pi -e '$$_="" if /^use 5/;' \ + -e '$$_="" if /(use|no) warnings/;' post-install: .if !defined(NOPORTDOCS) @@ -26,10 +29,4 @@ ${INSTALL_DATA} ${WRKSRC}/README ${DOCSDIR} .endif -.include - -.if ${PERL_LEVEL} < 500600 -IGNORE= "Perl 5.6 or newer required. Install lang/perl5 or lang/perl5.8 and try again." -.endif - -.include +.include Index: pkg-descr =================================================================== RCS file: /home/ncvs/ports/net/p5-DNS-Zone/pkg-descr,v retrieving revision 1.1 diff -u -b -w -r1.1 pkg-descr --- pkg-descr 2003/04/29 07:29:44 1.1 +++ pkg-descr 2003/05/16 14:11:46 @@ -5,5 +5,6 @@ use of the module for comprehensive zone file management. Go to http://www.zonemaster.org for further information. -WWW: http://search.cpan.org/author/WOLF/ +WWW: http://search.cpan.org/dist/DNS-Zone/ + Author: Andy Wolf Index: pkg-plist =================================================================== RCS file: /home/ncvs/ports/net/p5-DNS-Zone/pkg-plist,v retrieving revision 1.1 diff -u -b -w -r1.1 pkg-plist --- pkg-plist 2003/04/29 07:29:44 1.1 +++ pkg-plist 2003/05/16 14:11:46 @@ -1,12 +1,12 @@ -lib/perl5/site_perl/%%PERL_VER%%/mach/auto/DNS-Zone/.packlist -lib/perl5/site_perl/%%PERL_VER%%/DNS/Zone.pm -lib/perl5/site_perl/%%PERL_VER%%/DNS/Zone/File.pm -lib/perl5/site_perl/%%PERL_VER%%/DNS/Zone/Label.pm -lib/perl5/site_perl/%%PERL_VER%%/DNS/Zone/Record.pm -lib/perl5/site_perl/%%PERL_VER%%/DNS/Zone/File/Default.pm -%%PORTDOCS%%share/doc/p5-DNS-Zone/README -@dirrm lib/perl5/site_perl/%%PERL_VER%%/mach/auto/DNS-Zone -@dirrm lib/perl5/site_perl/%%PERL_VER%%/DNS/Zone/File -@dirrm lib/perl5/site_perl/%%PERL_VER%%/DNS/Zone -@unexec rmdir %D/lib/perl5/site_perl/%%PERL_VER%%/DNS 2>/dev/null || true -%%PORTDOCS%%@dirrm share/doc/p5-DNS-Zone +%%SITE_PERL%%/DNS/Zone.pm +%%SITE_PERL%%/DNS/Zone/File.pm +%%SITE_PERL%%/DNS/Zone/File/Default.pm +%%SITE_PERL%%/DNS/Zone/Label.pm +%%SITE_PERL%%/DNS/Zone/Record.pm +%%SITE_PERL%%/%%PERL_ARCH%%/auto/DNS-Zone/.packlist +%%PORTDOCS%%%%DOCSDIR%%/README +%%PORTDOCS%%@dirrm %%DOCSDIR%% +@dirrm %%SITE_PERL%%/%%PERL_ARCH%%/auto/DNS-Zone +@dirrm %%SITE_PERL%%/DNS/Zone/File +@dirrm %%SITE_PERL%%/DNS/Zone +@unexec rmdir %D/%%SITE_PERL%%/DNS 2>/dev/null || true --- p5-DNS-Zone-0.85.diff ends here --- >Release-Note: >Audit-Trail: >Unformatted: