freebsd-ports/textproc/p5-PerlPoint-Converters/Makefile
Eitan Adler c59a3834c4 At the moment 1385 ports use BUILD_DEPENDS= ${RUN_DEPENDS} and 450
ports use BUILD_DEPENDS:= ${RUN_DEPENDS}. This patch fixes ports that are
currently broken. This is a temporary measure until we organically stop using
:= or someone(s) spend a lot of time changing all the ports over.

Explicit duplication > := > = and this just moves ports one step to the left

Approved by:	portmgr
2012-01-21 17:40:15 +00:00

45 lines
1.1 KiB
Makefile

# New ports collection makefile for: p5-PerlPoint-Converters
# Date created: 8 Jun 2004
# Whom: mat
#
# $FreeBSD$
#
PORTNAME= PerlPoint-Converters
PORTVERSION= 1.02.05
DISTVERSION= ${PORTVERSION:C/\.(..)$/\1/}
CATEGORIES= textproc perl5
MASTER_SITES= CPAN
PKGNAMEPREFIX= p5-
MAINTAINER= perl@FreeBSD.org
COMMENT= Convert PerlPoint docs into various formats
BUILD_DEPENDS= ${SITE_PERL}/PerlPoint/Parser.pm:${PORTSDIR}/textproc/p5-PerlPoint-Package \
${SITE_PERL}/Getopt/ArgvFile.pm:${PORTSDIR}/devel/p5-Getopt-ArgvFile
RUN_DEPENDS:= ${BUILD_DEPENDS}
PERL_CONFIGURE= YES
MAN1= pp2html.1 pp2latex.1
MAN3= Bundle::PerlPoint.3 \
PerlPoint::Converters.3 \
PerlPoint::Tags::HTML.3 \
PerlPoint::Tags::LaTeX.3
.if !defined(NOPORTDOCS)
PORTDOCS= # suck all DOCSDIR
post-patch:
@cd ${WRKSRC}; ${CP} -R pp2html_styles images doc
@${PERL} -pi -e 's!../(images|pp2html_styles)!$$1!g' ${WRKSRC}/doc/*.cfg
post-build:
@cd ${WRKSRC}/doc; make
post-install:
@${MKDIR} ${DOCSDIR}
@cd ${WRKSRC}/doc; ${FIND} . | ${CPIO} -padm ${DOCSDIR}
.endif
.include <bsd.port.mk>