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 /games | |
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 'games')
-rw-r--r-- | games/bubbros/Makefile | 2 | ||||
-rw-r--r-- | games/p5-Games-Bingo-Print/Makefile | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/games/bubbros/Makefile b/games/bubbros/Makefile index 4d9fe040c425..8c2813fd3837 100644 --- a/games/bubbros/Makefile +++ b/games/bubbros/Makefile @@ -15,7 +15,7 @@ MAINTAINER= janos.mohacsi@bsd.hu COMMENT= Multiplayer clone of the famous Bubble Bobble game RUN_DEPENDS= ${PYTHON_SITELIBDIR}/pygame/__init__.py:${PORTSDIR}/devel/py-game -BUILD_DEPENDS= ${RUN_DEPENDS} +BUILD_DEPENDS:= ${RUN_DEPENDS} USE_PYTHON= yes USE_BZIP2= yes diff --git a/games/p5-Games-Bingo-Print/Makefile b/games/p5-Games-Bingo-Print/Makefile index 8cd4dcb4be14..8d5c56d41359 100644 --- a/games/p5-Games-Bingo-Print/Makefile +++ b/games/p5-Games-Bingo-Print/Makefile @@ -21,7 +21,7 @@ BUILD_DEPENDS= p5-Games-Bingo>=0:${PORTSDIR}/games/p5-Games-Bingo \ p5-Test-Pod>=0:${PORTSDIR}/devel/p5-Test-Pod \ p5-Test-Perl-Critic>=0:${PORTSDIR}/textproc/p5-Test-Perl-Critic \ p5-Test-Pod-Coverage>=0:${PORTSDIR}/devel/p5-Test-Pod-Coverage -RUN_DEPENDS= ${BUILD_DEPENDS} +RUN_DEPENDS:= ${BUILD_DEPENDS} PERL_CONFIGURE= yes |