svn commit: r547993 - in head/graphics/blender: . files

Li-Wen Hsu lwhsu at FreeBSD.org
Tue Sep 8 17:01:19 UTC 2020


Author: lwhsu
Date: Tue Sep  8 17:01:18 2020
New Revision: 547993
URL: https://svnweb.freebsd.org/changeset/ports/547993

Log:
  graphics/blender: Fix build when CYCLESOSL is off
  
  PR:		249184
  Submitted by:	Shane <FreeBSD at ShaneWare.Biz> (maintainer)

Added:
  head/graphics/blender/files/patch-build_files_cmake_Modules_FindPythonLibsUnix.cmake   (contents, props changed)
Modified:
  head/graphics/blender/Makefile

Modified: head/graphics/blender/Makefile
==============================================================================
--- head/graphics/blender/Makefile	Tue Sep  8 16:55:47 2020	(r547992)
+++ head/graphics/blender/Makefile	Tue Sep  8 17:01:18 2020	(r547993)
@@ -76,6 +76,7 @@ COLLADA_USES=			gnome
 COMPOSITOR_CMAKE_BOOL=		WITH_COMPOSITOR
 CYCLES_IMPLIES=			OPENIMAGEIO
 CYCLES_CMAKE_BOOL=		WITH_CYCLES
+CYCLES_LIB_DEPENDS=		libpugixml.so:textproc/pugixml
 CYCLESEMBR_IMPLIES=		CYCLES
 CYCLESEMBR_CMAKE_BOOL=		WITH_CYCLES_EMBREE
 CYCLESEMBR_LIB_DEPENDS=		libembree3.so:graphics/embree

Added: head/graphics/blender/files/patch-build_files_cmake_Modules_FindPythonLibsUnix.cmake
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/graphics/blender/files/patch-build_files_cmake_Modules_FindPythonLibsUnix.cmake	Tue Sep  8 17:01:18 2020	(r547993)
@@ -0,0 +1,11 @@
+--- build_files/cmake/Modules/FindPythonLibsUnix.cmake.orig	2020-09-07 10:17:41 UTC
++++ build_files/cmake/Modules/FindPythonLibsUnix.cmake
+@@ -34,7 +34,7 @@ IF(NOT PYTHON_ROOT_DIR AND NOT $ENV{PYTHON_ROOT_DIR} S
+   SET(PYTHON_ROOT_DIR $ENV{PYTHON_ROOT_DIR})
+ ENDIF()
+
+-SET(PYTHON_VERSION 3.7 CACHE STRING "Python Version (major and minor only)")
++SET(PYTHON_VERSION 3.8 CACHE STRING "Python Version (major and minor only)")
+ MARK_AS_ADVANCED(PYTHON_VERSION)
+
+


More information about the svn-ports-all mailing list