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 /sysutils | |
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 'sysutils')
-rw-r--r-- | sysutils/confman/Makefile | 2 | ||||
-rw-r--r-- | sysutils/cvsweb-converters/Makefile | 2 | ||||
-rw-r--r-- | sysutils/gkrelltop/Makefile | 2 | ||||
-rw-r--r-- | sysutils/p5-Schedule-Load/Makefile | 2 | ||||
-rw-r--r-- | sysutils/p5-arclog/Makefile | 2 | ||||
-rw-r--r-- | sysutils/p5-reslog/Makefile | 2 | ||||
-rw-r--r-- | sysutils/py-zdaemon/Makefile | 2 |
7 files changed, 7 insertions, 7 deletions
diff --git a/sysutils/confman/Makefile b/sysutils/confman/Makefile index ee5db5469e1a..713b0bbbae99 100644 --- a/sysutils/confman/Makefile +++ b/sysutils/confman/Makefile @@ -18,7 +18,7 @@ RUN_DEPENDS= bash:${PORTSDIR}/shells/bash \ sudo:${PORTSDIR}/security/sudo \ greadlink:${PORTSDIR}/sysutils/coreutils \ wget:${PORTSDIR}/ftp/wget -BUILD_DEPENDS= ${RUN_DEPENDS} +BUILD_DEPENDS:= ${RUN_DEPENDS} GNU_CONFIGURE= yes diff --git a/sysutils/cvsweb-converters/Makefile b/sysutils/cvsweb-converters/Makefile index 51ab584ddf6b..b4b1b485ef2b 100644 --- a/sysutils/cvsweb-converters/Makefile +++ b/sysutils/cvsweb-converters/Makefile @@ -18,7 +18,7 @@ COMMENT= Create hyperlinks to cvsweb from cvs[up] output or FreeBSD commitlogs RUN_DEPENDS= ${SITE_PERL}/URI/Escape.pm:${PORTSDIR}/net/p5-URI \ ${SITE_PERL}/Config/IniFiles.pm:${PORTSDIR}/devel/p5-Config-IniFiles \ ${SITE_PERL}/Time/ParseDate.pm:${PORTSDIR}/devel/p5-Time-modules -BUILD_DEPENDS= ${RUN_DEPENDS} +BUILD_DEPENDS:= ${RUN_DEPENDS} NO_BUILD= yes USE_BZIP2= yes diff --git a/sysutils/gkrelltop/Makefile b/sysutils/gkrelltop/Makefile index 71272fb0cd9e..f759d7f50418 100644 --- a/sysutils/gkrelltop/Makefile +++ b/sysutils/gkrelltop/Makefile @@ -16,7 +16,7 @@ MAINTAINER= david@pinko.net COMMENT= Plugin for gkrellm 2.x shows top three processes, requires procfs RUN_DEPENDS= gkrellmd:${PORTSDIR}/sysutils/gkrellm2 -BUILD_DEPENDS= ${RUN_DEPENDS} +BUILD_DEPENDS:= ${RUN_DEPENDS} USE_GMAKE= yes MAKE_ARGS= INSTALLDIR=${LOCALBASE}/libexec/gkrellm2/plugins \ diff --git a/sysutils/p5-Schedule-Load/Makefile b/sysutils/p5-Schedule-Load/Makefile index 0cc7f73ef748..ee6fbbdd6311 100644 --- a/sysutils/p5-Schedule-Load/Makefile +++ b/sysutils/p5-Schedule-Load/Makefile @@ -20,7 +20,7 @@ LICENSE_COMB= dual RUN_DEPENDS= p5-Proc-ProcessTable>=0.40:${PORTSDIR}/devel/p5-Proc-ProcessTable \ p5-Unix-Processors>=2.02:${PORTSDIR}/sysutils/p5-Unix-Processors \ p5-IPC-Locker>=1.41:${PORTSDIR}/devel/p5-IPC-Locker -BUILD_DEPENDS= ${RUN_DEPENDS} +BUILD_DEPENDS:= ${RUN_DEPENDS} MAKE_JOBS_UNSAFE= yes diff --git a/sysutils/p5-arclog/Makefile b/sysutils/p5-arclog/Makefile index 324ec87f1f1e..a73aaabcbf1f 100644 --- a/sysutils/p5-arclog/Makefile +++ b/sysutils/p5-arclog/Makefile @@ -20,7 +20,7 @@ RUN_DEPENDS= p5-TimeDate>=0:${PORTSDIR}/devel/p5-TimeDate \ p5-Compress-Bzip2>=0:${PORTSDIR}/archivers/p5-Compress-Bzip2 \ p5-File-MMagic>=0:${PORTSDIR}/devel/p5-File-MMagic \ p5-Term-ReadKey>=0:${PORTSDIR}/devel/p5-Term-ReadKey -BUILD_DEPENDS= ${RUN_DEPENDS} +BUILD_DEPENDS:= ${RUN_DEPENDS} PERL_CONFIGURE= yes MAN1= arclog.1 diff --git a/sysutils/p5-reslog/Makefile b/sysutils/p5-reslog/Makefile index 18d922e207dd..10b298b1dc19 100644 --- a/sysutils/p5-reslog/Makefile +++ b/sysutils/p5-reslog/Makefile @@ -19,7 +19,7 @@ COMMENT= Reverse-resolve IP in Apache log files RUN_DEPENDS= p5-Compress-Bzip2>=0:${PORTSDIR}/archivers/p5-Compress-Bzip2 \ p5-File-MMagic>=0:${PORTSDIR}/devel/p5-File-MMagic \ p5-Term-ReadKey>=0:${PORTSDIR}/devel/p5-Term-ReadKey -BUILD_DEPENDS= ${RUN_DEPENDS} +BUILD_DEPENDS:= ${RUN_DEPENDS} PERL_CONFIGURE= yes MAN1= reslog.1 diff --git a/sysutils/py-zdaemon/Makefile b/sysutils/py-zdaemon/Makefile index 27fce0432492..0e3c853a78b0 100644 --- a/sysutils/py-zdaemon/Makefile +++ b/sysutils/py-zdaemon/Makefile @@ -15,7 +15,7 @@ MAINTAINER= zope@FreeBSD.org COMMENT= Daemon Process Control Library and Tools for Unix-bases Systems BUILD_DEPENDS= ${LOCALBASE}/bin/zconfig:${PORTSDIR}/devel/py-zconfig -RUN_DEPENDS= ${BUILDS_DEPENDS} +RUN_DEPENDS:= ${BUILDS_DEPENDS} USE_PYTHON= 2.4+ USE_PYDISTUTILS= easy_install |