1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-12-22 04:17:44 +00:00

Make dependency on p5-Digest conditional on perl version

PR:		68577
Submitted by:	David Lay <dsl@webize.com.au>
This commit is contained in:
Erwin Lansing 2004-07-02 06:43:28 +00:00
parent 24ca310ad4
commit e136ec7d94
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=112723

View File

@ -15,11 +15,15 @@ PKGNAMEPREFIX= p5-
MAINTAINER= erwin@FreeBSD.org
COMMENT= Perl interface to the SHA-1 Algorithm
BUILD_DEPENDS= ${SITE_PERL}/Digest.pm:${PORTSDIR}/security/p5-Digest
RUN_DEPENDS= ${BUILD_DEPENDS}
PERL_CONFIGURE= yes
MAN3= Digest::SHA1.3
.include <bsd.port.mk>
.include <bsd.port.pre.mk>
.if ${PERL_LEVEL} < 500800
BUILD_DEPENDS= ${SITE_PERL}/Digest.pm:${PORTSDIR}/security/p5-Digest
RUN_DEPENDS= ${BUILD_DEPENDS}
.endif
.include <bsd.port.post.mk>