mirror of
https://git.freebsd.org/ports.git
synced 2025-07-18 09:49:18 -04:00
Add p5-PodParser 1.18,
modules to work with POD (Plain Old Documentation). PR: 33001 Submitted by: Sergey Skvortsov <skv@FreeBSD.org>
This commit is contained in:
parent
5f56b42ed9
commit
d2f417b2f0
Notes:
svn2git
2021-03-31 03:12:20 +00:00
svn path=/head/; revision=60076
11 changed files with 123 additions and 0 deletions
|
@ -140,6 +140,7 @@
|
||||||
SUBDIR += p5-PDF-API2
|
SUBDIR += p5-PDF-API2
|
||||||
SUBDIR += p5-PDF-Create
|
SUBDIR += p5-PDF-Create
|
||||||
SUBDIR += p5-Parse-Syslog
|
SUBDIR += p5-Parse-Syslog
|
||||||
|
SUBDIR += p5-PodParser
|
||||||
SUBDIR += p5-RADIUS-UserFile
|
SUBDIR += p5-RADIUS-UserFile
|
||||||
SUBDIR += p5-RDF-Notation3
|
SUBDIR += p5-RDF-Notation3
|
||||||
SUBDIR += p5-Regexp-Common
|
SUBDIR += p5-Regexp-Common
|
||||||
|
|
29
textproc/p5-Pod-Parser/Makefile
Normal file
29
textproc/p5-Pod-Parser/Makefile
Normal file
|
@ -0,0 +1,29 @@
|
||||||
|
# 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
|
||||||
|
|
||||||
|
BUILD_DEPENDS= ${LOCALBASE}/lib/perl5/site_perl/${PERL_VER}/File/Spec.pm:${PORTSDIR}/devel/p5-File-Spec
|
||||||
|
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}
|
||||||
|
MANPREFIX= ${PREFIX}/lib/perl5/${PERL_VERSION}
|
||||||
|
|
||||||
|
.include <bsd.port.mk>
|
1
textproc/p5-Pod-Parser/distinfo
Normal file
1
textproc/p5-Pod-Parser/distinfo
Normal file
|
@ -0,0 +1 @@
|
||||||
|
MD5 (PodParser-1.18.tar.gz) = 7e814d5dd6a56a44309815c374cd0e54
|
1
textproc/p5-Pod-Parser/pkg-comment
Normal file
1
textproc/p5-Pod-Parser/pkg-comment
Normal file
|
@ -0,0 +1 @@
|
||||||
|
Modules to work with POD (Plain Old Documentation)
|
15
textproc/p5-Pod-Parser/pkg-descr
Normal file
15
textproc/p5-Pod-Parser/pkg-descr
Normal file
|
@ -0,0 +1,15 @@
|
||||||
|
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
|
15
textproc/p5-Pod-Parser/pkg-plist
Normal file
15
textproc/p5-Pod-Parser/pkg-plist
Normal file
|
@ -0,0 +1,15 @@
|
||||||
|
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
|
29
textproc/p5-PodParser/Makefile
Normal file
29
textproc/p5-PodParser/Makefile
Normal file
|
@ -0,0 +1,29 @@
|
||||||
|
# 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
|
||||||
|
|
||||||
|
BUILD_DEPENDS= ${LOCALBASE}/lib/perl5/site_perl/${PERL_VER}/File/Spec.pm:${PORTSDIR}/devel/p5-File-Spec
|
||||||
|
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}
|
||||||
|
MANPREFIX= ${PREFIX}/lib/perl5/${PERL_VERSION}
|
||||||
|
|
||||||
|
.include <bsd.port.mk>
|
1
textproc/p5-PodParser/distinfo
Normal file
1
textproc/p5-PodParser/distinfo
Normal file
|
@ -0,0 +1 @@
|
||||||
|
MD5 (PodParser-1.18.tar.gz) = 7e814d5dd6a56a44309815c374cd0e54
|
1
textproc/p5-PodParser/pkg-comment
Normal file
1
textproc/p5-PodParser/pkg-comment
Normal file
|
@ -0,0 +1 @@
|
||||||
|
Modules to work with POD (Plain Old Documentation)
|
15
textproc/p5-PodParser/pkg-descr
Normal file
15
textproc/p5-PodParser/pkg-descr
Normal file
|
@ -0,0 +1,15 @@
|
||||||
|
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
|
15
textproc/p5-PodParser/pkg-plist
Normal file
15
textproc/p5-PodParser/pkg-plist
Normal file
|
@ -0,0 +1,15 @@
|
||||||
|
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
|
Loading…
Add table
Reference in a new issue