Skip site navigation (1)Skip section navigation (2)
Date:      Sat, 19 Mar 2016 14:23:54 +0000 (UTC)
From:      Raphael Kubo da Costa <rakuco@FreeBSD.org>
To:        ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org
Subject:   svn commit: r411402 - head/devel/kdevplatform/files
Message-ID:  <201603191423.u2JENsnR003379@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: rakuco
Date: Sat Mar 19 14:23:54 2016
New Revision: 411402
URL: https://svnweb.freebsd.org/changeset/ports/411402

Log:
  Add a patch to properly declare some build dependencies.
  
  The lack of the dependency breaks parallel builds way more often starting with
  CMake 3.5.0.
  
  PR:		208033

Added:
  head/devel/kdevplatform/files/patch-plugins_filetemplates_CMakeLists.txt   (contents, props changed)

Added: head/devel/kdevplatform/files/patch-plugins_filetemplates_CMakeLists.txt
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/devel/kdevplatform/files/patch-plugins_filetemplates_CMakeLists.txt	Sat Mar 19 14:23:54 2016	(r411402)
@@ -0,0 +1,14 @@
+Make sure the dependency exists, as testfiletemplates depends on ui files
+generated by kdevfiletemplates.
+
+Submitted upstream: https://phabricator.kde.org/D1160
+--- plugins/filetemplates/CMakeLists.txt.orig	2016-03-17 11:59:47 UTC
++++ plugins/filetemplates/CMakeLists.txt
+@@ -81,6 +81,7 @@ main.cpp
+ )
+ 
+ kde4_add_executable(testfiletemplates ${test_srcs})
++add_dependencies(testfiletemplates kdevfiletemplates)
+ 
+ target_link_libraries(testfiletemplates
+     ${KDE4_KDECORE_LIBS}



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201603191423.u2JENsnR003379>