Index: graphics/opencolorio/Makefile =================================================================== --- graphics/opencolorio/Makefile (revision 565173) +++ graphics/opencolorio/Makefile (working copy) @@ -3,8 +3,7 @@ PORTNAME= opencolorio DISTVERSIONPREFIX= v -DISTVERSION= 1.1.1 -PORTREVISION?= 1 +DISTVERSION= 2.0.0 CATEGORIES= graphics multimedia MAINTAINER?= FreeBSD@Shaneware.biz @@ -12,8 +11,7 @@ LICENSE= BSD3CLAUSE -USES= alias cmake compiler:c++11-lang localbase:ldflags pkgconfig \ - shebangfix +USES= alias cmake compiler:c++11-lang localbase:ldflags pkgconfig USE_GITHUB= yes GH_ACCOUNT= imageworks @@ -21,6 +19,7 @@ CMAKE_ON= USE_EXTERNAL_TINYXML USE_EXTERNAL_YAML CMAKE_OFF= OCIO_BUILD_JNIGLUE OCIO_BUILD_NUKE OCIO_BUILD_STATIC \ + OCIO_BUILD_TESTS OCIO_BUILD_GPU_TESTS \ OCIO_BUILD_DOCS CXXFLAGS+= ${CXXFLAGS_${CHOSEN_COMPILER_TYPE}} @@ -27,10 +26,6 @@ CXXFLAGS_gcc= -Wno-unused-function -Wno-error CXXFLAGS_clang= -Wno-deprecated-register -SHEBANG_FILES= share/sphinx/ExtractRstFromSourceCPP.py \ - share/sphinx/ExtractRstFromSourceSimple.py \ - src/pyglue/createPyDocH.py - PLIST_SUB+= LIBVERS=${PORTVERSION} .if ${MACHINE_CPU:Msse2} @@ -42,11 +37,15 @@ .include .if defined(OCIO_SLAVE) && ${OCIO_SLAVE} == tools -LIB_DEPENDS= liblcms2.so:graphics/lcms2 \ +LIB_DEPENDS= libexpat.so:textproc/expat2 \ + libHalf-2_5.so:graphics/ilmbase \ + liblcms2.so:graphics/lcms2 \ libOpenImageIO.so:graphics/openimageio \ - libOpenColorIO.so:graphics/opencolorio + libOpenColorIO.so:graphics/opencolorio \ + libpystring.so:devel/pystring \ + libyaml-cpp.so:devel/yaml-cpp CMAKE_ON+= OCIO_BUILD_APPS USE_EXTERNAL_LCMS -CMAKE_OFF+= OCIO_BUILD_SHARED OCIO_BUILD_PYGLUE +CMAKE_OFF+= OCIO_BUILD_SHARED OCIO_BUILD_PYGLUE OCIO_BUILD_PYTHON LDFLAGS+= -lOpenColorIO USES+= gl xorg USE_GL= gl glu glut glew @@ -53,7 +52,9 @@ USE_XORG= xi xmu PLIST= ${PKGDIR}/pkg-plist-tools EXTRA_PATCHES= ${PATCHDIR}/tools + .elif defined(OCIO_SLAVE) && ${OCIO_SLAVE} == pymodule +BUILD_DEPENDS= pybind11>0:devel/pybind11 LIB_DEPENDS= libOpenImageIO.so:graphics/openimageio \ libOpenColorIO.so:graphics/opencolorio USES+= python:3.6+ @@ -64,12 +65,15 @@ CMAKE_ARGS+= -DPYTHON:FILEPATH=${PYTHON_CMD} PLIST= ${PKGDIR}/pkg-plist-pyglue .else # master port -LIB_DEPENDS= libtinyxml.so:textproc/tinyxml \ - libyaml-cpp03.so:devel/yaml-cpp03 +LIB_DEPENDS= libexpat.so:textproc/expat2 \ + libHalf-2_5.so:graphics/ilmbase \ + libpystring.so:devel/pystring \ + libtinyxml.so:textproc/tinyxml \ + libyaml-cpp.so:devel/yaml-cpp USES+= python:3.6+,build USE_LDCONFIG= yes CMAKE_ON+= OCIO_BUILD_SHARED OCIO_BUILD_PYGLUE -CMAKE_OFF+= OCIO_BUILD_APPS +CMAKE_OFF+= OCIO_BUILD_APPS OCIO_BUILD_PYTHON CMAKE_ARGS+= -DPYTHON:FILEPATH=${PYTHON_CMD} # we enable pyglue in master port. This makes the python module # available when generating docs, we leave the python header in place @@ -79,23 +83,13 @@ EXTRA_PATCHES= ${PATCHDIR}/libs .endif -post-patch: - @${REINPLACE_CMD} -e '/pkg_check_modules/ s|yaml-cpp|&03|' \ - ${WRKSRC}/CMakeLists.txt - @${REINPLACE_CMD} -e '/YAML_CPP_INCLUDE_DIR/ s|yaml-cpp|&03|' \ - ${WRKSRC}/CMakeLists.txt - @${REINPLACE_CMD} -e '/YAML_CPP_LIBRARY/ s|yaml-cpp|&03|' \ - ${WRKSRC}/CMakeLists.txt - @${REINPLACE_CMD} -e 's|yaml-cpp|&03|' ${WRKSRC}/src/core/OCIOYaml.cpp -.if ${SLAVE_PORT} == yes - @${FIND} ${WRKSRC}/src/apps -name main.cpp | ${XARGS} \ - ${REINPLACE_CMD} '/namespace OIIO/d' -.endif - .if defined(OCIO_SLAVE) && ${OCIO_SLAVE} == pymodule do-install: @${MKDIR} ${STAGEDIR}${PYTHON_SITELIBDIR} - ${INSTALL_LIB} ${BUILD_WRKSRC}/src/pyglue/PyOpenColorIO.so ${STAGEDIR}${PYTHON_SITELIBDIR} + ${INSTALL_LIB} ${BUILD_WRKSRC}/src/bindings/python/PyOpenColorIO.so ${STAGEDIR}${PYTHON_SITELIBDIR} +.elif defined(OCIO_SLAVE) && ${OCIO_SLAVE} == tools +post-install: + @cd ${STAGEDIR}${PREFIX} && ${RM} -r include lib libdata .elif !defined(OCIO_SLAVE) post-install: @${RM} -R ${STAGEDIR}${PYTHON_LIBDIR} Index: graphics/opencolorio/distinfo =================================================================== --- graphics/opencolorio/distinfo (revision 565173) +++ graphics/opencolorio/distinfo (working copy) @@ -1,3 +1,3 @@ -TIMESTAMP = 1557638944 -SHA256 (imageworks-OpenColorIO-v1.1.1_GH0.tar.gz) = c9b5b9def907e1dafb29e37336b702fff22cc6306d445a13b1621b8a754c14c8 -SIZE (imageworks-OpenColorIO-v1.1.1_GH0.tar.gz) = 13828483 +TIMESTAMP = 1613242763 +SHA256 (imageworks-OpenColorIO-v2.0.0_GH0.tar.gz) = b407afcbcaecad8409545857796b9b6e27b0be0c85f2b9e7aa7d251bdc3a4416 +SIZE (imageworks-OpenColorIO-v2.0.0_GH0.tar.gz) = 9892414 Index: graphics/opencolorio/files/libs/patch-CMakeLists.txt =================================================================== --- graphics/opencolorio/files/libs/patch-CMakeLists.txt (revision 565173) +++ graphics/opencolorio/files/libs/patch-CMakeLists.txt (nonexistent) @@ -1,17 +0,0 @@ ---- ./CMakeLists.txt.orig 2018-01-05 12:08:27 UTC -+++ ./CMakeLists.txt -@@ -596,7 +599,7 @@ if(TARGET OpenColorIO_STATIC) - set(OCIO_STATIC_COMPILE_DEFINITIONS ) - endif() - endif() --install(EXPORT OpenColorIO DESTINATION cmake) -+install(EXPORT OpenColorIO DESTINATION ${CMAKE_INSTALL_PREFIX}/share/cmake/Modules) - file(WRITE "${CMAKE_BINARY_DIR}/OpenColorIOConfig.cmake" - " - get_filename_component(OpenColorIO_DIR \"\${CMAKE_CURRENT_LIST_FILE}\" PATH) -@@ -646,4 +649,4 @@ file(WRITE "${CMAKE_BINARY_DIR}/OpenColo - message(STATUS OPENCOLORIO_FOUND=\${OPENCOLORIO_FOUND}) - " - ) --install(FILES "${CMAKE_BINARY_DIR}/OpenColorIOConfig.cmake" DESTINATION .) -+install(FILES "${CMAKE_BINARY_DIR}/OpenColorIOConfig.cmake" DESTINATION ${CMAKE_INSTALL_PREFIX}/share/cmake/Modules) Property changes on: graphics/opencolorio/files/libs/patch-CMakeLists.txt ___________________________________________________________________ Deleted: fbsd:nokeywords ## -1 +0,0 ## -ON \ No newline at end of property Index: graphics/opencolorio/files/libs/patch-src_core_CMakeLists.txt =================================================================== --- graphics/opencolorio/files/libs/patch-src_core_CMakeLists.txt (revision 565173) +++ graphics/opencolorio/files/libs/patch-src_core_CMakeLists.txt (nonexistent) @@ -1,8 +0,0 @@ ---- src/core/CMakeLists.txt.orig 2014-09-11 19:08:18 UTC -+++ src/core/CMakeLists.txt -@@ -90,4 +90,4 @@ message(STATUS "Create OpenColorIO.pc fr - configure_file(${CMAKE_SOURCE_DIR}/export/pkgconfig/OpenColorIO.pc.in - ${CMAKE_CURRENT_BINARY_DIR}/OpenColorIO.pc @ONLY) - install(FILES ${CMAKE_CURRENT_BINARY_DIR}/OpenColorIO.pc -- DESTINATION ${CMAKE_INSTALL_EXEC_PREFIX}/lib${LIB_SUFFIX}/pkgconfig/) -+ DESTINATION ${CMAKE_INSTALL_EXEC_PREFIX}/libdata/pkgconfig/) Property changes on: graphics/opencolorio/files/libs/patch-src_core_CMakeLists.txt ___________________________________________________________________ Deleted: fbsd:nokeywords ## -1 +0,0 ## -ON \ No newline at end of property Index: graphics/opencolorio/files/patch-CMakeLists.txt =================================================================== --- graphics/opencolorio/files/patch-CMakeLists.txt (revision 565173) +++ graphics/opencolorio/files/patch-CMakeLists.txt (nonexistent) @@ -1,32 +0,0 @@ ---- CMakeLists.txt.orig 2018-01-05 12:08:27 UTC -+++ CMakeLists.txt -@@ -3,6 +3,10 @@ set(OCIO_VERSION_MAJOR 1) - set(OCIO_VERSION_MINOR 1) - set(OCIO_VERSION_PATCH 0) - -+set(CMAKE_CXX_STANDARD 11) -+set(CMAKE_CXX_STANDARD_REQUIRED ON) -+set(CMAKE_CXX_EXTENSIONS OFF) -+ - cmake_minimum_required(VERSION 2.8) - set(CMAKE_MODULE_PATH ${CMAKE_SOURCE_DIR}/share/cmake) - if(NOT DEFINED CMAKE_FIRST_RUN) -@@ -218,8 +222,7 @@ else(USE_EXTERNAL_TINYXML) - ## => great news when build staticaly since we do not want another client project have to link also with tinyxml when he want to use this project - ## => could be problematic if the client project use another version of tinyxml... In this case build tinyxml as shared lib with all projects could be a solution - ## => TODO: so maybe provide a simple cmake way to build 3rdParty as shared and auto install with this project ? -- set_target_properties(TINYXML_LIB PROPERTIES COMPILE_FLAGS "-DTIXML_USE_STL -fPIC -fvisibility-inlines-hidden -fvisibility=hidden") -- add_definitions(-DTIXML_USE_STL) ## needed to build correctly, and also need to be propagated in child projects (client projects) -+ set_target_properties(TINYXML_LIB PROPERTIES COMPILE_FLAGS "-fPIC -fvisibility-inlines-hidden -fvisibility=hidden") - list(APPEND EXTERNAL_OBJECTS $) - else() - find_package(Git REQUIRED) ## in order to apply patch (for crossplateform compatibility) -@@ -384,7 +387,7 @@ else() - set(OCIO_INLINES_HIDDEN OFF) - endif() - --set(EXTERNAL_COMPILE_FLAGS "-DTIXML_USE_STL ${YAML_CPP_COMPILE_FLAGS} ${GCC_COMPILE_FLAGS}") -+set(EXTERNAL_COMPILE_FLAGS "${YAML_CPP_COMPILE_FLAGS} ${GCC_COMPILE_FLAGS}") - - set(EXTERNAL_LINK_FLAGS "") - set(EXTERNAL_LIBRARY_DIRS ${PROJECT_BINARY_DIR}/ext/dist/lib) Property changes on: graphics/opencolorio/files/patch-CMakeLists.txt ___________________________________________________________________ Deleted: fbsd:nokeywords ## -1 +0,0 ## -ON \ No newline at end of property Index: graphics/opencolorio/files/patch-docs_CMakeLists.txt =================================================================== --- graphics/opencolorio/files/patch-docs_CMakeLists.txt (revision 565173) +++ graphics/opencolorio/files/patch-docs_CMakeLists.txt (nonexistent) @@ -1,17 +0,0 @@ ---- docs/CMakeLists.txt.orig 2014-09-11 19:08:18 UTC -+++ docs/CMakeLists.txt -@@ -110,12 +115,11 @@ add_custom_target(doc ALL - add_dependencies(doc Sphinx) - - install(DIRECTORY ${CMAKE_CURRENT_BINARY_DIR}/build-html/ -- DESTINATION ${CMAKE_INSTALL_PREFIX}/share/doc/OpenColorIO/html -+ DESTINATION ${CMAKE_INSTALL_PREFIX}/share/doc/opencolorio - PATTERN .* EXCLUDE - ) - --find_package(LATEX) --if(PDFLATEX_COMPILER) -+if(0) - - add_custom_target(latex - COMMAND PYTHONPATH=${PYTHONPATH} ${EXTDIST_BINPATH}/sphinx-build -b latex . ${CMAKE_CURRENT_BINARY_DIR}/build-latex Property changes on: graphics/opencolorio/files/patch-docs_CMakeLists.txt ___________________________________________________________________ Deleted: fbsd:nokeywords ## -1 +0,0 ## -yes \ No newline at end of property Deleted: svn:eol-style ## -1 +0,0 ## -native \ No newline at end of property Deleted: svn:mime-type ## -1 +0,0 ## -text/plain \ No newline at end of property Index: graphics/opencolorio/files/patch-share_cmake_OCIOMacros.cmake =================================================================== --- graphics/opencolorio/files/patch-share_cmake_OCIOMacros.cmake (revision 565173) +++ graphics/opencolorio/files/patch-share_cmake_OCIOMacros.cmake (nonexistent) @@ -1,11 +0,0 @@ ---- share/cmake/OCIOMacros.cmake.orig 2015-08-29 00:58:36 UTC -+++ share/cmake/OCIOMacros.cmake -@@ -168,7 +168,7 @@ MACRO(OCIOFindPython) - file(TO_CMAKE_PATH "${PYTHON_LIBRARY_DIRS_RAW}" PYTHON_LIBRARY_DIRS) - - FIND_LIBRARY(PYTHON_LIBRARY -- NAMES "python${PYTHON_VERSION}" -+ NAMES "${PYTHON_VERSION}${PYTHON_ABIVER}" - PATHS ${PYTHON_LIBRARY_DIRS} - NO_DEFAULT_PATH # Don't be "helpful" and randomly grab library from /usr/lib etc - ) Property changes on: graphics/opencolorio/files/patch-share_cmake_OCIOMacros.cmake ___________________________________________________________________ Deleted: fbsd:nokeywords ## -1 +0,0 ## -yes \ No newline at end of property Deleted: svn:eol-style ## -1 +0,0 ## -native \ No newline at end of property Deleted: svn:mime-type ## -1 +0,0 ## -text/plain \ No newline at end of property Index: graphics/opencolorio/files/patch-share_cmake_utils_CheckSupportGL.cmake =================================================================== --- graphics/opencolorio/files/patch-share_cmake_utils_CheckSupportGL.cmake (nonexistent) +++ graphics/opencolorio/files/patch-share_cmake_utils_CheckSupportGL.cmake (working copy) @@ -0,0 +1,11 @@ +--- share/cmake/utils/CheckSupportGL.cmake.orig 2021-02-13 20:56:39 UTC ++++ share/cmake/utils/CheckSupportGL.cmake +@@ -12,7 +12,7 @@ if(OCIO_BUILD_GPU_TESTS OR OCIO_BUILD_APPS) + set(OCIO_USE_GLVND OFF) + set(OCIO_EGL_HEADLESS OFF) + +- find_package(OpenGL COMPONENTS OpenGL) ++ find_package(OpenGL REQUIRED COMPONENTS OpenGL) + if(NOT OpenGL_OpenGL_FOUND AND NOT OPENGL_GLU_FOUND) + package_root_message(OpenGL) + set(OCIO_GL_ENABLED OFF) Property changes on: graphics/opencolorio/files/patch-share_cmake_utils_CheckSupportGL.cmake ___________________________________________________________________ Added: fbsd:nokeywords ## -0,0 +1 ## +yes \ No newline at end of property Added: svn:eol-style ## -0,0 +1 ## +native \ No newline at end of property Added: svn:mime-type ## -0,0 +1 ## +text/plain \ No newline at end of property Index: graphics/opencolorio/files/patch-src_core_Config.cpp =================================================================== --- graphics/opencolorio/files/patch-src_core_Config.cpp (revision 565173) +++ graphics/opencolorio/files/patch-src_core_Config.cpp (nonexistent) @@ -1,11 +0,0 @@ ---- src/core/Config.cpp.orig 2018-09-04 18:15:21 UTC -+++ src/core/Config.cpp -@@ -324,7 +324,7 @@ OCIO_NAMESPACE_ENTER - sanitytext_ = rhs.sanitytext_; - - cacheids_ = rhs.cacheids_; -- cacheidnocontext_ = cacheidnocontext_; -+ cacheidnocontext_ = rhs.cacheidnocontext_; - } - return *this; - } Property changes on: graphics/opencolorio/files/patch-src_core_Config.cpp ___________________________________________________________________ Deleted: fbsd:nokeywords ## -1 +0,0 ## -ON \ No newline at end of property Index: graphics/opencolorio/files/patch-src_libutils_oglapphelpers_CMakeLists.txt =================================================================== --- graphics/opencolorio/files/patch-src_libutils_oglapphelpers_CMakeLists.txt (nonexistent) +++ graphics/opencolorio/files/patch-src_libutils_oglapphelpers_CMakeLists.txt (working copy) @@ -0,0 +1,18 @@ +--- src/libutils/oglapphelpers/CMakeLists.txt.orig 2021-02-13 21:14:14 UTC ++++ src/libutils/oglapphelpers/CMakeLists.txt +@@ -49,7 +49,6 @@ if(${OCIO_USE_GLVND}) + target_link_libraries(oglapphelpers + PRIVATE + OpenColorIO +- OpenGL::OpenGL + OpenGL::GLU + ${GLEW_LIBRARIES} + ${GLUT_LIBRARIES} +@@ -59,7 +58,6 @@ if(${OCIO_USE_GLVND}) + target_link_libraries(oglapphelpers + PRIVATE + OpenColorIO +- OpenGL::OpenGL + OpenGL::GLU + ${GLEW_LIBRARIES} + ${GLUT_LIBRARIES} Property changes on: graphics/opencolorio/files/patch-src_libutils_oglapphelpers_CMakeLists.txt ___________________________________________________________________ Added: fbsd:nokeywords ## -0,0 +1 ## +yes \ No newline at end of property Added: svn:eol-style ## -0,0 +1 ## +native \ No newline at end of property Added: svn:mime-type ## -0,0 +1 ## +text/plain \ No newline at end of property Index: graphics/opencolorio/files/tools/patch-CMakeLists.txt =================================================================== --- graphics/opencolorio/files/tools/patch-CMakeLists.txt (revision 565173) +++ graphics/opencolorio/files/tools/patch-CMakeLists.txt (nonexistent) @@ -1,35 +0,0 @@ ---- ./CMakeLists.txt.orig 2018-01-05 12:08:27 UTC -+++ ./CMakeLists.txt -@@ -457,7 +460,7 @@ endif() - ############################################################################### - ### APPS ### - --if(OCIO_BUILD_APPS AND (OCIO_BUILD_STATIC OR OCIO_BUILD_SHARED) ) -+if(OCIO_BUILD_APPS) - - # Try to find OpenImageIO (OIIO) and OpenGL stuff - OCIOFindOpenImageIO() -@@ -531,7 +534,7 @@ endif() - configure_file(${CMAKE_SOURCE_DIR}/share/ocio/setup_ocio.sh.in - ${CMAKE_CURRENT_BINARY_DIR}/share/ocio/setup_ocio.sh @ONLY) - --INSTALL(PROGRAMS ${CMAKE_CURRENT_BINARY_DIR}/share/ocio/setup_ocio.sh DESTINATION share/ocio/) -+#INSTALL(PROGRAMS ${CMAKE_CURRENT_BINARY_DIR}/share/ocio/setup_ocio.sh DESTINATION share/ocio/) - - ############################################################################### - ### CPACK ### -@@ -596,7 +595,7 @@ if(TARGET OpenColorIO_STATIC) - set(OCIO_STATIC_COMPILE_DEFINITIONS ) - endif() - endif() --install(EXPORT OpenColorIO DESTINATION cmake) -+#install(EXPORT OpenColorIO DESTINATION cmake) - file(WRITE "${CMAKE_BINARY_DIR}/OpenColorIOConfig.cmake" - " - get_filename_component(OpenColorIO_DIR \"\${CMAKE_CURRENT_LIST_FILE}\" PATH) -@@ -646,4 +649,4 @@ file(WRITE "${CMAKE_BINARY_DIR}/OpenColo - message(STATUS OPENCOLORIO_FOUND=\${OPENCOLORIO_FOUND}) - " - ) --install(FILES "${CMAKE_BINARY_DIR}/OpenColorIOConfig.cmake" DESTINATION .) -+#install(FILES "${CMAKE_BINARY_DIR}/OpenColorIOConfig.cmake" DESTINATION ${CMAKE_INSTALL_PREFIX}/share/cmake/Modules) Property changes on: graphics/opencolorio/files/tools/patch-CMakeLists.txt ___________________________________________________________________ Deleted: fbsd:nokeywords ## -1 +0,0 ## -ON \ No newline at end of property Index: graphics/opencolorio/files/tools/patch-src_core_CMakeLists.txt =================================================================== --- graphics/opencolorio/files/tools/patch-src_core_CMakeLists.txt (revision 565173) +++ graphics/opencolorio/files/tools/patch-src_core_CMakeLists.txt (nonexistent) @@ -1,18 +0,0 @@ ---- src/core/CMakeLists.txt.orig 2018-02-05 14:07:04 UTC -+++ src/core/CMakeLists.txt -@@ -105,15 +105,3 @@ macro(target_link_OCIO target) - set_target_properties(${target} PROPERTIES COMPILE_DEFINITIONS OpenColorIO_STATIC) - endif() - endmacro() -- -- --# public interface --install(FILES ${core_export_headers} -- DESTINATION ${CMAKE_INSTALL_PREFIX}/include/OpenColorIO/) -- --# pkg-config --message(STATUS "Create OpenColorIO.pc from OpenColorIO.pc.in") --configure_file(${CMAKE_SOURCE_DIR}/export/pkgconfig/OpenColorIO.pc.in -- ${CMAKE_CURRENT_BINARY_DIR}/OpenColorIO.pc @ONLY) --install(FILES ${CMAKE_CURRENT_BINARY_DIR}/OpenColorIO.pc -- DESTINATION ${CMAKE_INSTALL_EXEC_PREFIX}/lib${LIB_SUFFIX}/pkgconfig/) Property changes on: graphics/opencolorio/files/tools/patch-src_core_CMakeLists.txt ___________________________________________________________________ Deleted: fbsd:nokeywords ## -1 +0,0 ## -ON \ No newline at end of property Index: graphics/opencolorio/pkg-plist =================================================================== --- graphics/opencolorio/pkg-plist (revision 565173) +++ graphics/opencolorio/pkg-plist (working copy) @@ -1,13 +1,9 @@ include/OpenColorIO/OpenColorABI.h +include/OpenColorIO/OpenColorAppHelpers.h include/OpenColorIO/OpenColorIO.h include/OpenColorIO/OpenColorTransforms.h include/OpenColorIO/OpenColorTypes.h -include/PyOpenColorIO/PyOpenColorIO.h lib/libOpenColorIO.so -lib/libOpenColorIO.so.1 +lib/libOpenColorIO.so.2.0 lib/libOpenColorIO.so.%%LIBVERS%% libdata/pkgconfig/OpenColorIO.pc -share/cmake/Modules/OpenColorIOConfig.cmake -share/cmake/Modules/OpenColorIO-release.cmake -share/cmake/Modules/OpenColorIO.cmake -share/ocio/setup_ocio.sh Index: graphics/opencolorio/pkg-plist-tools =================================================================== --- graphics/opencolorio/pkg-plist-tools (revision 565173) +++ graphics/opencolorio/pkg-plist-tools (working copy) @@ -1,5 +1,9 @@ bin/ociobakelut bin/ociocheck +bin/ociochecklut bin/ocioconvert bin/ociodisplay bin/ociolutimage +bin/ociomakeclf +bin/ocioperf +bin/ociowrite