aboutsummaryrefslogtreecommitdiffstats
path: root/security/p5-MD5
diff options
context:
space:
mode:
authorsobomax <sobomax@FreeBSD.org>2003-02-21 00:33:26 +0800
committersobomax <sobomax@FreeBSD.org>2003-02-21 00:33:26 +0800
commit1e607f868b5505e10fabe70f19c1c6e491e4d1a0 (patch)
tree5a6539846b1be0d7960d421883f382b1984b610b /security/p5-MD5
parent548c9ae86f72ebe1570fffefb0f5b4dd3f3c0ab1 (diff)
downloadfreebsd-ports-gnome-1e607f868b5505e10fabe70f19c1c6e491e4d1a0.tar.gz
freebsd-ports-gnome-1e607f868b5505e10fabe70f19c1c6e491e4d1a0.tar.zst
freebsd-ports-gnome-1e607f868b5505e10fabe70f19c1c6e491e4d1a0.zip
Conditionalise several dependencies on PERL_LEVEL to make those ports more
friendly for perl-5.8.0, which has those dependencies included into the base distribution. Sponsired by: Porta Software Ltd
Diffstat (limited to 'security/p5-MD5')
-rw-r--r--security/p5-MD5/Makefile12
1 files changed, 8 insertions, 4 deletions
diff --git a/security/p5-MD5/Makefile b/security/p5-MD5/Makefile
index 568c6f434d27..02aadbcf80b1 100644
--- a/security/p5-MD5/Makefile
+++ b/security/p5-MD5/Makefile
@@ -14,12 +14,16 @@ PKGNAMEPREFIX= p5-
MAINTAINER= ports@FreeBSD.org
-BUILD_DEPENDS= ${LOCALBASE}/lib/perl5/site_perl/${PERL_VER}/${PERL_ARCH}/Digest/MD5.pm:${PORTSDIR}/security/p5-Digest-MD5
-RUN_DEPENDS= ${LOCALBASE}/lib/perl5/site_perl/${PERL_VER}/${PERL_ARCH}/Digest/MD5.pm:${PORTSDIR}/security/p5-Digest-MD5
-
PERL_CONFIGURE= yes
MAN3= MD5.3
MANPREFIX= ${PREFIX}/lib/perl5/${PERL_VERSION}
-.include <bsd.port.mk>
+.include <bsd.port.pre.mk>
+
+.if ${PERL_LEVEL} < 500800
+BUILD_DEPENDS= ${LOCALBASE}/lib/perl5/site_perl/${PERL_VER}/${PERL_ARCH}/Digest/MD5.pm:${PORTSDIR}/security/p5-Digest-MD5
+RUN_DEPENDS= ${BUILD_DEPENDS}
+.endif
+
+.include <bsd.port.post.mk>