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 /print | |
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 'print')
-rw-r--r-- | print/freetype-tools/Makefile | 2 | ||||
-rw-r--r-- | print/latex-cjk/Makefile | 2 | ||||
-rw-r--r-- | print/pkpgcounter/Makefile | 2 | ||||
-rw-r--r-- | print/splix/Makefile | 2 |
4 files changed, 4 insertions, 4 deletions
diff --git a/print/freetype-tools/Makefile b/print/freetype-tools/Makefile index 61915786e8c6..4eab433875cc 100644 --- a/print/freetype-tools/Makefile +++ b/print/freetype-tools/Makefile @@ -23,7 +23,7 @@ COMMENT= Tools for FreeType 1 LIB_DEPENDS= ttf.4:${PORTSDIR}/print/freetype RUN_DEPENDS= ${LOCALBASE}/lib/libkpathsea.a:${PORTSDIR}/print/teTeX-base \ t1asm:${PORTSDIR}/print/t1utils -BUILD_DEPENDS= ${RUN_DEPENDS} +BUILD_DEPENDS:= ${RUN_DEPENDS} USE_GMAKE= yes USE_AUTOTOOLS= libtool diff --git a/print/latex-cjk/Makefile b/print/latex-cjk/Makefile index fe954d707317..2367f68e8271 100644 --- a/print/latex-cjk/Makefile +++ b/print/latex-cjk/Makefile @@ -20,7 +20,7 @@ COMMENT= A LaTeX2e macro package which enables the use of CJK scripts RUN_DEPENDS= zh-arphicttf>=0:${PORTSDIR}/chinese/arphicttf \ teTeX>=0:${PORTSDIR}/print/teTeX \ ttf2pk:${PORTSDIR}/print/freetype-tools -BUILD_DEPENDS= ${RUN_DEPENDS} \ +BUILD_DEPENDS:= ${RUN_DEPENDS} \ ${LOCALBASE}/share/ttf2pt1/maps/cugb.map:${PORTSDIR}/chinese/ttf2pt1 \ ttf2pt1:${PORTSDIR}/print/ttf2pt1 diff --git a/print/pkpgcounter/Makefile b/print/pkpgcounter/Makefile index 291d40ef8909..85d79c92483b 100644 --- a/print/pkpgcounter/Makefile +++ b/print/pkpgcounter/Makefile @@ -15,7 +15,7 @@ MAINTAINER= ports@FreeBSD.org COMMENT= Count pages and ink coverage precent BUILD_DEPENDS= ${PYTHON_SITELIBDIR}/PIL.pth:${PORTSDIR}/graphics/py-imaging -RUN_DEPENDS= ${BUILD_DEPENDS} +RUN_DEPENDS:= ${BUILD_DEPENDS} LICENSE= GPLv3 LICENSE_FILE= ${WRKSRC}/COPYING diff --git a/print/splix/Makefile b/print/splix/Makefile index be62b48311ab..c3729a4e820d 100644 --- a/print/splix/Makefile +++ b/print/splix/Makefile @@ -16,7 +16,7 @@ COMMENT= A set of CUPS printer drivers for Samsung Printer Language printers LIB_DEPENDS= BUILD_DEPENDS= cups-config:${PORTSDIR}/print/cups-base -RUN_DEPENDS= ${BUILD_DEPENDS} +RUN_DEPENDS:= ${BUILD_DEPENDS} USE_GMAKE= yes USE_BZIP2= yes |