From owner-svn-ports-all@freebsd.org Tue Sep 8 17:01:19 2020 Return-Path: Delivered-To: svn-ports-all@mailman.nyi.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.nyi.freebsd.org (Postfix) with ESMTP id D81363CF8DF; Tue, 8 Sep 2020 17:01:19 +0000 (UTC) (envelope-from lwhsu@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256 client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 4BmBHz5T04z42NH; Tue, 8 Sep 2020 17:01:19 +0000 (UTC) (envelope-from lwhsu@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 9F1C9138F6; Tue, 8 Sep 2020 17:01:19 +0000 (UTC) (envelope-from lwhsu@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id 088H1Jj7021255; Tue, 8 Sep 2020 17:01:19 GMT (envelope-from lwhsu@FreeBSD.org) Received: (from lwhsu@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id 088H1JTE021253; Tue, 8 Sep 2020 17:01:19 GMT (envelope-from lwhsu@FreeBSD.org) Message-Id: <202009081701.088H1JTE021253@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: lwhsu set sender to lwhsu@FreeBSD.org using -f From: Li-Wen Hsu Date: Tue, 8 Sep 2020 17:01:19 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r547993 - in head/graphics/blender: . files X-SVN-Group: ports-head X-SVN-Commit-Author: lwhsu X-SVN-Commit-Paths: in head/graphics/blender: . files X-SVN-Commit-Revision: 547993 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.33 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 08 Sep 2020 17:01:19 -0000 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 (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) + +