c59a3834c4
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
35 lines
827 B
Makefile
35 lines
827 B
Makefile
# New ports collection makefile for: p5-HTML-Template-JIT
|
|
# Date Created: 2004/04/30
|
|
# Whom: alex@kapranoff.ru
|
|
#
|
|
# $FreeBSD$
|
|
#
|
|
|
|
PORTNAME= HTML-Template-JIT
|
|
PORTVERSION= 0.05
|
|
PORTREVISION= 1
|
|
CATEGORIES= www perl5
|
|
MASTER_SITES= CPAN
|
|
PKGNAMEPREFIX= p5-
|
|
|
|
MAINTAINER= perl@FreeBSD.org
|
|
COMMENT= Perl module to compile HTML Templates with Inline::C
|
|
|
|
BUILD_DEPENDS= p5-HTML-Template>=2.8:${PORTSDIR}/www/p5-HTML-Template \
|
|
p5-Inline>=0.43:${PORTSDIR}/devel/p5-Inline
|
|
RUN_DEPENDS:= ${BUILD_DEPENDS}
|
|
|
|
PERL_CONFIGURE= yes
|
|
INSTALL_TARGET= pure_install
|
|
|
|
MAN3= HTML::Template::JIT.3 HTML::Template::JIT::Compiler.3 \
|
|
HTML::Template::JIT::Base.3
|
|
|
|
.include <bsd.port.pre.mk>
|
|
|
|
post-patch:
|
|
@${PERL} -i -pe 's/indent -kr/indent/' \
|
|
${WRKSRC}/JIT/Compiler.pm
|
|
@${FIND} ${WRKSRC} -name '*.orig' -delete
|
|
|
|
.include <bsd.port.post.mk>
|