diff options
author | swills <swills@FreeBSD.org> | 2012-06-11 02:42:48 +0800 |
---|---|---|
committer | swills <swills@FreeBSD.org> | 2012-06-11 02:42:48 +0800 |
commit | 811c4be9f0b92363ffcd033d9165287cd6bc9b63 (patch) | |
tree | 5a933c2e64852a72c056cf29e30a9308c7b2c661 /archivers | |
parent | 08572d451b927d5d7517db00347e5eb8a9db625d (diff) | |
download | freebsd-ports-gnome-811c4be9f0b92363ffcd033d9165287cd6bc9b63.tar.gz freebsd-ports-gnome-811c4be9f0b92363ffcd033d9165287cd6bc9b63.tar.zst freebsd-ports-gnome-811c4be9f0b92363ffcd033d9165287cd6bc9b63.zip |
- Convert all remaining instances of BUILD_DEPENDS=${RUN_DEPENDS} or
RUN_DEPENDS=${BUILD_DEPENDS} to use := which portlint has warned
about for a while.
PR: ports/168208
Approved by: portmgr (miwi)
Diffstat (limited to 'archivers')
-rw-r--r-- | archivers/p5-Archive-SimpleExtractor/Makefile | 2 | ||||
-rw-r--r-- | archivers/p5-POE-Filter-Zlib/Makefile | 2 | ||||
-rw-r--r-- | archivers/p5-PerlIO-via-Bzip2/Makefile | 2 |
3 files changed, 3 insertions, 3 deletions
diff --git a/archivers/p5-Archive-SimpleExtractor/Makefile b/archivers/p5-Archive-SimpleExtractor/Makefile index 1fca9e66ba8c..76818191bb00 100644 --- a/archivers/p5-Archive-SimpleExtractor/Makefile +++ b/archivers/p5-Archive-SimpleExtractor/Makefile @@ -19,7 +19,7 @@ BUILD_DEPENDS= p5-Archive-Rar>=2.02:${PORTSDIR}/archivers/p5-Archive-Rar \ p5-Archive-Zip>=1.30:${PORTSDIR}/archivers/p5-Archive-Zip \ p5-Module-Load>=0.16:${PORTSDIR}/devel/p5-Module-Load \ p5-Module-Load-Conditional>=0.3:${PORTSDIR}/devel/p5-Module-Load-Conditional -RUN_DEPENDS= ${BUILD_DEPENDS} +RUN_DEPENDS:= ${BUILD_DEPENDS} PERL_CONFIGURE= yes MAN3= Archive::SimpleExtractor::Zip.3 \ diff --git a/archivers/p5-POE-Filter-Zlib/Makefile b/archivers/p5-POE-Filter-Zlib/Makefile index 13549533a9ea..c7538eaecd5a 100644 --- a/archivers/p5-POE-Filter-Zlib/Makefile +++ b/archivers/p5-POE-Filter-Zlib/Makefile @@ -17,7 +17,7 @@ MAINTAINER= perl@FreeBSD.org COMMENT= A POE filter wrapped around Compress::Zlib RUN_DEPENDS= p5-POE>=0.38:${PORTSDIR}/devel/p5-POE -BUILD_DEPENDS= ${RUN_DEPENDS} +BUILD_DEPENDS:= ${RUN_DEPENDS} PERL_CONFIGURE= yes diff --git a/archivers/p5-PerlIO-via-Bzip2/Makefile b/archivers/p5-PerlIO-via-Bzip2/Makefile index 5437dc90fa11..261a88db7f20 100644 --- a/archivers/p5-PerlIO-via-Bzip2/Makefile +++ b/archivers/p5-PerlIO-via-Bzip2/Makefile @@ -15,7 +15,7 @@ MAINTAINER= perl@FreeBSD.org COMMENT= Perl extension to provide a PerlIO layer to bzip2/bunzip2 BUILD_DEPENDS= p5-Compress-Bzip2>=0:${PORTSDIR}/archivers/p5-Compress-Bzip2 -RUN_DEPENDS= ${BUILD_DEPENDS} +RUN_DEPENDS:= ${BUILD_DEPENDS} PERL_CONFIGURE= yes |