svn commit: r534789 - branches/2020Q2/graphics/darktable/files

Matthias Andree mandree at FreeBSD.org
Sat May 9 16:55:25 UTC 2020


Author: mandree
Date: Sat May  9 16:55:24 2020
New Revision: 534789
URL: https://svnweb.freebsd.org/changeset/ports/534789

Log:
  MFH: r534788
  
  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)
  
  Note that his revealed a Tools/scripts/mfh bug where it does not currently
  check out the port directory, but only files/.
  https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=246336

Added:
  branches/2020Q2/graphics/darktable/files/patch-data_kernels_CMakeLists.txt
     - copied unchanged from r534788, head/graphics/darktable/files/patch-data_kernels_CMakeLists.txt
Modified:
Directory Properties:
  branches/2020Q2/   (props changed)

Copied: branches/2020Q2/graphics/darktable/files/patch-data_kernels_CMakeLists.txt (from r534788, head/graphics/darktable/files/patch-data_kernels_CMakeLists.txt)
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ branches/2020Q2/graphics/darktable/files/patch-data_kernels_CMakeLists.txt	Sat May  9 16:55:24 2020	(r534789, copy of r534788, head/graphics/darktable/files/patch-data_kernels_CMakeLists.txt)
@@ -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-all mailing list