svn commit: r441265 - head/devel/kyua

Bryan Drewery bdrewery at FreeBSD.org
Fri May 19 19:26:34 UTC 2017


Author: bdrewery
Date: Fri May 19 19:26:32 2017
New Revision: 441265
URL: https://svnweb.freebsd.org/changeset/ports/441265

Log:
  WITH_CCACHE_BUILD: Don't leak ccache in as a runtime-dependency.
  
  fmake and bmake's := feature does not evaluate a variable immediately
  if it does not yet exist (bmake's manpage notes this).  In this case
  BUILD_DEPENDS is empty but later gets ccache added to it.  So when
  RUN_DEPENDS is finally evaluated it actually gets ccache in it.
  
  This line was not useful anyhow since there were not BUILD_DEPENDS to add
  in; LIB_DEPENDS is its own unique thing that works as a BUILD and RUN
  dependency but not directly related to the other variables.
  
  Sponsored by:	Dell EMC Isilon

Modified:
  head/devel/kyua/Makefile

Modified: head/devel/kyua/Makefile
==============================================================================
--- head/devel/kyua/Makefile	Fri May 19 19:02:19 2017	(r441264)
+++ head/devel/kyua/Makefile	Fri May 19 19:26:32 2017	(r441265)
@@ -3,7 +3,7 @@
 PORTNAME=	kyua
 PORTVERSION=	0.13
 PORTEPOCH=	3
-PORTREVISION=	2
+PORTREVISION=	3
 CATEGORIES=	devel
 MASTER_SITES=	https://github.com/jmmv/kyua/releases/download/${PORTNAME}-${PORTVERSION}/ \
 		LOCAL/jmmv
@@ -15,7 +15,6 @@ LICENSE=	BSD3CLAUSE
 
 LIB_DEPENDS=	liblutok.so:devel/lutok
 LIB_DEPENDS+=	libsqlite3.so:databases/sqlite3
-RUN_DEPENDS:=	${BUILD_DEPENDS}
 
 CONFLICTS=	kyua-atf-compat-[0-9]* kyua-cli-[0-9]* kyua-testers-[0-9]*
 


More information about the svn-ports-all mailing list