diff options
Diffstat (limited to 'textproc/p5-Pod-Parser')
| -rw-r--r-- | textproc/p5-Pod-Parser/Makefile | 52 | ||||
| -rw-r--r-- | textproc/p5-Pod-Parser/distinfo | 1 | ||||
| -rw-r--r-- | textproc/p5-Pod-Parser/files/patch-Makefile.PL | 11 | ||||
| -rw-r--r-- | textproc/p5-Pod-Parser/files/patch-use-ports-File-Spec | 98 | ||||
| -rw-r--r-- | textproc/p5-Pod-Parser/pkg-comment | 1 | ||||
| -rw-r--r-- | textproc/p5-Pod-Parser/pkg-descr | 15 | ||||
| -rw-r--r-- | textproc/p5-Pod-Parser/pkg-plist | 15 |
7 files changed, 0 insertions, 193 deletions
diff --git a/textproc/p5-Pod-Parser/Makefile b/textproc/p5-Pod-Parser/Makefile deleted file mode 100644 index 57f5e2ccb18a..000000000000 --- a/textproc/p5-Pod-Parser/Makefile +++ /dev/null @@ -1,52 +0,0 @@ -# New ports collection makefile for: Pod::Parser -# Date created: 18 Dec 2001 -# Whom: Sergey Skvortsov <skv@FreeBSD.org> -# -# $FreeBSD$ -# - -PORTNAME= PodParser -PORTVERSION= 1.18 -CATEGORIES= textproc perl5 -MASTER_SITES= ${MASTER_SITE_PERL_CPAN} -MASTER_SITE_SUBDIR= Pod -PKGNAMEPREFIX= p5- - -MAINTAINER= skv@FreeBSD.org - -RUN_DEPENDS= ${BUILD_DEPENDS} - -PERL_CONFIGURE= yes - -MAN1= pod2usage.1 podchecker.1 podselect.1 -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} {} \; - -.include <bsd.port.pre.mk> - -SITE_PERL?= ${LOCALBASE}/lib/perl5/site_perl/${PERL_VER} - -perl_major=${PERL_VERSION:C|^([1-9]+).*|\1|} -_perl_minor=00${PERL_VERSION:C|^([1-9]+)\.([0-9]+).*|\2|} -perl_minor=${_perl_minor:C|^.*(...)|\1|} -.if ${perl_minor} >= 100 -perl_minor=${PERL_VERSION:C|^([1-9]+)\.([0-9][0-9][0-9]).*|\2|} -perl_patch=${PERL_VERSION:C|^.*(..)|\1|} -.else # ${perl_minor} < 100 -_perl_patch=0${PERL_VERSION:C|^([1-9]+)\.([0-9]+)\.*|0|} -perl_patch=${_perl_patch:C|^.*(..)|\1|} -.endif # ${perl_minor} < 100 -PERL_LEVEL=${perl_major}${perl_minor}${perl_patch} - -BUILD_DEPENDS= -.if ${PERL_LEVEL} < 500601 -BUILD_DEPENDS+= ${SITE_PERL}/File/Spec.pm:${PORTSDIR}/devel/p5-File-Spec -.endif # ${PERL_LEVEL} < 500601 - -.include <bsd.port.post.mk> diff --git a/textproc/p5-Pod-Parser/distinfo b/textproc/p5-Pod-Parser/distinfo deleted file mode 100644 index 5074142ab49a..000000000000 --- a/textproc/p5-Pod-Parser/distinfo +++ /dev/null @@ -1 +0,0 @@ -MD5 (PodParser-1.18.tar.gz) = 7e814d5dd6a56a44309815c374cd0e54 diff --git a/textproc/p5-Pod-Parser/files/patch-Makefile.PL b/textproc/p5-Pod-Parser/files/patch-Makefile.PL deleted file mode 100644 index 94fb1e7dfb65..000000000000 --- a/textproc/p5-Pod-Parser/files/patch-Makefile.PL +++ /dev/null @@ -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 }; diff --git a/textproc/p5-Pod-Parser/files/patch-use-ports-File-Spec b/textproc/p5-Pod-Parser/files/patch-use-ports-File-Spec deleted file mode 100644 index 24a70d8463f1..000000000000 --- a/textproc/p5-Pod-Parser/files/patch-use-ports-File-Spec +++ /dev/null @@ -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; diff --git a/textproc/p5-Pod-Parser/pkg-comment b/textproc/p5-Pod-Parser/pkg-comment deleted file mode 100644 index 5e82cbd5c3db..000000000000 --- a/textproc/p5-Pod-Parser/pkg-comment +++ /dev/null @@ -1 +0,0 @@ -Modules to work with POD (Plain Old Documentation) diff --git a/textproc/p5-Pod-Parser/pkg-descr b/textproc/p5-Pod-Parser/pkg-descr deleted file mode 100644 index 37a2911848e7..000000000000 --- a/textproc/p5-Pod-Parser/pkg-descr +++ /dev/null @@ -1,15 +0,0 @@ -Set of modules: - -* Pod::Parser - base class for creating POD filters and translators -* Pod::Select - extract selected sections of POD from input -* Pod::Usage - print a usage message from embedded pod documentation -* Pod::PlainText - convert POD data to formatted ASCII text -* Pod::InputObjects - objects representing POD input paragraphs, commands, etc. -* Pod::Checker - check pod documents for syntax errors -* Pod::ParseUtils - helpers for POD parsing and conversion -* Pod::Find - find POD documents in directory trees - -WWW: http://search.cpan.org/search?dist=PodParser - --- Sergey Skvortsov -skv@FreeBSD.org diff --git a/textproc/p5-Pod-Parser/pkg-plist b/textproc/p5-Pod-Parser/pkg-plist deleted file mode 100644 index 715cc7c78604..000000000000 --- a/textproc/p5-Pod-Parser/pkg-plist +++ /dev/null @@ -1,15 +0,0 @@ -bin/pod2usage -bin/podchecker -bin/podselect -lib/perl5/site_perl/%%PERL_VER%%/%%PERL_ARCH%%/auto/Pod/Parser/.packlist -lib/perl5/site_perl/%%PERL_VER%%/Pod/Checker.pm -lib/perl5/site_perl/%%PERL_VER%%/Pod/Find.pm -lib/perl5/site_perl/%%PERL_VER%%/Pod/InputObjects.pm -lib/perl5/site_perl/%%PERL_VER%%/Pod/ParseUtils.pm -lib/perl5/site_perl/%%PERL_VER%%/Pod/Parser.pm -lib/perl5/site_perl/%%PERL_VER%%/Pod/PlainText.pm -lib/perl5/site_perl/%%PERL_VER%%/Pod/Select.pm -lib/perl5/site_perl/%%PERL_VER%%/Pod/Usage.pm -@dirrm lib/perl5/site_perl/%%PERL_VER%%/%%PERL_ARCH%%/auto/Pod/Parser -@unexec rmdir %D/lib/perl5/site_perl/%%PERL_VER%%/Pod 2>/dev/null || true -@unexec rmdir %D/lib/perl5/site_perl/%%PERL_VER%%/%%PERL_ARCH%%/auto/Pod 2>/dev/null || true |
