diff options
author | mm <mm@FreeBSD.org> | 2010-09-21 15:56:43 +0800 |
---|---|---|
committer | mm <mm@FreeBSD.org> | 2010-09-21 15:56:43 +0800 |
commit | a447d3207d987ddc5b4cb16345ffd07b474aea9c (patch) | |
tree | 740d2c4dbf9c6b5d7e0a621cb113b01436081f94 /archivers | |
parent | 755a0561c300f159d88d880440dc70a9ae0425e2 (diff) | |
download | freebsd-ports-gnome-a447d3207d987ddc5b4cb16345ffd07b474aea9c.tar.gz freebsd-ports-gnome-a447d3207d987ddc5b4cb16345ffd07b474aea9c.tar.zst freebsd-ports-gnome-a447d3207d987ddc5b4cb16345ffd07b474aea9c.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
Diffstat (limited to 'archivers')
-rw-r--r-- | archivers/p5-Archive-Tar/Makefile | 7 | ||||
-rw-r--r-- | archivers/p5-Archive-Zip/Makefile | 14 | ||||
-rw-r--r-- | archivers/p5-IO-Compress-Lzma/Makefile | 5 | ||||
-rw-r--r-- | archivers/p5-IO-Zlib/Makefile | 13 | ||||
-rw-r--r-- | archivers/p5-POE-Filter-Zlib/Makefile | 3 |
5 files changed, 28 insertions, 14 deletions
diff --git a/archivers/p5-Archive-Tar/Makefile b/archivers/p5-Archive-Tar/Makefile index 4c2517d1e8be..b5ec967dd72f 100644 --- a/archivers/p5-Archive-Tar/Makefile +++ b/archivers/p5-Archive-Tar/Makefile @@ -7,6 +7,7 @@ PORTNAME= Archive-Tar PORTVERSION= 1.68 +PORTREVISION= 1 CATEGORIES= archivers perl5 MASTER_SITES= CPAN PKGNAMEPREFIX= p5- @@ -14,8 +15,7 @@ PKGNAMEPREFIX= p5- MAINTAINER= jadawin@FreeBSD.org COMMENT= Perl module for creation and manipulation of tar files -RUN_DEPENDS= p5-IO-Compress-Bzip2>=2.012:${PORTSDIR}/archivers/p5-IO-Compress-Bzip2 \ - p5-IO-String>=0:${PORTSDIR}/devel/p5-IO-String +RUN_DEPENDS= p5-IO-String>=0:${PORTSDIR}/devel/p5-IO-String PERL_CONFIGURE= YES @@ -34,7 +34,8 @@ RUN_DEPENDS+= p5-Package-Constants>=0:${PORTSDIR}/devel/p5-Package-Constants .endif .if ${PERL_LEVEL} < 500903 -RUN_DEPENDS+= p5-IO-Zlib>=1.01:${PORTSDIR}/archivers/p5-IO-Zlib +RUN_DEPENDS+= p5-IO-Zlib>=1.01:${PORTSDIR}/archivers/p5-IO-Zlib \ + p5-IO-Compress>=2.017:${PORTSDIR}/archivers/p5-IO-Compress .endif .if ${PERL_LEVEL} >= 501000 diff --git a/archivers/p5-Archive-Zip/Makefile b/archivers/p5-Archive-Zip/Makefile index 4bcbe53bf363..4a665415c03a 100644 --- a/archivers/p5-Archive-Zip/Makefile +++ b/archivers/p5-Archive-Zip/Makefile @@ -7,6 +7,7 @@ PORTNAME= Archive-Zip PORTVERSION= 1.30 +PORTREVISION= 1 CATEGORIES= archivers perl5 MASTER_SITES= CPAN PKGNAMEPREFIX= p5- @@ -14,11 +15,16 @@ PKGNAMEPREFIX= p5- MAINTAINER= perl@FreeBSD.org COMMENT= Perl module to create, manipulate, read, and write Zip archive files -BUILD_DEPENDS= p5-Compress-Zlib>=1.14:${PORTSDIR}/archivers/p5-Compress-Zlib -RUN_DEPENDS= ${BUILD_DEPENDS} - PERL_CONFIGURE= yes MAN3= Archive::Zip.3 Archive::Zip::Tree.3 Archive::Zip::FAQ.3 Archive::Zip::MemberRead.3 -.include <bsd.port.mk> +.include <bsd.port.pre.mk> + +.if ${PERL_LEVEL} < 500903 +BUILD_DEPENDS+= p5-IO-Compress>=2.017:${PORTSDIR}/archivers/p5-IO-Compress +RUN_DEPENDS+= p5-IO-Compress>=2.017:${PORTSDIR}/archivers/p5-IO-Compress +.endif + +.include <bsd.port.post.mk> + diff --git a/archivers/p5-IO-Compress-Lzma/Makefile b/archivers/p5-IO-Compress-Lzma/Makefile index 622e5c3bcf40..7d66f34d26bd 100644 --- a/archivers/p5-IO-Compress-Lzma/Makefile +++ b/archivers/p5-IO-Compress-Lzma/Makefile @@ -7,6 +7,7 @@ PORTNAME= IO-Compress-Lzma PORTVERSION= 2.030 +PORTREVISION= 1 CATEGORIES= archivers perl5 MASTER_SITES= CPAN PKGNAMEPREFIX= p5- @@ -15,9 +16,9 @@ MAINTAINER= sunpoet@sunpoet.net COMMENT= Write lzma files/buffers BUILD_DEPENDS= ${SITE_PERL}/${PERL_ARCH}/Compress/Raw/Lzma.pm:${PORTSDIR}/archivers/p5-Compress-Raw-Lzma \ - ${SITE_PERL}/IO/Compress/Base.pm:${PORTSDIR}/archivers/p5-IO-Compress-Base + ${SITE_PERL}/IO/Compress/Base.pm:${PORTSDIR}/archivers/p5-IO-Compress RUN_DEPENDS= ${SITE_PERL}/${PERL_ARCH}/Compress/Raw/Lzma.pm:${PORTSDIR}/archivers/p5-Compress-Raw-Lzma \ - ${SITE_PERL}/IO/Compress/Base.pm:${PORTSDIR}/archivers/p5-IO-Compress-Base + ${SITE_PERL}/IO/Compress/Base.pm:${PORTSDIR}/archivers/p5-IO-Compress PERL_CONFIGURE= yes diff --git a/archivers/p5-IO-Zlib/Makefile b/archivers/p5-IO-Zlib/Makefile index a85f3f14a33b..325e758da29e 100644 --- a/archivers/p5-IO-Zlib/Makefile +++ b/archivers/p5-IO-Zlib/Makefile @@ -7,6 +7,7 @@ PORTNAME= IO-Zlib PORTVERSION= 1.10 +PORTREVISION= 1 CATEGORIES= archivers perl5 MASTER_SITES= CPAN MASTER_SITE_SUBDIR= IO @@ -15,10 +16,14 @@ PKGNAMEPREFIX= p5- MAINTAINER= kuriyama@FreeBSD.org COMMENT= IO:: style interface to Compress::Zlib -BUILD_DEPENDS= p5-Compress-Zlib>=2:${PORTSDIR}/archivers/p5-Compress-Zlib -RUN_DEPENDS= p5-Compress-Zlib>=2:${PORTSDIR}/archivers/p5-Compress-Zlib - PERL_CONFIGURE= yes MAN3= IO::Zlib.3 -.include <bsd.port.mk> +.include <bsd.port.pre.mk> + +.if ${PERL_LEVEL} < 500903 +BUILD_DEPENDS= p5-IO-Compress>=2:${PORTSDIR}/archivers/p5-IO-Compress +RUN_DEPENDS= p5-IO-Compress>=2:${PORTSDIR}/archivers/p5-IO-Compress +.endif + +.include <bsd.port.post.mk> diff --git a/archivers/p5-POE-Filter-Zlib/Makefile b/archivers/p5-POE-Filter-Zlib/Makefile index 41713af8f31c..13549533a9ea 100644 --- a/archivers/p5-POE-Filter-Zlib/Makefile +++ b/archivers/p5-POE-Filter-Zlib/Makefile @@ -7,6 +7,7 @@ PORTNAME= POE-Filter-Zlib PORTVERSION= 2.0.2 +PORTREVISION= 1 CATEGORIES= archivers perl5 MASTER_SITES= CPAN PKGNAMEPREFIX= p5- @@ -26,7 +27,7 @@ MAN3= POE::Filter::Zlib.3 \ .include <bsd.port.pre.mk> .if ${PERL_LEVEL} < 500903 -RUN_DEPENDS+= p5-Compress-Zlib>=1.34:${PORTSDIR}/archivers/p5-Compress-Zlib +RUN_DEPENDS+= p5-IO-Compress>=2.017:${PORTSDIR}/archivers/p5-IO-Compress .endif .include <bsd.port.post.mk> |