blob: 637d214508d05bd44b68b76649a31c4235be69aa (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
|
# ex:ts=8
# Ports collection makefile for: p5-Pod-Tree
# Date created: Aug 10, 2004
# Whom: ijliao
#
# $FreeBSD$
#
PORTNAME= Pod-Tree
PORTVERSION= 1.15
CATEGORIES= textproc devel perl5
MASTER_SITES= CPAN
PKGNAMEPREFIX= p5-
MAINTAINER= perl@FreeBSD.org
COMMENT= Create a static syntax tree for a POD
RUN_DEPENDS= ${SITE_PERL}/HTML/Stream.pm:${PORTSDIR}/www/p5-HTML-Stream \
${SITE_PERL}/Text/Template.pm:${PORTSDIR}/textproc/p5-Text-Template \
${SITE_PERL}/Pod/Escapes.pm:${PORTSDIR}/textproc/p5-Pod-Escapes
BUILD_DEPENDS= ${RUN_DEPENDS}
PERL_CONFIGURE= yes
MAN1= perl2html.1 pods2html.1 \
podtree2html.1
MAN3= Pod::Tree.3 \
Pod::Tree::HTML.3 \
Pod::Tree::Node.3 \
Pod::Tree::PerlBin.3 \
Pod::Tree::PerlDist.3 \
Pod::Tree::PerlFunc.3 \
Pod::Tree::PerlLib.3 \
Pod::Tree::PerlMap.3 \
Pod::Tree::PerlPod.3 \
Pod::Tree::PerlTop.3 \
Pod::Tree::Pod.3
# conflict with pod2html in perl 5.6 or above
post-patch:
${REINPLACE_CMD} -e 's/pod2html //g' ${WRKSRC}/Makefile.PL
${REINPLACE_CMD} -e '/pod2html/d' ${WRKSRC}/MANIFEST
${RM} ${WRKSRC}/t/pod2html.t
.include <bsd.port.mk>
|