Updated to 1.24
This commit is contained in:
parent
d0428da4de
commit
f94ae6c75f
Notes:
svn2git
2021-03-31 03:12:20 +00:00
svn path=/head/; revision=88169
8 changed files with 4 additions and 224 deletions
|
@ -6,7 +6,7 @@
|
|||
#
|
||||
|
||||
PORTNAME= PodParser
|
||||
PORTVERSION= 1.23
|
||||
PORTVERSION= 1.24
|
||||
CATEGORIES= textproc perl5
|
||||
MASTER_SITES= ${MASTER_SITE_PERL_CPAN}
|
||||
MASTER_SITE_SUBDIR= Pod
|
||||
|
@ -23,7 +23,6 @@ MAN3= Pod::Checker.3 Pod::Find.3 Pod::InputObjects.3 \
|
|||
Pod::ParseUtils.3 Pod::Parser.3 Pod::PlainText.3 Pod::Select.3 \
|
||||
Pod::Usage.3
|
||||
MAN1PREFIX= ${PREFIX}
|
||||
MAN3PREFIX= ${PREFIX}/lib/perl5/${PERL_VERSION}
|
||||
|
||||
post-patch:
|
||||
@${FIND} ${WRKSRC} -name \*.orig -exec ${RM} {} \;
|
||||
|
|
|
@ -1 +1 @@
|
|||
MD5 (PodParser-1.23.tar.gz) = 9d66b76f6c4feb18bab82fb47dfc4037
|
||||
MD5 (PodParser-1.24.tar.gz) = c3b9d9aef688b5aa8e1b1303d17c0fe0
|
||||
|
|
|
@ -1,11 +0,0 @@
|
|||
--- Makefile.PL.orig Fri Aug 11 01:41:59 2000
|
||||
+++ Makefile.PL Thu Sep 12 21:17:34 2002
|
||||
@@ -4,6 +4,8 @@
|
||||
# you can redistribute it and/or modify it under the same terms
|
||||
# as Perl itself.
|
||||
|
||||
+use Config;
|
||||
+use lib $Config{installsitelib};
|
||||
BEGIN {
|
||||
require 5.005;
|
||||
eval { require File::Spec };
|
|
@ -1,98 +0,0 @@
|
|||
diff -ur ../PodParser-1.18-clean/lib/Pod/Find.pm ./lib/Pod/Find.pm
|
||||
--- ../PodParser-1.18-clean/lib/Pod/Find.pm Fri Sep 1 08:11:39 2000
|
||||
+++ ./lib/Pod/Find.pm Sun Jun 16 12:55:40 2002
|
||||
@@ -48,7 +48,13 @@
|
||||
use strict;
|
||||
#use diagnostics;
|
||||
use Exporter;
|
||||
+
|
||||
+# Added by FreeBSD ports to make sure newer version of File::Spec is used
|
||||
+use Config;
|
||||
+use lib $Config{installsitelib}; # installsitearch will be added automatically
|
||||
+
|
||||
use File::Spec;
|
||||
+
|
||||
use File::Find;
|
||||
use Cwd;
|
||||
|
||||
diff -ur ../PodParser-1.18-clean/lib/Pod/Usage.pm ./lib/Pod/Usage.pm
|
||||
--- ../PodParser-1.18-clean/lib/Pod/Usage.pm Thu Aug 10 14:39:45 2000
|
||||
+++ ./lib/Pod/Usage.pm Sun Jun 16 12:55:18 2002
|
||||
@@ -400,6 +400,11 @@
|
||||
use Carp;
|
||||
use Config;
|
||||
use Exporter;
|
||||
+
|
||||
+# Added by FreeBSD ports to make sure newer version of File::Spec is used
|
||||
+use Config;
|
||||
+use lib $Config{installsitelib}; # installsitearch will be added automatically
|
||||
+
|
||||
use File::Spec;
|
||||
|
||||
use vars qw(@ISA @EXPORT);
|
||||
diff -ur ../PodParser-1.18-clean/t/pod/find.t ./t/pod/find.t
|
||||
--- ../PodParser-1.18-clean/t/pod/find.t Fri Sep 1 08:25:41 2000
|
||||
+++ ./t/pod/find.t Sun Jun 16 12:56:32 2002
|
||||
@@ -8,6 +8,11 @@
|
||||
BEGIN { plan tests => 4 }
|
||||
|
||||
use Pod::Find qw(pod_find pod_where);
|
||||
+
|
||||
+# Added by FreeBSD ports to make sure newer version of File::Spec is used
|
||||
+use Config;
|
||||
+use lib $Config{installsitelib}; # installsitearch will be added automatically
|
||||
+
|
||||
use File::Spec;
|
||||
|
||||
# load successful
|
||||
diff -ur ../PodParser-1.18-clean/t/pod/testcmp.pl ./t/pod/testcmp.pl
|
||||
--- ../PodParser-1.18-clean/t/pod/testcmp.pl Thu Aug 10 14:05:40 2000
|
||||
+++ ./t/pod/testcmp.pl Sun Jun 16 12:56:50 2002
|
||||
@@ -6,7 +6,13 @@
|
||||
use Carp;
|
||||
use Exporter;
|
||||
use File::Basename;
|
||||
+
|
||||
+# Added by FreeBSD ports to make sure newer version of File::Spec is used
|
||||
+use Config;
|
||||
+use lib $Config{installsitelib}; # installsitearch will be added automatically
|
||||
+
|
||||
use File::Spec;
|
||||
+
|
||||
use FileHandle;
|
||||
|
||||
@ISA = qw(Exporter);
|
||||
diff -ur ../PodParser-1.18-clean/t/pod/testp2pt.pl ./t/pod/testp2pt.pl
|
||||
--- ../PodParser-1.18-clean/t/pod/testp2pt.pl Thu Aug 10 14:05:40 2000
|
||||
+++ ./t/pod/testp2pt.pl Sun Jun 16 12:57:11 2002
|
||||
@@ -2,7 +2,13 @@
|
||||
|
||||
BEGIN {
|
||||
use File::Basename;
|
||||
+
|
||||
+ # Added by FreeBSD ports to make sure newer version of File::Spec is used
|
||||
+ use Config;
|
||||
+ use lib $Config{installsitelib}; # installsitearch will be added automatically
|
||||
+
|
||||
use File::Spec;
|
||||
+
|
||||
use Cwd qw(abs_path);
|
||||
push @INC, '..';
|
||||
my $THISDIR = abs_path(dirname $0);
|
||||
diff -ur ../PodParser-1.18-clean/t/pod/testpchk.pl ./t/pod/testpchk.pl
|
||||
--- ../PodParser-1.18-clean/t/pod/testpchk.pl Thu Aug 10 14:05:40 2000
|
||||
+++ ./t/pod/testpchk.pl Sun Jun 16 12:56:17 2002
|
||||
@@ -2,7 +2,13 @@
|
||||
|
||||
BEGIN {
|
||||
use File::Basename;
|
||||
+
|
||||
+ # Added by FreeBSD ports to make sure newer version of File::Spec is used
|
||||
+ use Config;
|
||||
+ use lib $Config{installsitelib}; # installsitearch will be added automatically
|
||||
+
|
||||
use File::Spec;
|
||||
+
|
||||
push @INC, '..';
|
||||
my $THISDIR = dirname $0;
|
||||
unshift @INC, $THISDIR;
|
|
@ -6,7 +6,7 @@
|
|||
#
|
||||
|
||||
PORTNAME= PodParser
|
||||
PORTVERSION= 1.23
|
||||
PORTVERSION= 1.24
|
||||
CATEGORIES= textproc perl5
|
||||
MASTER_SITES= ${MASTER_SITE_PERL_CPAN}
|
||||
MASTER_SITE_SUBDIR= Pod
|
||||
|
@ -23,7 +23,6 @@ MAN3= Pod::Checker.3 Pod::Find.3 Pod::InputObjects.3 \
|
|||
Pod::ParseUtils.3 Pod::Parser.3 Pod::PlainText.3 Pod::Select.3 \
|
||||
Pod::Usage.3
|
||||
MAN1PREFIX= ${PREFIX}
|
||||
MAN3PREFIX= ${PREFIX}/lib/perl5/${PERL_VERSION}
|
||||
|
||||
post-patch:
|
||||
@${FIND} ${WRKSRC} -name \*.orig -exec ${RM} {} \;
|
||||
|
|
|
@ -1 +1 @@
|
|||
MD5 (PodParser-1.23.tar.gz) = 9d66b76f6c4feb18bab82fb47dfc4037
|
||||
MD5 (PodParser-1.24.tar.gz) = c3b9d9aef688b5aa8e1b1303d17c0fe0
|
||||
|
|
|
@ -1,11 +0,0 @@
|
|||
--- Makefile.PL.orig Fri Aug 11 01:41:59 2000
|
||||
+++ Makefile.PL Thu Sep 12 21:17:34 2002
|
||||
@@ -4,6 +4,8 @@
|
||||
# you can redistribute it and/or modify it under the same terms
|
||||
# as Perl itself.
|
||||
|
||||
+use Config;
|
||||
+use lib $Config{installsitelib};
|
||||
BEGIN {
|
||||
require 5.005;
|
||||
eval { require File::Spec };
|
|
@ -1,98 +0,0 @@
|
|||
diff -ur ../PodParser-1.18-clean/lib/Pod/Find.pm ./lib/Pod/Find.pm
|
||||
--- ../PodParser-1.18-clean/lib/Pod/Find.pm Fri Sep 1 08:11:39 2000
|
||||
+++ ./lib/Pod/Find.pm Sun Jun 16 12:55:40 2002
|
||||
@@ -48,7 +48,13 @@
|
||||
use strict;
|
||||
#use diagnostics;
|
||||
use Exporter;
|
||||
+
|
||||
+# Added by FreeBSD ports to make sure newer version of File::Spec is used
|
||||
+use Config;
|
||||
+use lib $Config{installsitelib}; # installsitearch will be added automatically
|
||||
+
|
||||
use File::Spec;
|
||||
+
|
||||
use File::Find;
|
||||
use Cwd;
|
||||
|
||||
diff -ur ../PodParser-1.18-clean/lib/Pod/Usage.pm ./lib/Pod/Usage.pm
|
||||
--- ../PodParser-1.18-clean/lib/Pod/Usage.pm Thu Aug 10 14:39:45 2000
|
||||
+++ ./lib/Pod/Usage.pm Sun Jun 16 12:55:18 2002
|
||||
@@ -400,6 +400,11 @@
|
||||
use Carp;
|
||||
use Config;
|
||||
use Exporter;
|
||||
+
|
||||
+# Added by FreeBSD ports to make sure newer version of File::Spec is used
|
||||
+use Config;
|
||||
+use lib $Config{installsitelib}; # installsitearch will be added automatically
|
||||
+
|
||||
use File::Spec;
|
||||
|
||||
use vars qw(@ISA @EXPORT);
|
||||
diff -ur ../PodParser-1.18-clean/t/pod/find.t ./t/pod/find.t
|
||||
--- ../PodParser-1.18-clean/t/pod/find.t Fri Sep 1 08:25:41 2000
|
||||
+++ ./t/pod/find.t Sun Jun 16 12:56:32 2002
|
||||
@@ -8,6 +8,11 @@
|
||||
BEGIN { plan tests => 4 }
|
||||
|
||||
use Pod::Find qw(pod_find pod_where);
|
||||
+
|
||||
+# Added by FreeBSD ports to make sure newer version of File::Spec is used
|
||||
+use Config;
|
||||
+use lib $Config{installsitelib}; # installsitearch will be added automatically
|
||||
+
|
||||
use File::Spec;
|
||||
|
||||
# load successful
|
||||
diff -ur ../PodParser-1.18-clean/t/pod/testcmp.pl ./t/pod/testcmp.pl
|
||||
--- ../PodParser-1.18-clean/t/pod/testcmp.pl Thu Aug 10 14:05:40 2000
|
||||
+++ ./t/pod/testcmp.pl Sun Jun 16 12:56:50 2002
|
||||
@@ -6,7 +6,13 @@
|
||||
use Carp;
|
||||
use Exporter;
|
||||
use File::Basename;
|
||||
+
|
||||
+# Added by FreeBSD ports to make sure newer version of File::Spec is used
|
||||
+use Config;
|
||||
+use lib $Config{installsitelib}; # installsitearch will be added automatically
|
||||
+
|
||||
use File::Spec;
|
||||
+
|
||||
use FileHandle;
|
||||
|
||||
@ISA = qw(Exporter);
|
||||
diff -ur ../PodParser-1.18-clean/t/pod/testp2pt.pl ./t/pod/testp2pt.pl
|
||||
--- ../PodParser-1.18-clean/t/pod/testp2pt.pl Thu Aug 10 14:05:40 2000
|
||||
+++ ./t/pod/testp2pt.pl Sun Jun 16 12:57:11 2002
|
||||
@@ -2,7 +2,13 @@
|
||||
|
||||
BEGIN {
|
||||
use File::Basename;
|
||||
+
|
||||
+ # Added by FreeBSD ports to make sure newer version of File::Spec is used
|
||||
+ use Config;
|
||||
+ use lib $Config{installsitelib}; # installsitearch will be added automatically
|
||||
+
|
||||
use File::Spec;
|
||||
+
|
||||
use Cwd qw(abs_path);
|
||||
push @INC, '..';
|
||||
my $THISDIR = abs_path(dirname $0);
|
||||
diff -ur ../PodParser-1.18-clean/t/pod/testpchk.pl ./t/pod/testpchk.pl
|
||||
--- ../PodParser-1.18-clean/t/pod/testpchk.pl Thu Aug 10 14:05:40 2000
|
||||
+++ ./t/pod/testpchk.pl Sun Jun 16 12:56:17 2002
|
||||
@@ -2,7 +2,13 @@
|
||||
|
||||
BEGIN {
|
||||
use File::Basename;
|
||||
+
|
||||
+ # Added by FreeBSD ports to make sure newer version of File::Spec is used
|
||||
+ use Config;
|
||||
+ use lib $Config{installsitelib}; # installsitearch will be added automatically
|
||||
+
|
||||
use File::Spec;
|
||||
+
|
||||
push @INC, '..';
|
||||
my $THISDIR = dirname $0;
|
||||
unshift @INC, $THISDIR;
|
Loading…
Reference in a new issue