svn commit: r534788 - head/graphics/darktable/files

Matthias Andree mandree at FreeBSD.org
Sat May 9 16:42:41 UTC 2020


Author: mandree
Date: Sat May  9 16:42:40 2020
New Revision: 534788
URL: https://svnweb.freebsd.org/changeset/ports/534788

Log:
  graphics/darktable: fix broken build, data/kernels/ related
  
  This patch is to fix this problem:
  
  | CMake Error at data/kernels/CMakeLists.txt:34 (foreach):
  |   Unknown argument:
  | /usr/ports/graphics/darktable/work/darktable-3.0.0/data/kernels/atrous.cl
  
  Approved by:	portmgr@ (blanket approval to fix broken builds)

Added:
  head/graphics/darktable/files/patch-data_kernels_CMakeLists.txt   (contents, props changed)

Added: head/graphics/darktable/files/patch-data_kernels_CMakeLists.txt
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/graphics/darktable/files/patch-data_kernels_CMakeLists.txt	Sat May  9 16:42:40 2020	(r534788)
@@ -0,0 +1,13 @@
+--- data/kernels/CMakeLists.txt.orig	2020-04-15 07:10:53 UTC
++++ data/kernels/CMakeLists.txt
+@@ -31,8 +31,8 @@ macro (testcompile_opencl_kernel IN)
+ endmacro (testcompile_opencl_kernel)
+ 
+ if (TESTBUILD_OPENCL_PROGRAMS)
+-  foreach(IN ${DT_OPENCL_KERNELS})
+-    testcompile_opencl_kernel(${IN})
++  foreach(i ${DT_OPENCL_KERNELS})
++    testcompile_opencl_kernel(${i})
+   endforeach()
+ endif()
+ 


More information about the svn-ports-head mailing list