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 /net/p5-SOAP-Lite-060 | |
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 'net/p5-SOAP-Lite-060')
-rw-r--r-- | net/p5-SOAP-Lite-060/Makefile | 10 |
1 files changed, 8 insertions, 2 deletions
diff --git a/net/p5-SOAP-Lite-060/Makefile b/net/p5-SOAP-Lite-060/Makefile index cadf277bc5da..9f2934e38f8e 100644 --- a/net/p5-SOAP-Lite-060/Makefile +++ b/net/p5-SOAP-Lite-060/Makefile @@ -7,6 +7,7 @@ PORTNAME= SOAP-Lite PORTVERSION= 0.60a +PORTREVISION= 1 CATEGORIES= net perl5 MASTER_SITES= CPAN PKGNAMEPREFIX= p5- @@ -17,7 +18,6 @@ COMMENT= SOAP::Lite - Client and server side SOAP implementation RUN_DEPENDS= ${SITE_PERL}/MIME/Lite.pm:${PORTSDIR}/mail/p5-MIME-Lite \ ${SITE_PERL}/MIME/Tools.pm:${PORTSDIR}/mail/p5-MIME-Tools \ ${SITE_PERL}/LWP.pm:${PORTSDIR}/www/p5-libwww \ - ${SITE_PERL}/Compress/Zlib.pm:${PORTSDIR}/archivers/p5-Compress-Zlib \ ${SITE_PERL}/${PERL_ARCH}/Crypt/SSLeay.pm:${PORTSDIR}/security/p5-Crypt-SSLeay \ ${SITE_PERL}/IO/Socket/SSL.pm:${PORTSDIR}/security/p5-IO-Socket-SSL \ ${SITE_PERL}/${PERL_ARCH}/XML/Parser.pm:${PORTSDIR}/textproc/p5-XML-Parser @@ -53,8 +53,14 @@ MAN3= Apache::SOAP.3 \ XMLRPC::Transport::POP3.3 \ XMLRPC::Transport::TCP.3 +.include <bsd.port.pre.mk> + +.if ${PERL_LEVEL} < 500903 +RUN_DEPENDS+= p5-IO-Compress>=2.017:${PORTSDIR}/archivers/p5-IO-Compress +.endif + post-patch: @${REINPLACE_CMD} -i '' -e 's|^#!.*perl|#!${PERL}|' \ ${WRKSRC}/bin/* ${WRKSRC}/t/* -.include <bsd.port.mk> +.include <bsd.port.post.mk> |