--- graphics/opencolorio/Makefile +++ graphics/opencolorio/Makefile @@ -2,22 +2,25 @@ # $FreeBSD$ PORTNAME= opencolorio -DISTVERSIONPREFIX= v -DISTVERSION= 1.1.1 -PORTREVISION?= 1 +PORTVERSION= g20200916 +PORTEPOCH= 1 CATEGORIES= graphics multimedia MAINTAINER?= FreeBSD@Shaneware.biz COMMENT?= Complete color management solution LICENSE= BSD3CLAUSE +LICENSE_FILE= ${WRKSRC}/LICENSE + +BUILD_DEPENDS= ${PYTHON_PKGNAMEPREFIX}pybind11>0:devel/py-pybind11@${PY_FLAVOR} USES= alias cmake compiler:c++11-lang localbase:ldflags pkgconfig \ - shebangfix + shebangfix python:3.5+ USE_GITHUB= yes GH_ACCOUNT= imageworks GH_PROJECT= OpenColorIO +GH_TAGNAME= 268238bd CMAKE_ON= USE_EXTERNAL_TINYXML USE_EXTERNAL_YAML CMAKE_OFF= OCIO_BUILD_JNIGLUE OCIO_BUILD_NUKE OCIO_BUILD_STATIC @@ -26,9 +29,7 @@ CXXFLAGS+= ${CXXFLAGS_${CHOSEN_COMPILER_TYPE}} 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 +SHEBANG_FILES= share/sphinx/ExtractRstFromSourceSimple.py share/sphinx/ExtractRstFromSourceCPP.py OPTIONS_DEFINE= DOCS @@ -36,6 +37,8 @@ DOCS_CMAKE_BOOL= OCIO_BUILD_DOCS PLIST_SUB+= LIBVERS=${PORTVERSION} +CMAKE_OFF+= OCIO_BUILD_TESTS OCIO_BUILD_GPU_TESTS + .if ${MACHINE_CPU:Msse2} CMAKE_ON+= OCIO_USE_SSE .else @@ -52,33 +55,44 @@ CMAKE_ON+= OCIO_BUILD_APPS USE_EXTERNAL_LCMS CMAKE_OFF+= OCIO_BUILD_SHARED OCIO_BUILD_PYGLUE LDFLAGS+= -lOpenColorIO USES+= gl xorg -USE_GL= gl glu glut glew +USE_GL= egl gl glu glut glew USE_XORG= xi xmu PLIST= ${PKGDIR}/pkg-plist-tools -EXTRA_PATCHES= ${PATCHDIR}/tools .elif defined(OCIO_SLAVE) && ${OCIO_SLAVE} == pymodule LIB_DEPENDS= libOpenImageIO.so:graphics/openimageio \ libOpenColorIO.so:graphics/opencolorio -USES+= python -USE_PYTHON= flavors LDFLAGS+= -lOpenColorIO CMAKE_ON+= OCIO_BUILD_PYGLUE OCIO_PYGLUE_LINK CMAKE_OFF+= OCIO_BUILD_APPS OCIO_BUILD_SHARED -CMAKE_ARGS+= -DPYTHON:FILEPATH=${PYTHON_CMD} +CMAKE_ARGS+= -DPYTHON:FILEPATH=${PYTHON_CMD} -Dpystring_ROOT=${LOCALBASE} PLIST= ${PKGDIR}/pkg-plist-pyglue +USE_PYTHON= flavors .else # master port -BUILD_DEPENDS= ${PYTHON_PKGNAMEPREFIX}Jinja2>0:devel/py-Jinja2@${PY_FLAVOR} -LIB_DEPENDS= libtinyxml.so:textproc/tinyxml \ - libyaml-cpp03.so:devel/yaml-cpp03 +CMAKE_ON+= USE_EXTERNAL_LCMS OCIO_BUILD_SHARED +CMAKE_OFF+= OCIO_BUILD_APPS +USES+= gl xorg +USE_GL= gl glu glut glew +USE_XORG= xi xmu +BUILD_DEPENDS+= ${PYTHON_PKGNAMEPREFIX}Jinja2>0:devel/py-Jinja2@${PY_FLAVOR} \ + ${PYTHON_PKGNAMEPREFIX}sphinx-tabs>0:textproc/py-sphinx-tabs@${PY_FLAVOR} \ + ${PYTHON_PKGNAMEPREFIX}recommonmark>=0:textproc/py-recommonmark@${PY_FLAVOR} \ + ${PYTHON_PKGNAMEPREFIX}testresources>=0:devel/py-testresources@${PY_FLAVOR} \ + ${PYTHON_PKGNAMEPREFIX}sphinx_press_theme>=0:textproc/py-sphinx_press_theme@${PY_FLAVOR} + +LIB_DEPENDS= libexpat.so:textproc/expat2 \ + libHalf.so:graphics/ilmbase \ + liblcms2.so:graphics/lcms2 \ + libpystring.so:devel/pystring \ + libtinyxml.so:textproc/tinyxml \ + libyaml-cpp.so:devel/yaml-cpp + .if ${PORT_OPTIONS:MDOCS} -USES+= python:2.7,build -.else -USES+= python:build +USES+= python:3.5+,build .endif USE_LDCONFIG= yes CMAKE_ON+= OCIO_BUILD_SHARED OCIO_BUILD_PYGLUE CMAKE_OFF+= OCIO_BUILD_APPS -CMAKE_ARGS+= -DPYTHON:FILEPATH=${PYTHON_CMD} +CMAKE_ARGS+= -DPYTHON:FILEPATH=${PYTHON_CMD} -DPYTHON_LIBRARY=${PYTHON_LIBDIR} # we enable pyglue in master port. This makes the python module # available when generating docs, we leave the python header in place # but only install the python module with the py-opencolorio port @@ -86,26 +100,18 @@ CMAKE_ARGS+= -DPYTHON:FILEPATH=${PYTHON_CMD} # doc building fails using python3 - but the py-opencolorio port can still # be used to build a python 3 module PLIST= ${PKGDIR}/pkg-plist -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' +.if defined(OCIO_SLAVE) && ${OCIO_SLAVE} == tools +do-install: +.for BIN in ociobakelut ociocheck ociochecklut ocioconvert ociodisplay ociolutimage ociomakeclf ocioperf ociowrite + ${INSTALL_PROGRAM} ${BUILD_WRKSRC}/src/apps/${BIN}/${BIN} ${STAGEDIR}${PREFIX}/bin/${BIN} +.endfor .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) post-install: @${RM} -R ${STAGEDIR}${PYTHON_LIBDIR} --- graphics/opencolorio/distinfo +++ graphics/opencolorio/distinfo @@ -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 = 1600267246 +SHA256 (imageworks-OpenColorIO-g20200916-268238bd_GH0.tar.gz) = 0b004452ba1349e332ad711d89778ab16f71c653df563c75d033b56007f01e1e +SIZE (imageworks-OpenColorIO-g20200916-268238bd_GH0.tar.gz) = 9577856 --- graphics/opencolorio/files/libs/patch-CMakeLists.txt +++ /dev/null @@ -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) --- graphics/opencolorio/files/libs/patch-src_core_CMakeLists.txt +++ /dev/null @@ -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/) --- graphics/opencolorio/files/patch-CMakeLists.txt +++ /dev/null @@ -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) --- graphics/opencolorio/files/patch-docs_CMakeLists.txt +++ graphics/opencolorio/files/patch-docs_CMakeLists.txt @@ -1,17 +1,22 @@ ---- docs/CMakeLists.txt.orig 2014-09-11 19:08:18 UTC +--- docs/CMakeLists.txt.orig 2020-09-16 03:35:02 UTC +++ docs/CMakeLists.txt -@@ -110,12 +115,11 @@ add_custom_target(doc ALL - add_dependencies(doc Sphinx) +@@ -147,17 +147,14 @@ if(${Python_VERSION_MAJOR} GREATER_EQUAL 3) + ### Installation ### - 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 - ) + 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 + ############################################################################### + ### PDF target ### + +- find_package(LATEX) +- package_root_message(LATEX) +- +- if(PDFLATEX_COMPILER) ++ if(0) + + add_custom_target(latex + COMMAND --- graphics/opencolorio/files/patch-share_cmake_OCIOMacros.cmake +++ /dev/null @@ -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 - ) --- graphics/opencolorio/files/patch-src_core_Config.cpp +++ /dev/null @@ -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; - } --- /dev/null +++ graphics/opencolorio/files/patch-src_libutils_oglapphelpers_CMakeLists.txt @@ -0,0 +1,10 @@ +--- src/libutils/oglapphelpers/CMakeLists.txt.orig 2020-09-22 18:43:55 UTC ++++ src/libutils/oglapphelpers/CMakeLists.txt +@@ -58,7 +58,6 @@ if(${OCIO_USE_GLVND}) + target_link_libraries(oglapphelpers + PRIVATE + OpenColorIO +- OpenGL::OpenGL + OpenGL::GLU + ${GLEW_LIBRARIES} + ${GLUT_LIBRARIES} --- graphics/opencolorio/files/tools/patch-CMakeLists.txt +++ /dev/null @@ -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) --- graphics/opencolorio/files/tools/patch-src_core_CMakeLists.txt +++ /dev/null @@ -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/) --- graphics/opencolorio/pkg-plist +++ graphics/opencolorio/pkg-plist @@ -2,18 +2,21 @@ include/OpenColorIO/OpenColorABI.h include/OpenColorIO/OpenColorIO.h include/OpenColorIO/OpenColorTransforms.h include/OpenColorIO/OpenColorTypes.h -include/PyOpenColorIO/PyOpenColorIO.h +include/OpenColorIO/apphelpers/CategoryNames.h +include/OpenColorIO/apphelpers/ColorSpaceHelpers.h +include/OpenColorIO/apphelpers/DisplayViewHelpers.h +include/OpenColorIO/apphelpers/MixingHelpers.h +include/OpenColorIO/apphelpers/ViewingPipeline.h lib/libOpenColorIO.so -lib/libOpenColorIO.so.1 -lib/libOpenColorIO.so.%%LIBVERS%% +lib/libOpenColorIO.so.2.0 +lib/libOpenColorIO.so.2.0.0 +lib/libOpenColorIOapphelpers.a libdata/pkgconfig/OpenColorIO.pc -share/cmake/Modules/OpenColorIOConfig.cmake -share/cmake/Modules/OpenColorIO-release.cmake -share/cmake/Modules/OpenColorIO.cmake -%%PORTDOCS%%%%DOCSDIR%%/ChangeLog.html -%%PORTDOCS%%%%DOCSDIR%%/CompatibleSoftware.html -%%PORTDOCS%%%%DOCSDIR%%/FAQ.html -%%PORTDOCS%%%%DOCSDIR%%/License.html +%%PORTDOCS%%%%DOCSDIR%%/CHANGELOG.html +%%PORTDOCS%%%%DOCSDIR%%/CMakeLists.html +%%PORTDOCS%%%%DOCSDIR%%/INSTALL.html +%%PORTDOCS%%%%DOCSDIR%%/README.html +%%PORTDOCS%%%%DOCSDIR%%/V2_DOC_README.html %%PORTDOCS%%%%DOCSDIR%%/_images/gn10_to_linear_light.jpeg %%PORTDOCS%%%%DOCSDIR%%/_images/gnf_to_linear_light.jpeg %%PORTDOCS%%%%DOCSDIR%%/_images/lg10_to_linear_light.jpeg @@ -24,101 +27,243 @@ share/cmake/Modules/OpenColorIO.cmake %%PORTDOCS%%%%DOCSDIR%%/_images/psicc_proof_setup.png %%PORTDOCS%%%%DOCSDIR%%/_images/psicc_reveal_profile.png %%PORTDOCS%%%%DOCSDIR%%/_images/psicc_select_profile.png -%%PORTDOCS%%%%DOCSDIR%%/_sources/ChangeLog.txt -%%PORTDOCS%%%%DOCSDIR%%/_sources/CompatibleSoftware.txt -%%PORTDOCS%%%%DOCSDIR%%/_sources/FAQ.txt -%%PORTDOCS%%%%DOCSDIR%%/_sources/License.txt -%%PORTDOCS%%%%DOCSDIR%%/_sources/configurations/aces_1.0.3.txt -%%PORTDOCS%%%%DOCSDIR%%/_sources/configurations/allocation_vars.txt -%%PORTDOCS%%%%DOCSDIR%%/_sources/configurations/index.txt -%%PORTDOCS%%%%DOCSDIR%%/_sources/configurations/nuke_default.txt -%%PORTDOCS%%%%DOCSDIR%%/_sources/configurations/spi_anim.txt -%%PORTDOCS%%%%DOCSDIR%%/_sources/configurations/spi_vfx.txt -%%PORTDOCS%%%%DOCSDIR%%/_sources/developers/api/OpenColorIO.txt -%%PORTDOCS%%%%DOCSDIR%%/_sources/developers/api/OpenColorTransforms.txt -%%PORTDOCS%%%%DOCSDIR%%/_sources/developers/api/OpenColorTypes.txt -%%PORTDOCS%%%%DOCSDIR%%/_sources/developers/api/index.txt -%%PORTDOCS%%%%DOCSDIR%%/_sources/developers/bindings/PythonAPI.txt -%%PORTDOCS%%%%DOCSDIR%%/_sources/developers/bindings/PythonTransforms.txt -%%PORTDOCS%%%%DOCSDIR%%/_sources/developers/bindings/PythonTypes.txt -%%PORTDOCS%%%%DOCSDIR%%/_sources/developers/coding_guidelines.txt -%%PORTDOCS%%%%DOCSDIR%%/_sources/developers/documentation_guidelines.txt -%%PORTDOCS%%%%DOCSDIR%%/_sources/developers/getting_started.txt -%%PORTDOCS%%%%DOCSDIR%%/_sources/developers/index.txt -%%PORTDOCS%%%%DOCSDIR%%/_sources/developers/internal_architecture.txt -%%PORTDOCS%%%%DOCSDIR%%/_sources/developers/issues.txt -%%PORTDOCS%%%%DOCSDIR%%/_sources/developers/submitting_changes.txt -%%PORTDOCS%%%%DOCSDIR%%/_sources/developers/usage_examples.txt -%%PORTDOCS%%%%DOCSDIR%%/_sources/downloads.txt -%%PORTDOCS%%%%DOCSDIR%%/_sources/index.txt -%%PORTDOCS%%%%DOCSDIR%%/_sources/introduction.txt -%%PORTDOCS%%%%DOCSDIR%%/_sources/installation.txt -%%PORTDOCS%%%%DOCSDIR%%/_sources/userguide/baking_luts.txt -%%PORTDOCS%%%%DOCSDIR%%/_sources/userguide/config_syntax.txt -%%PORTDOCS%%%%DOCSDIR%%/_sources/userguide/contexts.txt -%%PORTDOCS%%%%DOCSDIR%%/_sources/userguide/index.txt -%%PORTDOCS%%%%DOCSDIR%%/_sources/userguide/looks.txt -%%PORTDOCS%%%%DOCSDIR%%/_sources/userguide/tool_overview.txt -%%PORTDOCS%%%%DOCSDIR%%/_static/ajax-loader.gif -%%PORTDOCS%%%%DOCSDIR%%/_static/alert_info_32.png -%%PORTDOCS%%%%DOCSDIR%%/_static/alert_warning_32.png +%%PORTDOCS%%%%DOCSDIR%%/_sources/CHANGELOG.md.txt +%%PORTDOCS%%%%DOCSDIR%%/_sources/CMakeLists.txt +%%PORTDOCS%%%%DOCSDIR%%/_sources/INSTALL.md.txt +%%PORTDOCS%%%%DOCSDIR%%/_sources/README.md.txt +%%PORTDOCS%%%%DOCSDIR%%/_sources/V2_DOC_README.md.txt +%%PORTDOCS%%%%DOCSDIR%%/_sources/api/_index.rst.txt +%%PORTDOCS%%%%DOCSDIR%%/_sources/api/bindings/PythonAPI.rst.txt +%%PORTDOCS%%%%DOCSDIR%%/_sources/api/bindings/PythonTransforms.rst.txt +%%PORTDOCS%%%%DOCSDIR%%/_sources/api/bindings/PythonTypes.rst.txt +%%PORTDOCS%%%%DOCSDIR%%/_sources/api/c_baker.rst.txt +%%PORTDOCS%%%%DOCSDIR%%/_sources/api/c_colorspace.rst.txt +%%PORTDOCS%%%%DOCSDIR%%/_sources/api/c_colorspaceset.rst.txt +%%PORTDOCS%%%%DOCSDIR%%/_sources/api/c_config.rst.txt +%%PORTDOCS%%%%DOCSDIR%%/_sources/api/c_context.rst.txt +%%PORTDOCS%%%%DOCSDIR%%/_sources/api/c_cpuprocessor.rst.txt +%%PORTDOCS%%%%DOCSDIR%%/_sources/api/c_dynamicproperty.rst.txt +%%PORTDOCS%%%%DOCSDIR%%/_sources/api/c_filerules.rst.txt +%%PORTDOCS%%%%DOCSDIR%%/_sources/api/c_formatmetadata.rst.txt +%%PORTDOCS%%%%DOCSDIR%%/_sources/api/c_gpuprocessor.rst.txt +%%PORTDOCS%%%%DOCSDIR%%/_sources/api/c_gpushadercreator.rst.txt +%%PORTDOCS%%%%DOCSDIR%%/_sources/api/c_gpushaderdesc.rst.txt +%%PORTDOCS%%%%DOCSDIR%%/_sources/api/c_imagedesc.rst.txt +%%PORTDOCS%%%%DOCSDIR%%/_sources/api/c_look.rst.txt +%%PORTDOCS%%%%DOCSDIR%%/_sources/api/c_packedimagedesc.rst.txt +%%PORTDOCS%%%%DOCSDIR%%/_sources/api/c_planarimagedesc.rst.txt +%%PORTDOCS%%%%DOCSDIR%%/_sources/api/c_processor.rst.txt +%%PORTDOCS%%%%DOCSDIR%%/_sources/api/c_viewingrules.rst.txt +%%PORTDOCS%%%%DOCSDIR%%/_sources/api/change_log.rst.txt +%%PORTDOCS%%%%DOCSDIR%%/_sources/api/transforms.rst.txt +%%PORTDOCS%%%%DOCSDIR%%/_sources/api/types.rst.txt +%%PORTDOCS%%%%DOCSDIR%%/_sources/aswf/_index.rst.txt +%%PORTDOCS%%%%DOCSDIR%%/_sources/aswf/aswf_docker.rst.txt +%%PORTDOCS%%%%DOCSDIR%%/_sources/aswf/charter.rst.txt +%%PORTDOCS%%%%DOCSDIR%%/_sources/aswf/cla_dco.rst.txt +%%PORTDOCS%%%%DOCSDIR%%/_sources/aswf/license.rst.txt +%%PORTDOCS%%%%DOCSDIR%%/_sources/concepts/_index.rst.txt +%%PORTDOCS%%%%DOCSDIR%%/_sources/concepts/overview/configuration_files.rst.txt +%%PORTDOCS%%%%DOCSDIR%%/_sources/concepts/overview/glossary.rst.txt +%%PORTDOCS%%%%DOCSDIR%%/_sources/concepts/overview/internal_architecture.rst.txt +%%PORTDOCS%%%%DOCSDIR%%/_sources/concepts/overview/introduction.rst.txt +%%PORTDOCS%%%%DOCSDIR%%/_sources/concepts/overview/overview.rst.txt +%%PORTDOCS%%%%DOCSDIR%%/_sources/concepts/publications/publications.rst.txt +%%PORTDOCS%%%%DOCSDIR%%/_sources/configurations/_index.rst.txt +%%PORTDOCS%%%%DOCSDIR%%/_sources/configurations/aces_1.0.3.rst.txt +%%PORTDOCS%%%%DOCSDIR%%/_sources/configurations/nuke_default.rst.txt +%%PORTDOCS%%%%DOCSDIR%%/_sources/configurations/spi_anim.rst.txt +%%PORTDOCS%%%%DOCSDIR%%/_sources/configurations/spi_vfx.rst.txt +%%PORTDOCS%%%%DOCSDIR%%/_sources/developers/api/OpenColorIO.rst.txt +%%PORTDOCS%%%%DOCSDIR%%/_sources/developers/api/OpenColorTransforms.rst.txt +%%PORTDOCS%%%%DOCSDIR%%/_sources/developers/api/OpenColorTypes.rst.txt +%%PORTDOCS%%%%DOCSDIR%%/_sources/guides/_index.rst.txt +%%PORTDOCS%%%%DOCSDIR%%/_sources/guides/authoring/allocation_vars.rst.txt +%%PORTDOCS%%%%DOCSDIR%%/_sources/guides/authoring/authoring.rst.txt +%%PORTDOCS%%%%DOCSDIR%%/_sources/guides/authoring/colorspaces.rst.txt +%%PORTDOCS%%%%DOCSDIR%%/_sources/guides/authoring/config_syntax.rst.txt +%%PORTDOCS%%%%DOCSDIR%%/_sources/guides/authoring/contexts.rst.txt +%%PORTDOCS%%%%DOCSDIR%%/_sources/guides/authoring/displays_views.rst.txt +%%PORTDOCS%%%%DOCSDIR%%/_sources/guides/authoring/looks.rst.txt +%%PORTDOCS%%%%DOCSDIR%%/_sources/guides/authoring/looks_example.rst.txt +%%PORTDOCS%%%%DOCSDIR%%/_sources/guides/authoring/overview.rst.txt +%%PORTDOCS%%%%DOCSDIR%%/_sources/guides/authoring/rules.rst.txt +%%PORTDOCS%%%%DOCSDIR%%/_sources/guides/authoring/transforms.rst.txt +%%PORTDOCS%%%%DOCSDIR%%/_sources/guides/contributing/architectural_notes.rst.txt +%%PORTDOCS%%%%DOCSDIR%%/_sources/guides/contributing/coding_style_guide.rst.txt +%%PORTDOCS%%%%DOCSDIR%%/_sources/guides/contributing/contributing.rst.txt +%%PORTDOCS%%%%DOCSDIR%%/_sources/guides/contributing/documentation_guidelines.rst.txt +%%PORTDOCS%%%%DOCSDIR%%/_sources/guides/contributing/doxygen_style_guide.rst.txt +%%PORTDOCS%%%%DOCSDIR%%/_sources/guides/contributing/getting_started.rst.txt +%%PORTDOCS%%%%DOCSDIR%%/_sources/guides/contributing/issues.rst.txt +%%PORTDOCS%%%%DOCSDIR%%/_sources/guides/contributing/repository_structure.rst.txt +%%PORTDOCS%%%%DOCSDIR%%/_sources/guides/contributing/submitting_changes.rst.txt +%%PORTDOCS%%%%DOCSDIR%%/_sources/guides/contributing/unit_tests.rst.txt +%%PORTDOCS%%%%DOCSDIR%%/_sources/guides/developing/app_helpers.rst.txt +%%PORTDOCS%%%%DOCSDIR%%/_sources/guides/developing/developing.rst.txt +%%PORTDOCS%%%%DOCSDIR%%/_sources/guides/developing/usage_examples.rst.txt +%%PORTDOCS%%%%DOCSDIR%%/_sources/guides/using_ocio/compatible_software.rst.txt +%%PORTDOCS%%%%DOCSDIR%%/_sources/guides/using_ocio/faq.rst.txt +%%PORTDOCS%%%%DOCSDIR%%/_sources/guides/using_ocio/tool_overview.rst.txt +%%PORTDOCS%%%%DOCSDIR%%/_sources/guides/using_ocio/using_ocio.rst.txt +%%PORTDOCS%%%%DOCSDIR%%/_sources/index.rst.txt +%%PORTDOCS%%%%DOCSDIR%%/_sources/quick_start/_index.rst.txt +%%PORTDOCS%%%%DOCSDIR%%/_sources/quick_start/downloads.rst.txt +%%PORTDOCS%%%%DOCSDIR%%/_sources/quick_start/for_artists.rst.txt +%%PORTDOCS%%%%DOCSDIR%%/_sources/quick_start/for_config_authors.rst.txt +%%PORTDOCS%%%%DOCSDIR%%/_sources/quick_start/for_contributors.rst.txt +%%PORTDOCS%%%%DOCSDIR%%/_sources/quick_start/for_devs.rst.txt +%%PORTDOCS%%%%DOCSDIR%%/_sources/quick_start/installation.rst.txt +%%PORTDOCS%%%%DOCSDIR%%/_sources/requirements.txt +%%PORTDOCS%%%%DOCSDIR%%/_sources/site/README.md.txt +%%PORTDOCS%%%%DOCSDIR%%/_sources/site/README_theme.md.txt +%%PORTDOCS%%%%DOCSDIR%%/_sources/site/archetypes/default.md.txt +%%PORTDOCS%%%%DOCSDIR%%/_sources/site/homepage/content/english/author/john-doe.md.txt +%%PORTDOCS%%%%DOCSDIR%%/_sources/site/homepage/content/english/author/mark-dinn.md.txt +%%PORTDOCS%%%%DOCSDIR%%/_sources/site/homepage/content/english/blog/installation.md.txt +%%PORTDOCS%%%%DOCSDIR%%/_sources/site/homepage/content/english/blog/simple-blog-post-1.md.txt +%%PORTDOCS%%%%DOCSDIR%%/_sources/site/homepage/content/english/blog/simple-blog-post-2.md.txt +%%PORTDOCS%%%%DOCSDIR%%/_sources/site/homepage/content/english/blog/simple-blog-post-3.md.txt +%%PORTDOCS%%%%DOCSDIR%%/_sources/site/homepage/content/english/blog/simple-blog-post-4.md.txt +%%PORTDOCS%%%%DOCSDIR%%/_sources/site/homepage/content/english/blog/simple-blog-post-5.md.txt +%%PORTDOCS%%%%DOCSDIR%%/_sources/site/homepage/content/english/blog/simple-blog-post-6.md.txt +%%PORTDOCS%%%%DOCSDIR%%/_sources/site/homepage/content/english/blog/simple-blog-post-7.md.txt +%%PORTDOCS%%%%DOCSDIR%%/_sources/site/homepage/content/english/blog/simple-blog-post-8.md.txt +%%PORTDOCS%%%%DOCSDIR%%/_sources/toc_redirect.rst.txt +%%PORTDOCS%%%%DOCSDIR%%/_sources/tutorials/_index.rst.txt +%%PORTDOCS%%%%DOCSDIR%%/_sources/tutorials/baking_luts.rst.txt +%%PORTDOCS%%%%DOCSDIR%%/_sources/tutorials/contributing.rst.txt +%%PORTDOCS%%%%DOCSDIR%%/_sources/upgrading_v2/_index.rst.txt +%%PORTDOCS%%%%DOCSDIR%%/_sources/upgrading_v2/how_to.rst.txt +%%PORTDOCS%%%%DOCSDIR%%/_static/OpenColorIO_withText.svg %%PORTDOCS%%%%DOCSDIR%%/_static/basic.css -%%PORTDOCS%%%%DOCSDIR%%/_static/bg-page.png -%%PORTDOCS%%%%DOCSDIR%%/_static/bullet_orange.png -%%PORTDOCS%%%%DOCSDIR%%/_static/clo_res19_lm10.0101.jpg -%%PORTDOCS%%%%DOCSDIR%%/_static/clo_res19_lnf.0101.jpg -%%PORTDOCS%%%%DOCSDIR%%/_static/clo_res19_vd16.0101.jpg -%%PORTDOCS%%%%DOCSDIR%%/_static/comment-bright.png -%%PORTDOCS%%%%DOCSDIR%%/_static/comment-close.png -%%PORTDOCS%%%%DOCSDIR%%/_static/comment.png %%PORTDOCS%%%%DOCSDIR%%/_static/doctools.js -%%PORTDOCS%%%%DOCSDIR%%/_static/down-pressed.png -%%PORTDOCS%%%%DOCSDIR%%/_static/down.png +%%PORTDOCS%%%%DOCSDIR%%/_static/documentation_options.js %%PORTDOCS%%%%DOCSDIR%%/_static/file.png +%%PORTDOCS%%%%DOCSDIR%%/_static/jquery-3.5.1.js %%PORTDOCS%%%%DOCSDIR%%/_static/jquery.js +%%PORTDOCS%%%%DOCSDIR%%/_static/language_data.js %%PORTDOCS%%%%DOCSDIR%%/_static/minus.png -%%PORTDOCS%%%%DOCSDIR%%/_static/ocio.css +%%PORTDOCS%%%%DOCSDIR%%/_static/ocio_b.svg %%PORTDOCS%%%%DOCSDIR%%/_static/plus.png %%PORTDOCS%%%%DOCSDIR%%/_static/pygments.css %%PORTDOCS%%%%DOCSDIR%%/_static/searchtools.js +%%PORTDOCS%%%%DOCSDIR%%/_static/sphinx_press_theme.css +%%PORTDOCS%%%%DOCSDIR%%/_static/sphinx_tabs/semantic-ui-2.4.1/menu.min.css +%%PORTDOCS%%%%DOCSDIR%%/_static/sphinx_tabs/semantic-ui-2.4.1/segment.min.css +%%PORTDOCS%%%%DOCSDIR%%/_static/sphinx_tabs/semantic-ui-2.4.1/tab.min.css +%%PORTDOCS%%%%DOCSDIR%%/_static/sphinx_tabs/semantic-ui-2.4.1/tab.min.js +%%PORTDOCS%%%%DOCSDIR%%/_static/sphinx_tabs/tabs.css +%%PORTDOCS%%%%DOCSDIR%%/_static/sphinx_tabs/tabs.js +%%PORTDOCS%%%%DOCSDIR%%/_static/theme-vendors.js +%%PORTDOCS%%%%DOCSDIR%%/_static/theme.css +%%PORTDOCS%%%%DOCSDIR%%/_static/theme.js +%%PORTDOCS%%%%DOCSDIR%%/_static/underscore-1.3.1.js %%PORTDOCS%%%%DOCSDIR%%/_static/underscore.js -%%PORTDOCS%%%%DOCSDIR%%/_static/up-pressed.png -%%PORTDOCS%%%%DOCSDIR%%/_static/up.png -%%PORTDOCS%%%%DOCSDIR%%/_static/websupport.js +%%PORTDOCS%%%%DOCSDIR%%/api/_index.html +%%PORTDOCS%%%%DOCSDIR%%/api/bindings/PythonAPI.html +%%PORTDOCS%%%%DOCSDIR%%/api/bindings/PythonTransforms.html +%%PORTDOCS%%%%DOCSDIR%%/api/bindings/PythonTypes.html +%%PORTDOCS%%%%DOCSDIR%%/api/c_baker.html +%%PORTDOCS%%%%DOCSDIR%%/api/c_colorspace.html +%%PORTDOCS%%%%DOCSDIR%%/api/c_colorspaceset.html +%%PORTDOCS%%%%DOCSDIR%%/api/c_config.html +%%PORTDOCS%%%%DOCSDIR%%/api/c_context.html +%%PORTDOCS%%%%DOCSDIR%%/api/c_cpuprocessor.html +%%PORTDOCS%%%%DOCSDIR%%/api/c_dynamicproperty.html +%%PORTDOCS%%%%DOCSDIR%%/api/c_filerules.html +%%PORTDOCS%%%%DOCSDIR%%/api/c_formatmetadata.html +%%PORTDOCS%%%%DOCSDIR%%/api/c_gpuprocessor.html +%%PORTDOCS%%%%DOCSDIR%%/api/c_gpushadercreator.html +%%PORTDOCS%%%%DOCSDIR%%/api/c_gpushaderdesc.html +%%PORTDOCS%%%%DOCSDIR%%/api/c_imagedesc.html +%%PORTDOCS%%%%DOCSDIR%%/api/c_look.html +%%PORTDOCS%%%%DOCSDIR%%/api/c_packedimagedesc.html +%%PORTDOCS%%%%DOCSDIR%%/api/c_planarimagedesc.html +%%PORTDOCS%%%%DOCSDIR%%/api/c_processor.html +%%PORTDOCS%%%%DOCSDIR%%/api/c_viewingrules.html +%%PORTDOCS%%%%DOCSDIR%%/api/change_log.html +%%PORTDOCS%%%%DOCSDIR%%/api/transforms.html +%%PORTDOCS%%%%DOCSDIR%%/api/types.html +%%PORTDOCS%%%%DOCSDIR%%/aswf/_index.html +%%PORTDOCS%%%%DOCSDIR%%/aswf/aswf_docker.html +%%PORTDOCS%%%%DOCSDIR%%/aswf/charter.html +%%PORTDOCS%%%%DOCSDIR%%/aswf/cla_dco.html +%%PORTDOCS%%%%DOCSDIR%%/aswf/license.html +%%PORTDOCS%%%%DOCSDIR%%/concepts/_index.html +%%PORTDOCS%%%%DOCSDIR%%/concepts/overview/configuration_files.html +%%PORTDOCS%%%%DOCSDIR%%/concepts/overview/glossary.html +%%PORTDOCS%%%%DOCSDIR%%/concepts/overview/internal_architecture.html +%%PORTDOCS%%%%DOCSDIR%%/concepts/overview/introduction.html +%%PORTDOCS%%%%DOCSDIR%%/concepts/overview/overview.html +%%PORTDOCS%%%%DOCSDIR%%/concepts/publications/publications.html +%%PORTDOCS%%%%DOCSDIR%%/configurations/_index.html %%PORTDOCS%%%%DOCSDIR%%/configurations/aces_1.0.3.html -%%PORTDOCS%%%%DOCSDIR%%/configurations/allocation_vars.html -%%PORTDOCS%%%%DOCSDIR%%/configurations/index.html %%PORTDOCS%%%%DOCSDIR%%/configurations/nuke_default.html %%PORTDOCS%%%%DOCSDIR%%/configurations/spi_anim.html %%PORTDOCS%%%%DOCSDIR%%/configurations/spi_vfx.html %%PORTDOCS%%%%DOCSDIR%%/developers/api/OpenColorIO.html %%PORTDOCS%%%%DOCSDIR%%/developers/api/OpenColorTransforms.html %%PORTDOCS%%%%DOCSDIR%%/developers/api/OpenColorTypes.html -%%PORTDOCS%%%%DOCSDIR%%/developers/api/index.html -%%PORTDOCS%%%%DOCSDIR%%/developers/bindings/PythonAPI.html -%%PORTDOCS%%%%DOCSDIR%%/developers/bindings/PythonTransforms.html -%%PORTDOCS%%%%DOCSDIR%%/developers/bindings/PythonTypes.html -%%PORTDOCS%%%%DOCSDIR%%/developers/coding_guidelines.html -%%PORTDOCS%%%%DOCSDIR%%/developers/documentation_guidelines.html -%%PORTDOCS%%%%DOCSDIR%%/developers/getting_started.html -%%PORTDOCS%%%%DOCSDIR%%/developers/index.html -%%PORTDOCS%%%%DOCSDIR%%/developers/internal_architecture.html -%%PORTDOCS%%%%DOCSDIR%%/developers/issues.html -%%PORTDOCS%%%%DOCSDIR%%/developers/submitting_changes.html -%%PORTDOCS%%%%DOCSDIR%%/developers/usage_examples.html -%%PORTDOCS%%%%DOCSDIR%%/downloads.html %%PORTDOCS%%%%DOCSDIR%%/genindex.html +%%PORTDOCS%%%%DOCSDIR%%/guides/_index.html +%%PORTDOCS%%%%DOCSDIR%%/guides/authoring/allocation_vars.html +%%PORTDOCS%%%%DOCSDIR%%/guides/authoring/authoring.html +%%PORTDOCS%%%%DOCSDIR%%/guides/authoring/colorspaces.html +%%PORTDOCS%%%%DOCSDIR%%/guides/authoring/config_syntax.html +%%PORTDOCS%%%%DOCSDIR%%/guides/authoring/contexts.html +%%PORTDOCS%%%%DOCSDIR%%/guides/authoring/displays_views.html +%%PORTDOCS%%%%DOCSDIR%%/guides/authoring/looks.html +%%PORTDOCS%%%%DOCSDIR%%/guides/authoring/looks_example.html +%%PORTDOCS%%%%DOCSDIR%%/guides/authoring/overview.html +%%PORTDOCS%%%%DOCSDIR%%/guides/authoring/rules.html +%%PORTDOCS%%%%DOCSDIR%%/guides/authoring/transforms.html +%%PORTDOCS%%%%DOCSDIR%%/guides/contributing/architectural_notes.html +%%PORTDOCS%%%%DOCSDIR%%/guides/contributing/coding_style_guide.html +%%PORTDOCS%%%%DOCSDIR%%/guides/contributing/contributing.html +%%PORTDOCS%%%%DOCSDIR%%/guides/contributing/documentation_guidelines.html +%%PORTDOCS%%%%DOCSDIR%%/guides/contributing/doxygen_style_guide.html +%%PORTDOCS%%%%DOCSDIR%%/guides/contributing/getting_started.html +%%PORTDOCS%%%%DOCSDIR%%/guides/contributing/issues.html +%%PORTDOCS%%%%DOCSDIR%%/guides/contributing/repository_structure.html +%%PORTDOCS%%%%DOCSDIR%%/guides/contributing/submitting_changes.html +%%PORTDOCS%%%%DOCSDIR%%/guides/contributing/unit_tests.html +%%PORTDOCS%%%%DOCSDIR%%/guides/developing/app_helpers.html +%%PORTDOCS%%%%DOCSDIR%%/guides/developing/developing.html +%%PORTDOCS%%%%DOCSDIR%%/guides/developing/usage_examples.html +%%PORTDOCS%%%%DOCSDIR%%/guides/using_ocio/compatible_software.html +%%PORTDOCS%%%%DOCSDIR%%/guides/using_ocio/faq.html +%%PORTDOCS%%%%DOCSDIR%%/guides/using_ocio/tool_overview.html +%%PORTDOCS%%%%DOCSDIR%%/guides/using_ocio/using_ocio.html %%PORTDOCS%%%%DOCSDIR%%/index.html -%%PORTDOCS%%%%DOCSDIR%%/installation.html -%%PORTDOCS%%%%DOCSDIR%%/introduction.html %%PORTDOCS%%%%DOCSDIR%%/objects.inv -%%PORTDOCS%%%%DOCSDIR%%/py-modindex.html +%%PORTDOCS%%%%DOCSDIR%%/quick_start/_index.html +%%PORTDOCS%%%%DOCSDIR%%/quick_start/downloads.html +%%PORTDOCS%%%%DOCSDIR%%/quick_start/for_artists.html +%%PORTDOCS%%%%DOCSDIR%%/quick_start/for_config_authors.html +%%PORTDOCS%%%%DOCSDIR%%/quick_start/for_contributors.html +%%PORTDOCS%%%%DOCSDIR%%/quick_start/for_devs.html +%%PORTDOCS%%%%DOCSDIR%%/quick_start/installation.html +%%PORTDOCS%%%%DOCSDIR%%/requirements.html %%PORTDOCS%%%%DOCSDIR%%/search.html %%PORTDOCS%%%%DOCSDIR%%/searchindex.js -%%PORTDOCS%%%%DOCSDIR%%/userguide/baking_luts.html -%%PORTDOCS%%%%DOCSDIR%%/userguide/config_syntax.html -%%PORTDOCS%%%%DOCSDIR%%/userguide/contexts.html -%%PORTDOCS%%%%DOCSDIR%%/userguide/index.html -%%PORTDOCS%%%%DOCSDIR%%/userguide/looks.html -%%PORTDOCS%%%%DOCSDIR%%/userguide/tool_overview.html -share/ocio/setup_ocio.sh +%%PORTDOCS%%%%DOCSDIR%%/site/README.html +%%PORTDOCS%%%%DOCSDIR%%/site/README_theme.html +%%PORTDOCS%%%%DOCSDIR%%/site/archetypes/default.html +%%PORTDOCS%%%%DOCSDIR%%/site/homepage/content/english/author/john-doe.html +%%PORTDOCS%%%%DOCSDIR%%/site/homepage/content/english/author/mark-dinn.html +%%PORTDOCS%%%%DOCSDIR%%/site/homepage/content/english/blog/installation.html +%%PORTDOCS%%%%DOCSDIR%%/site/homepage/content/english/blog/simple-blog-post-1.html +%%PORTDOCS%%%%DOCSDIR%%/site/homepage/content/english/blog/simple-blog-post-2.html +%%PORTDOCS%%%%DOCSDIR%%/site/homepage/content/english/blog/simple-blog-post-3.html +%%PORTDOCS%%%%DOCSDIR%%/site/homepage/content/english/blog/simple-blog-post-4.html +%%PORTDOCS%%%%DOCSDIR%%/site/homepage/content/english/blog/simple-blog-post-5.html +%%PORTDOCS%%%%DOCSDIR%%/site/homepage/content/english/blog/simple-blog-post-6.html +%%PORTDOCS%%%%DOCSDIR%%/site/homepage/content/english/blog/simple-blog-post-7.html +%%PORTDOCS%%%%DOCSDIR%%/site/homepage/content/english/blog/simple-blog-post-8.html +%%PORTDOCS%%%%DOCSDIR%%/toc_redirect.html +%%PORTDOCS%%%%DOCSDIR%%/tutorials/_index.html +%%PORTDOCS%%%%DOCSDIR%%/tutorials/baking_luts.html +%%PORTDOCS%%%%DOCSDIR%%/tutorials/contributing.html +%%PORTDOCS%%%%DOCSDIR%%/upgrading_v2/_index.html +%%PORTDOCS%%%%DOCSDIR%%/upgrading_v2/how_to.html --- graphics/opencolorio/pkg-plist-tools +++ graphics/opencolorio/pkg-plist-tools @@ -1,5 +1,9 @@ bin/ociobakelut bin/ociocheck +bin/ociochecklut bin/ocioconvert bin/ociodisplay bin/ociolutimage +bin/ociomakeclf +bin/ocioperf +bin/ociowrite