ports/54368: update devel/p5-File-Spec

Mathieu Arnold m at absolight.net
Fri Jul 11 12:50:20 UTC 2003


>Number:         54368
>Category:       ports
>Synopsis:       update devel/p5-File-Spec
>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 Jul 11 05:50:18 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 at aragorn.reaumur.absolight.net:/usr/obj/usr/src/sys/ARAGORN i386

>Description:
Update devel/p5-File-Spec to 0.84
>How-To-Repeat:
>Fix:

I've removed the patch and replaced it with a CONFIGURE_ARGS directive.
I've removed the restriction on PERL_VER because it adds things even to the
File::Spec which comes from perl 5.8.0 (but it's the version that should be
shipped with perl 5.8.1)

--- p5-File-Spec-0.84.diff begins here ---
Index: Makefile
===================================================================
RCS file: /home/ncvs/ports/devel/p5-File-Spec/Makefile,v
retrieving revision 1.11
diff -u -r1.11 Makefile
--- Makefile	7 Mar 2003 06:00:56 -0000	1.11
+++ Makefile	11 Jul 2003 12:44:35 -0000
@@ -6,30 +6,26 @@
 #
 
 PORTNAME=	File-Spec
-PORTVERSION=	0.82
+PORTVERSION=	0.84
 CATEGORIES=	devel perl5
 MASTER_SITES=	${MASTER_SITE_PERL_CPAN}
-MASTER_SITE_SUBDIR=	File
+MASTER_SITE_SUBDIR=	File/KWILLIAMS
 PKGNAMEPREFIX=	p5-
 
 MAINTAINER=	dburr at FreeBSD.ORG
 COMMENT=	A Perl module for portably manipulating file specifications
 
 PERL_CONFIGURE=	yes
+CONFIGURE_ARGS+=	INSTALLDIRS='site'
 
 MAN3=		File::Spec.3 \
+		File::Spec::Cygwin.3 \
+		File::Spec::Epoc.3 \
 		File::Spec::Functions.3 \
 		File::Spec::Mac.3 \
 		File::Spec::OS2.3 \
 		File::Spec::Unix.3 \
 		File::Spec::VMS.3 \
 		File::Spec::Win32.3
-MAN3PREFIX=	${PREFIX}/lib/perl5/${PERL_VERSION}
 
-.include <bsd.port.pre.mk>
-
-.if ${PERL_LEVEL} > 500600
-IGNORE=		This port is for perl 5.6.0 and under only.
-.endif
-
-.include <bsd.port.post.mk>
+.include <bsd.port.mk>
Index: distinfo
===================================================================
RCS file: /home/ncvs/ports/devel/p5-File-Spec/distinfo,v
retrieving revision 1.4
diff -u -r1.4 distinfo
--- distinfo	25 Apr 2002 10:47:38 -0000	1.4
+++ distinfo	11 Jul 2003 12:44:35 -0000
@@ -1 +1 @@
-MD5 (File-Spec-0.82.tar.gz) = df27080f675cdd6299c4f6b87ea859bd
+MD5 (File-Spec-0.84.tar.gz) = 2fc4e1c89b47dd95eb03b6ca508e4e25
Index: pkg-plist
===================================================================
RCS file: /home/ncvs/ports/devel/p5-File-Spec/pkg-plist,v
retrieving revision 1.4
diff -u -r1.4 pkg-plist
--- pkg-plist	25 Apr 2002 10:47:38 -0000	1.4
+++ pkg-plist	11 Jul 2003 12:44:35 -0000
@@ -1,12 +1,14 @@
-lib/perl5/site_perl/%%PERL_VER%%/%%PERL_ARCH%%/auto/File/Spec/.packlist
-lib/perl5/site_perl/%%PERL_VER%%/File/Spec/Functions.pm
-lib/perl5/site_perl/%%PERL_VER%%/File/Spec/Mac.pm
-lib/perl5/site_perl/%%PERL_VER%%/File/Spec/OS2.pm
-lib/perl5/site_perl/%%PERL_VER%%/File/Spec/Unix.pm
-lib/perl5/site_perl/%%PERL_VER%%/File/Spec/VMS.pm
-lib/perl5/site_perl/%%PERL_VER%%/File/Spec/Win32.pm
-lib/perl5/site_perl/%%PERL_VER%%/File/Spec.pm
- at dirrm lib/perl5/site_perl/%%PERL_VER%%/%%PERL_ARCH%%/auto/File/Spec
- at dirrm lib/perl5/site_perl/%%PERL_VER%%/File/Spec
- at unexec rmdir %D/lib/perl5/site_perl/%%PERL_VER%%/%%PERL_ARCH%%/auto/File 2>/dev/null || true
- at unexec rmdir %D/lib/perl5/site_perl/%%PERL_VER%%/File 2>/dev/null || true
+%%SITE_PERL%%/File/Spec.pm
+%%SITE_PERL%%/File/Spec/Cygwin.pm
+%%SITE_PERL%%/File/Spec/Epoc.pm
+%%SITE_PERL%%/File/Spec/Functions.pm
+%%SITE_PERL%%/File/Spec/Mac.pm
+%%SITE_PERL%%/File/Spec/OS2.pm
+%%SITE_PERL%%/File/Spec/Unix.pm
+%%SITE_PERL%%/File/Spec/VMS.pm
+%%SITE_PERL%%/File/Spec/Win32.pm
+%%SITE_PERL%%/%%PERL_ARCH%%/auto/File/Spec/.packlist
+ at dirrm %%SITE_PERL%%/%%PERL_ARCH%%/auto/File/Spec
+ at unexec rmdir %D/%%SITE_PERL%%/%%PERL_ARCH%%/auto/File 2>/dev/null || true
+ at dirrm %%SITE_PERL%%/File/Spec
+ at unexec rmdir %D/%%SITE_PERL%%/File 2>/dev/null || true
Index: files/patch-Makefile.PL
===================================================================
RCS file: files/patch-Makefile.PL
diff -N files/patch-Makefile.PL
--- files/patch-Makefile.PL	25 Apr 2002 15:37:29 -0000	1.1
+++ /dev/null	1 Jan 1970 00:00:00 -0000
@@ -1,14 +0,0 @@
-
-$FreeBSD: ports/devel/p5-File-Spec/files/patch-Makefile.PL,v 1.1 2002/04/25 15:37:29 sobomax Exp $
-
---- Makefile.PL.orig	Sun Jun 25 19:02:43 2000
-+++ Makefile.PL	Thu Apr 25 15:20:32 2002
-@@ -7,7 +7,7 @@
-     'LIBS'          => [''],   # e.g., '-lm' 
-     'DEFINE'        => '',     # e.g., '-DHAVE_SOMETHING' 
-     'INC'           => '',     # e.g., '-I/usr/include/other' 
--    'INSTALLDIRS'   => 'perl', # 'perl' makes it replace std modules
-+#    'INSTALLDIRS'   => 'perl', # 'perl' makes it replace std modules
- #    'PM'	=> {'Spec.pm'	=> '$(INST_LIBDIR)/File/Spec.pm',
- #    			'OS2.pm'	=> '$(INST_LIBDIR)/File/Spec/OS2.pm',
- #    			'Win32.pm'	=> '$(INST_LIBDIR)/File/Spec/Win32.pm',
--- p5-File-Spec-0.84.diff ends here ---


>Release-Note:
>Audit-Trail:
>Unformatted:



More information about the freebsd-ports-bugs mailing list