1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-12-19 03:52:17 +00:00
freebsd-ports/www/p5-Apache-Test/Makefile
Sergey Skvortsov 3237253344 Fixes:
1. remove using 'warnings.pm' if perl < 5.6.0
2. change PERLRUN to PERL if perl < 5.8.0
3. fix damned error with pm_name=~/Config/

PR:	ports/54771
2003-07-29 16:14:39 +00:00

55 lines
1.4 KiB
Makefile

# New ports collection makefile for: Apache-Test
# Date created: 05 July 2003
# Whom: Sergey Skvortsov <skv@protey.ru>
#
# $FreeBSD$
#
PORTNAME= Apache-Test
PORTVERSION= 1.03
CATEGORIES= www perl5
MASTER_SITES= ${MASTER_SITE_PERL_CPAN}
MASTER_SITE_SUBDIR= Apache
PKGNAMEPREFIX= p5-
MAINTAINER= skv@FreeBSD.org
COMMENT= Test.pm wrapper with helpers for testing Apache
.if defined(WITH_MODPERL2)
IGNORE= "This port is already included in mod_perl2"
.else
RUN_DEPENDS= ${SITE_PERL}/${PERL_ARCH}/mod_perl.pm:${PORTSDIR}/www/mod_perl
BUILD_DEPENDS= ${RUN_DEPENDS}
.endif
PERL_CONFIGURE= yes
MAN3= Apache::Test.3 Apache::TestConfig.3 Apache::TestSmoke.3 \
Apache::TestTrace.3 Apache::TestUtil.3 Bundle::ApacheTest.3
.include <bsd.port.pre.mk>
.if ${PERL_LEVEL} < 500600
RUN_DEPENDS+= ${SITE_PERL}/File/Spec.pm:${PORTSDIR}/devel/p5-File-Spec
.endif
.if ${PERL_LEVEL} < 500800
EXTRA_PATCHES= ${PATCHDIR}/500503-Makefile.PL
.endif
post-patch:
@${PERL} -pi.bak -e 's/^/#/ if $$.==26;' ${WRKSRC}/Makefile.PL
@${PERL} -pi -e '$$_="" if $$.==11;' ${WRKSRC}/lib/Apache/Test5005compat.pm
.if ${PERL_LEVEL} < 500800
@${PERL} -pi.bak -e 's/PERLRUN/PERL/;' ${WRKSRC}/install-pl
.endif
.if ${PERL_LEVEL} < 500600
@${PERL} -pi -e '$$_="" if /^use warnings/' \
${WRKSRC}/lib/Apache/*.pm ${WRKSRC}/Makefile.PL ${WRKSRC}/install-pl
.endif
post-configure:
@${PERL} -pi -e 's/^(POD2MAN_EXE.*)$$/\1 --lax/;' ${WRKSRC}/Makefile
.include <bsd.port.post.mk>