f6d56007b9
While there, cleanup, and sort depends. When build and run dependencies are the same, there are three ways to avoid duplicating the list while not adding the framework added BUILD_DEPENDS to the RUN_DEPENDS. In order of preference, they are: 1) use RUN_DEPENDS to set BUILD_DEPENDS: BUILD_DEPENDS= ${RUN_DEPENDS} RUN_DEPENDS= foo:bar/baz 2) create another variable and use it: MY_DEPENDS= foo:bar/baz BUILD_DEPENDS= ${MY_DEPENDS} RUN_DEPENDS= ${MY_DEPENDS} 3) use BUILD_DEPENDS to set RUN_DEPENDS and force evaluation: BUILD_DEPENDS= foo:bar/baz RUN_DEPENDS:= ${BUILD_DEPENDS} Sponsored by: Absolight
33 lines
843 B
Makefile
33 lines
843 B
Makefile
# Created by: ijliao
|
|
# $FreeBSD$
|
|
|
|
PORTNAME= Pod-Tree
|
|
PORTVERSION= 1.25
|
|
CATEGORIES= textproc devel perl5
|
|
MASTER_SITES= CPAN
|
|
PKGNAMEPREFIX= p5-
|
|
|
|
MAINTAINER= perl@FreeBSD.org
|
|
COMMENT= Create a static syntax tree for a POD
|
|
|
|
LICENSE= ART10 GPLv1+
|
|
LICENSE_COMB= dual
|
|
|
|
BUILD_DEPENDS= ${RUN_DEPENDS}
|
|
RUN_DEPENDS= p5-HTML-Stream>=1.49:www/p5-HTML-Stream \
|
|
p5-IO-String>=1:devel/p5-IO-String \
|
|
p5-Path-Tiny>=0.068:devel/p5-Path-Tiny \
|
|
p5-Text-Template>=1:textproc/p5-Text-Template
|
|
TEST_DEPENDS= p5-Path-Tiny>=0.068:devel/p5-Path-Tiny \
|
|
p5-Test-Compile>1.2.1:devel/p5-Test-Compile
|
|
|
|
USES= perl5
|
|
USE_PERL5= configure
|
|
|
|
# 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>
|