diff options
author | mat <mat@FreeBSD.org> | 2004-08-12 20:48:01 +0800 |
---|---|---|
committer | mat <mat@FreeBSD.org> | 2004-08-12 20:48:01 +0800 |
commit | b2915fd9d1aba9c155acea1793e42c7659e36be8 (patch) | |
tree | 7f1b6a044bd73b3a561e1fee38519f0ba6679d11 /textproc/p5-XML-SAX | |
parent | 1140f51cbed662c0f6dbd4ef84e3b5f2849f7cbd (diff) | |
download | freebsd-ports-gnome-b2915fd9d1aba9c155acea1793e42c7659e36be8.tar.gz freebsd-ports-gnome-b2915fd9d1aba9c155acea1793e42c7659e36be8.tar.zst freebsd-ports-gnome-b2915fd9d1aba9c155acea1793e42c7659e36be8.zip |
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 'textproc/p5-XML-SAX')
-rw-r--r-- | textproc/p5-XML-SAX/Makefile | 11 |
1 files changed, 8 insertions, 3 deletions
diff --git a/textproc/p5-XML-SAX/Makefile b/textproc/p5-XML-SAX/Makefile index 09a4b864cec1..bd57461e1a99 100644 --- a/textproc/p5-XML-SAX/Makefile +++ b/textproc/p5-XML-SAX/Makefile @@ -15,8 +15,7 @@ PKGNAMEPREFIX= p5- MAINTAINER= skv@FreeBSD.org COMMENT= Simple API for XML -RUN_DEPENDS= ${SITE_PERL}/File/Temp.pm:${PORTSDIR}/devel/p5-File-Temp \ - ${SITE_PERL}/XML/NamespaceSupport.pm:${PORTSDIR}/textproc/p5-XML-NamespaceSupport +RUN_DEPENDS= ${SITE_PERL}/XML/NamespaceSupport.pm:${PORTSDIR}/textproc/p5-XML-NamespaceSupport BUILD_DEPENDS= ${RUN_DEPENDS} PERL_CONFIGURE= yes @@ -33,4 +32,10 @@ post-configure: @${PERL} -pi -e 's/^(POD2MAN_EXE.*)$$/\1 --lax/;' \ ${WRKSRC}/Makefile -.include <bsd.port.mk> +.include <bsd.port.pre.mk> + +.if ${PERL_LEVEL} < 500800 +BUILD_DEPENDS+= ${SITE_PERL}/File/Temp.pm:${PORTSDIR}/devel/p5-File-Temp +.endif + +.include <bsd.port.post.mk> |