Date: Tue, 1 Jul 2014 07:04:48 +0000 (UTC) From: Eitan Adler <eadler@FreeBSD.org> To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r359963 - in head: games/crafty-open-large math/coq net/p5-AddressBook shells/scponly www/p5-HTML-Summary Message-ID: <201407010704.s6174mnr000487@svn.freebsd.org>
next in thread | raw e-mail | index | archive | help
Author: eadler Date: Tue Jul 1 07:04:47 2014 New Revision: 359963 URL: http://svnweb.freebsd.org/changeset/ports/359963 QAT: https://qat.redports.org/buildarchive/r359963/ Log: multiple: avoid RUN_DEPENDS=${BUILD_DEPENDS} anti-pattern The ports infrastructure may insert additional content into the BUILD_DEPENDS variable which is not supposed to be a run depend. Approved by: portmgr (bapt) Modified: head/games/crafty-open-large/Makefile head/math/coq/Makefile head/net/p5-AddressBook/Makefile head/shells/scponly/Makefile head/www/p5-HTML-Summary/Makefile Modified: head/games/crafty-open-large/Makefile ============================================================================== --- head/games/crafty-open-large/Makefile Tue Jul 1 06:33:38 2014 (r359962) +++ head/games/crafty-open-large/Makefile Tue Jul 1 07:04:47 2014 (r359963) @@ -13,7 +13,7 @@ MAINTAINER= ports@FreeBSD.org COMMENT= The large opening book for crafty BUILD_DEPENDS= crafty:${PORTSDIR}/games/crafty -RUN_DEPENDS= ${BUILD_DEPENDS} +RUN_DEPENDS= crafty:${PORTSDIR}/games/crafty DIST_SUBDIR= crafty USES= zip Modified: head/math/coq/Makefile ============================================================================== --- head/math/coq/Makefile Tue Jul 1 06:33:38 2014 (r359962) +++ head/math/coq/Makefile Tue Jul 1 07:04:47 2014 (r359963) @@ -32,7 +32,7 @@ OPTIONS_DEFAULT= DOCS IDE OPTIONS_SUB= yes IDE_DESC= Include desktop environment (coqide) IDE_BUILD_DEPENDS= lablgtk2:${PORTSDIR}/x11-toolkits/ocaml-lablgtk2 -IDE_RUN_DEPENDS= ${IDE_BUILD_DEPENDS +IDE_RUN_DEPENDS:= lablgtk2:${PORTSDIR}/x11-toolkits/ocaml-lablgtk2 IDE_CONFIGURE_OFF= --coqide no DOCS_USE= TEX=latex:build,dvipsk:build DOCS_BUILD_DEPENDS= hevea:${PORTSDIR}/textproc/hevea \ Modified: head/net/p5-AddressBook/Makefile ============================================================================== --- head/net/p5-AddressBook/Makefile Tue Jul 1 06:33:38 2014 (r359962) +++ head/net/p5-AddressBook/Makefile Tue Jul 1 07:04:47 2014 (r359963) @@ -14,7 +14,8 @@ COMMENT= Perl5 module providing an LDAP BUILD_DEPENDS= p5-Date-Manip>=0:${PORTSDIR}/devel/p5-Date-Manip \ p5-XML-DOM>=0:${PORTSDIR}/textproc/p5-XML-DOM -RUN_DEPENDS= ${BUILD_DEPENDS} +RUN_DEPENDS= p5-Date-Manip>=0:${PORTSDIR}/devel/p5-Date-Manip \ + p5-XML-DOM>=0:${PORTSDIR}/textproc/p5-XML-DOM USES= perl5 USE_PERL5= configure Modified: head/shells/scponly/Makefile ============================================================================== --- head/shells/scponly/Makefile Tue Jul 1 06:33:38 2014 (r359962) +++ head/shells/scponly/Makefile Tue Jul 1 07:04:47 2014 (r359963) @@ -49,7 +49,7 @@ UNISON_BUILD_DEPENDS= unison:${PORTSDIR UNISON_CONFIGURE_ENABLE= unison-compat WINSCP_CONFIGURE_ENABLE= winscp-compat -RUN_DEPENDS= ${BUILD_DEPENDS} +RUN_DEPENDS:= ${BUILD_DEPENDS} post-patch: @${ECHO_MSG} "In addition to knobs available from the OPTIONS dialog," Modified: head/www/p5-HTML-Summary/Makefile ============================================================================== --- head/www/p5-HTML-Summary/Makefile Tue Jul 1 06:33:38 2014 (r359962) +++ head/www/p5-HTML-Summary/Makefile Tue Jul 1 07:04:47 2014 (r359963) @@ -12,7 +12,8 @@ COMMENT= Produces summaries from the tex BUILD_DEPENDS= p5-HTML-Tree>=0:${PORTSDIR}/www/p5-HTML-Tree \ ja-p5-Jcode>=2.06:${PORTSDIR}/japanese/p5-Jcode -RUN_DEPENDS= ${BUILD_DEPENDS} +RUN_DEPENDS= p5-HTML-Tree>=0:${PORTSDIR}/www/p5-HTML-Tree \ + ja-p5-Jcode>=2.06:${PORTSDIR}/japanese/p5-Jcode USES= perl5 USE_PERL5= configure
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201407010704.s6174mnr000487>