diff options
author | Martin Matuska <mm@FreeBSD.org> | 2010-09-21 07:56:43 +0000 |
---|---|---|
committer | Martin Matuska <mm@FreeBSD.org> | 2010-09-21 07:56:43 +0000 |
commit | ddcc0de9218039c78eb34c7bc64fadb4dfe7a707 (patch) | |
tree | bee4ba075b3a0b4d3276fe1e92c704118abdbfe3 /security/p5-Crypt-Simple | |
parent | fc366adb105b7bb2dc40e2a7e3e8c2022e37efe2 (diff) | |
download | ports-ddcc0de9218039c78eb34c7bc64fadb4dfe7a707.tar.gz ports-ddcc0de9218039c78eb34c7bc64fadb4dfe7a707.zip |
Change dependency on old p5-Compress-Zlib, p5-IO-Compress-Base,
p5-IO-Compress-Zlib and p5-IO-Compress-Bzip2 modules to p5-IO-Compress.
Explicitly depend on p5-IO-Compress only if PERL_LEVEL < 500903
Bump PORTREVISION
Notes
Notes:
svn path=/head/; revision=261530
Diffstat (limited to 'security/p5-Crypt-Simple')
-rw-r--r-- | security/p5-Crypt-Simple/Makefile | 14 |
1 files changed, 10 insertions, 4 deletions
diff --git a/security/p5-Crypt-Simple/Makefile b/security/p5-Crypt-Simple/Makefile index fc190225b379..5ec0647954c1 100644 --- a/security/p5-Crypt-Simple/Makefile +++ b/security/p5-Crypt-Simple/Makefile @@ -7,6 +7,7 @@ PORTNAME= Crypt-Simple PORTVERSION= 0.06 +PORTREVISION= 1 CATEGORIES= security perl5 MASTER_SITES= CPAN PKGNAMEPREFIX= p5- @@ -14,15 +15,20 @@ PKGNAMEPREFIX= p5- MAINTAINER= avk@vl.ru COMMENT= Perl encrypt stuff simply -BUILD_DEPENDS= ${SITE_PERL}/${PERL_ARCH}/Crypt/Blowfish.pm:${PORTSDIR}/security/p5-Crypt-Blowfish \ - ${SITE_PERL}/Compress/Zlib.pm:${PORTSDIR}/archivers/p5-Compress-Zlib \ +RUN_DEPENDS= ${SITE_PERL}/${PERL_ARCH}/Crypt/Blowfish.pm:${PORTSDIR}/security/p5-Crypt-Blowfish \ ${SITE_PERL}/${PERL_ARCH}/MIME/Base64.pm:${PORTSDIR}/converters/p5-MIME-Base64 \ ${SITE_PERL}/${PERL_ARCH}/Digest/MD5.pm:${PORTSDIR}/security/p5-Digest-MD5 \ ${SITE_PERL}/FreezeThaw.pm:${PORTSDIR}/devel/p5-FreezeThaw -RUN_DEPENDS= ${BUILD_DEPENDS} +BUILD_DEPENDS= ${RUN_DEPENDS} PERL_CONFIGURE= yes MAN3= Crypt::Simple.3 -.include <bsd.port.mk> +.include <bsd.port.pre.mk> + +.if ${PERL_LEVEL} < 500903 +RUN_DEPENDS+= p5-IO-Compress>=2.017:${PORTSDIR}/archivers/p5-IO-Compress +.endif + +.include <bsd.port.post.mk> |