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 /misc | |
parent | 08572d451b927d5d7517db00347e5eb8a9db625d (diff) | |
download | freebsd-ports-graphics-811c4be9f0b92363ffcd033d9165287cd6bc9b63.tar.gz freebsd-ports-graphics-811c4be9f0b92363ffcd033d9165287cd6bc9b63.tar.zst freebsd-ports-graphics-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 'misc')
-rw-r--r-- | misc/bibletime/Makefile | 2 | ||||
-rw-r--r-- | misc/p5-Array-Diff/Makefile | 2 | ||||
-rw-r--r-- | misc/p5-Geo-Cache/Makefile | 2 | ||||
-rw-r--r-- | misc/p5-Geo-Coder-Multiple/Makefile | 2 | ||||
-rw-r--r-- | misc/p5-Locale-Geocode/Makefile | 2 | ||||
-rw-r--r-- | misc/xiphos/Makefile | 2 |
6 files changed, 6 insertions, 6 deletions
diff --git a/misc/bibletime/Makefile b/misc/bibletime/Makefile index af0a7066976..3784d0bb755 100644 --- a/misc/bibletime/Makefile +++ b/misc/bibletime/Makefile @@ -18,7 +18,7 @@ LICENSE= GPLv2 LICENSE_FILE= ${WRKSRC}/LICENSE RUN_DEPENDS= ${LOCALBASE}/lib/libsword-1.6.2.so:${PORTSDIR}/misc/sword -BUILD_DEPENDS= ${RUN_DEPENDS} +BUILD_DEPENDS:= ${RUN_DEPENDS} LIB_DEPENDS= clucene.0:${PORTSDIR}/textproc/clucene USE_BZIP2= yes diff --git a/misc/p5-Array-Diff/Makefile b/misc/p5-Array-Diff/Makefile index f544bb7c823..8df7105339c 100644 --- a/misc/p5-Array-Diff/Makefile +++ b/misc/p5-Array-Diff/Makefile @@ -16,7 +16,7 @@ COMMENT= Diff two arrays RUN_DEPENDS= p5-Algorithm-Diff>=1.19:${PORTSDIR}/devel/p5-Algorithm-Diff \ p5-Class-Accessor>=0:${PORTSDIR}/devel/p5-Class-Accessor -BUILD_DEPENDS= ${RUN_DEPENDS} +BUILD_DEPENDS:= ${RUN_DEPENDS} PERL_CONFIGURE= yes diff --git a/misc/p5-Geo-Cache/Makefile b/misc/p5-Geo-Cache/Makefile index daa5254353b..06f4ed304f3 100644 --- a/misc/p5-Geo-Cache/Makefile +++ b/misc/p5-Geo-Cache/Makefile @@ -16,7 +16,7 @@ COMMENT= Object interface for GPS waypoints RUN_DEPENDS= p5-Time-modules>=0:${PORTSDIR}/devel/p5-Time-modules \ p5-XML-Simple>=0:${PORTSDIR}/textproc/p5-XML-Simple -BUILD_DEPENDS= ${RUN_DEPENDS} +BUILD_DEPENDS:= ${RUN_DEPENDS} PERL_CONFIGURE= yes diff --git a/misc/p5-Geo-Coder-Multiple/Makefile b/misc/p5-Geo-Coder-Multiple/Makefile index 9ea9e7f20f6..d59de9eaf89 100644 --- a/misc/p5-Geo-Coder-Multiple/Makefile +++ b/misc/p5-Geo-Coder-Multiple/Makefile @@ -16,7 +16,7 @@ MAINTAINER= wen@FreeBSD.org COMMENT= Perl module to tie together multiple Geo::Coder modules RUN_DEPENDS= p5-List-Util-WeightedRoundRobin>=0:${PORTSDIR}/misc/p5-List-Util-WeightedRoundRobin -BUILD_DEPENDS= ${RUN_DEPENDS} +BUILD_DEPENDS:= ${RUN_DEPENDS} PERL_CONFIGURE= yes diff --git a/misc/p5-Locale-Geocode/Makefile b/misc/p5-Locale-Geocode/Makefile index fc819f1c4e6..c15383c5d47 100644 --- a/misc/p5-Locale-Geocode/Makefile +++ b/misc/p5-Locale-Geocode/Makefile @@ -19,7 +19,7 @@ MAKE_JOBS_SAFE= yes RUN_DEPENDS= p5-XML-SAX-Expat>=0.39:${PORTSDIR}/textproc/p5-XML-SAX-Expat \ p5-XML-Simple>=2.16:${PORTSDIR}/textproc/p5-XML-Simple -BUILD_DEPENDS= ${RUN_DEPENDS} +BUILD_DEPENDS:= ${RUN_DEPENDS} PERL_CONFIGURE= YES diff --git a/misc/xiphos/Makefile b/misc/xiphos/Makefile index effdb086914..8e9fbaffcbf 100644 --- a/misc/xiphos/Makefile +++ b/misc/xiphos/Makefile @@ -17,7 +17,7 @@ COMMENT= A bible interface utilizing the sword framework LICENSE= GPLv2 RUN_DEPENDS= ${LOCALBASE}/lib/libsword-1.6.2.so:${PORTSDIR}/misc/sword -BUILD_DEPENDS= ${RUN_DEPENDS} \ +BUILD_DEPENDS:= ${RUN_DEPENDS} \ docbook2html:${PORTSDIR}/textproc/docbook-utils \ gnome-doc-tool:${PORTSDIR}/textproc/gnome-doc-utils \ nspr>=4.8:${PORTSDIR}/devel/nspr |