mirror of
https://git.freebsd.org/ports.git
synced 2025-07-18 17:59:20 -04:00
Pod::Autopod is designed to generate pod documentation of a perl
class by analysing its code. The idea is to have something similar like javadoc. So it uses also comments written directly obove the method definitions. It is designed to asumes a pm file which represents a class. Of course it can not understand every kind of syntax, parameters, etc. But the plan is to improve this library in the future to understand more and more automatically. WWW: http://search.cpan.org/dist/Pod-Autopod/ Approved by: miwi,jadawin(mentors,implicit)
This commit is contained in:
parent
6de63569ce
commit
10e3edfe53
Notes:
svn2git
2021-03-31 03:12:20 +00:00
svn path=/head/; revision=243576
5 changed files with 46 additions and 0 deletions
|
@ -537,6 +537,7 @@
|
|||
SUBDIR += p5-Plucene-Plugin-Analyzer-SnowballAnalyzer
|
||||
SUBDIR += p5-Plucene-Simple
|
||||
SUBDIR += p5-Pod-Abstract
|
||||
SUBDIR += p5-Pod-Autopod
|
||||
SUBDIR += p5-Pod-Constants
|
||||
SUBDIR += p5-Pod-DocBook
|
||||
SUBDIR += p5-Pod-Escapes
|
||||
|
|
25
textproc/p5-Pod-Autopod/Makefile
Normal file
25
textproc/p5-Pod-Autopod/Makefile
Normal file
|
@ -0,0 +1,25 @@
|
|||
# New ports collection makefile for: p5-Pod-Autopod
|
||||
# Date created: 31 Oct, 2009
|
||||
# Whom: Wen Heping<wen@FreeBSD.org>
|
||||
#
|
||||
# $FreeBSD$
|
||||
#
|
||||
|
||||
PORTNAME= Pod-Autopod
|
||||
PORTVERSION= 1.07
|
||||
CATEGORIES= textproc perl5
|
||||
MASTER_SITES= CPAN
|
||||
PKGNAMEPREFIX= p5-
|
||||
|
||||
MAINTAINER= wen@FreeBSD.org
|
||||
COMMENT= Generates pod documentation by analysing perl modules
|
||||
|
||||
BUILD_DEPENDS= p5-Pod-Abstract>=0.19:${PORTSDIR}/textproc/p5-Pod-Abstract
|
||||
RUN_DEPENDS= ${BUILD_DEPENDS}
|
||||
|
||||
PERL_CONFIGURE= yes
|
||||
|
||||
MAN1= autopod.1
|
||||
MAN3= Pod::Autopod.3
|
||||
|
||||
.include <bsd.port.mk>
|
3
textproc/p5-Pod-Autopod/distinfo
Normal file
3
textproc/p5-Pod-Autopod/distinfo
Normal file
|
@ -0,0 +1,3 @@
|
|||
MD5 (Pod-Autopod-1.07.tar.gz) = b9c87bc1cc804a504113ab19ffd576d5
|
||||
SHA256 (Pod-Autopod-1.07.tar.gz) = 87b06a99a343c8f17099a82e94cfa83c0b697608bf396efd60be3e2e88cb25a3
|
||||
SIZE (Pod-Autopod-1.07.tar.gz) = 10180
|
11
textproc/p5-Pod-Autopod/pkg-descr
Normal file
11
textproc/p5-Pod-Autopod/pkg-descr
Normal file
|
@ -0,0 +1,11 @@
|
|||
Pod::Autopod is designed to generate pod documentation of a perl
|
||||
class by analysing its code. The idea is to have something similar
|
||||
like javadoc. So it uses also comments written directly obove the
|
||||
method definitions. It is designed to asumes a pm file which
|
||||
represents a class.
|
||||
|
||||
Of course it can not understand every kind of syntax, parameters,
|
||||
etc. But the plan is to improve this library in the future to
|
||||
understand more and more automatically.
|
||||
|
||||
WWW: http://search.cpan.org/dist/Pod-Autopod/
|
6
textproc/p5-Pod-Autopod/pkg-plist
Normal file
6
textproc/p5-Pod-Autopod/pkg-plist
Normal file
|
@ -0,0 +1,6 @@
|
|||
bin/autopod
|
||||
%%SITE_PERL%%/Pod/Autopod.pm
|
||||
%%SITE_PERL%%/%%PERL_ARCH%%/auto/Pod/Autopod/.packlist
|
||||
@dirrm %%SITE_PERL%%/%%PERL_ARCH%%/auto/Pod/Autopod
|
||||
@dirrmtry %%SITE_PERL%%/%%PERL_ARCH%%/auto/Pod
|
||||
@dirrmtry %%SITE_PERL%%/Pod
|
Loading…
Add table
Reference in a new issue