44 lines
1.0 KiB
Makefile
44 lines
1.0 KiB
Makefile
# New ports collection makefile for: Pod::Parser
|
|
# Date created: 18 Dec 2001
|
|
# Whom: Sergey Skvortsov <skv@FreeBSD.org>
|
|
#
|
|
# $FreeBSD$
|
|
#
|
|
|
|
PORTNAME= Pod-Parser
|
|
PORTVERSION= 1.35
|
|
CATEGORIES= textproc perl5
|
|
MASTER_SITES= ${MASTER_SITE_PERL_CPAN}
|
|
MASTER_SITE_SUBDIR= Pod
|
|
PKGNAMEPREFIX= p5-
|
|
|
|
MAINTAINER= skv@FreeBSD.org
|
|
COMMENT= Modules to work with POD (Plain Old Documentation)
|
|
|
|
BUILD_DEPENDS= ${SITE_PERL}/${PERL_ARCH}/File/Spec.pm:${PORTSDIR}/devel/p5-PathTools
|
|
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
|
|
|
|
.include <bsd.port.pre.mk>
|
|
|
|
.if ${PERL_LEVEL} < 500600
|
|
PLIST_SUB+= PL_FILES=""
|
|
.else
|
|
.undef MAN1
|
|
PLIST_SUB+= PL_FILES="@comment "
|
|
.endif
|
|
|
|
post-patch:
|
|
.if ${PERL_LEVEL} >= 500600
|
|
@${REINPLACE_CMD} -e '/EXE_FILES/d' ${WRKSRC}/Makefile.PL
|
|
.endif
|
|
@${FIND} ${WRKSRC} -name \*.orig -exec ${RM} {} \;
|
|
|
|
.include <bsd.port.post.mk>
|