diff options
author | mat <mat@FreeBSD.org> | 2004-08-12 12:48:01 +0000 |
---|---|---|
committer | mat <mat@FreeBSD.org> | 2004-08-12 12:48:01 +0000 |
commit | b2915fd9d1aba9c155acea1793e42c7659e36be8 (patch) | |
tree | 7f1b6a044bd73b3a561e1fee38519f0ba6679d11 /www/reportmagic | |
parent | 1140f51cbed662c0f6dbd4ef84e3b5f2849f7cbd (diff) | |
download | FreeBSD-ports-b2915fd9d1aba9c155acea1793e42c7659e36be8.zip FreeBSD-ports-b2915fd9d1aba9c155acea1793e42c7659e36be8.tar.gz |
After devel/p5-File-Temp has gained an IGNORE for PERL_LEVEL > 500800, all
these ports were broken because they always depended on it. I've rearranged all
the dependencies to fit the new scheme.
Diffstat (limited to 'www/reportmagic')
-rw-r--r-- | www/reportmagic/Makefile | 11 |
1 files changed, 8 insertions, 3 deletions
diff --git a/www/reportmagic/Makefile b/www/reportmagic/Makefile index 9ca9ea8..0e01fcb 100644 --- a/www/reportmagic/Makefile +++ b/www/reportmagic/Makefile @@ -20,8 +20,7 @@ COMMENT= A web site statistics post-processor for Analog RUN_DEPENDS= analog:${PORTSDIR}/www/analog \ ${SITE_PERL}/GD/Graph3d.pm:${PORTSDIR}/graphics/p5-GD-Graph3d \ ${SITE_PERL}/${PERL_ARCH}/HTML/Parser.pm:${PORTSDIR}/www/p5-HTML-Parser \ - ${SITE_PERL}/Config/IniFiles.pm:${PORTSDIR}/devel/p5-Config-IniFiles \ - ${SITE_PERL}/File/Temp.pm:${PORTSDIR}/devel/p5-File-Temp + ${SITE_PERL}/Config/IniFiles.pm:${PORTSDIR}/devel/p5-Config-IniFiles WRKSRC= ${WRKDIR}/${DISTNAME} NO_BUILD= YES @@ -36,4 +35,10 @@ post-install: @${ECHO} "using Report Magic." @${ECHO} -.include <bsd.port.mk> +.include <bsd.port.pre.mk> + +.if ${PERL_LEVEL} < 500800 +RUN_DEPENDS+= ${SITE_PERL}/File/Temp.pm:${PORTSDIR}/devel/p5-File-Temp +.endif + +.include <bsd.port.post.mk> |