View | Details | Raw Unified | Return to bug 253491 | Differences between
and this patch

Collapse All | Expand All

(-)graphics/opencolorio/Makefile (-60 / +74 lines)
Lines 1-103 Link Here
1
# Created by: Shane Ambler <FreeBSD@Shaneware.biz>
2
3
PORTNAME=	opencolorio
1
PORTNAME=	opencolorio
4
DISTVERSIONPREFIX=	v
2
DISTVERSIONPREFIX=	v
5
DISTVERSION=	1.1.1
3
DISTVERSION=	2.1.0
6
PORTREVISION?=	2
4
# PORTREVISION must be set with ?= so as not to stomp over
5
# py-opencolorio's PORTREVISION.
6
# Also, just to be on the safe side, when resetting,
7
# best keep PORTREVISION?=	0.
8
PORTREVISION?=	0
7
CATEGORIES=	graphics multimedia
9
CATEGORIES=	graphics multimedia
8
10
9
MAINTAINER?=	FreeBSD@Shaneware.biz
11
MAINTAINER?=	FreeBSD@Shaneware.biz
10
COMMENT?=	Complete color management solution
12
COMMENT?=	Complete color management solution
11
13
12
LICENSE=	BSD3CLAUSE
14
LICENSE=	BSD3CLAUSE
15
LICENSE_FILE=	${WRKSRC}/LICENSE
13
16
14
USES=		alias cmake compiler:c++11-lang localbase:ldflags pkgconfig \
17
LIB_DEPENDS=	libexpat.so:textproc/expat2 \
15
		shebangfix
18
		libImath.so:math/Imath \
19
		libpystring.so:devel/pystring \
20
		libyaml-cpp.so:devel/yaml-cpp
21
USES=		alias cmake compiler:c++14-lang localbase:ldflags \
22
		pkgconfig
16
23
17
USE_GITHUB=	yes
24
USE_GITHUB=	yes
18
GH_ACCOUNT=	imageworks
25
GH_ACCOUNT=	AcademySoftwareFoundation
19
GH_PROJECT=	OpenColorIO
26
GH_PROJECT=	OpenColorIO
20
27
21
CMAKE_ON=	USE_EXTERNAL_TINYXML USE_EXTERNAL_YAML
28
CMAKE_OFF=	OCIO_BUILD_JAVA OCIO_BUILD_JNIGLUE OCIO_BUILD_NUKE \
22
CMAKE_OFF=	OCIO_BUILD_JNIGLUE OCIO_BUILD_NUKE OCIO_BUILD_STATIC \
29
		OCIO_BUILD_TESTS OCIO_BUILD_GPU_TESTS
23
		OCIO_BUILD_DOCS
24
30
25
CXXFLAGS+=	${CXXFLAGS_${CHOSEN_COMPILER_TYPE}}
31
OPTIONS_DEFINE=		DOCS
26
CXXFLAGS_gcc=	-Wno-unused-function -Wno-error
32
OPTIONS_DEFAULT=	DOCS
27
CXXFLAGS_clang=	-Wno-deprecated-register
33
OPTIONS_SUB=		yes
28
34
29
SHEBANG_FILES=	share/sphinx/ExtractRstFromSourceCPP.py \
35
DOCS_CMAKE_BOOL=	OCIO_BUILD_DOCS
30
		share/sphinx/ExtractRstFromSourceSimple.py \
36
DOCS_BUILD_DEPENDS=	doxygen>0:devel/doxygen
31
		src/pyglue/createPyDocH.py
32
37
33
PLIST_SUB+=		LIBVERS=${PORTVERSION}
34
35
.if ${MACHINE_CPU:Msse2}
38
.if ${MACHINE_CPU:Msse2}
36
CMAKE_ON+=	OCIO_USE_SSE
39
CMAKE_ON+=	OCIO_USE_SSE
37
.else
40
.else
38
CMAKE_OFF+=	OCIO_USE_SSE
41
CMAKE_OFF+=	OCIO_USE_SSE
39
.endif
42
.endif
40
43
44
PLIST_SUB+=	LIBVERS=${PORTVERSION}
45
41
.include <bsd.port.options.mk>
46
.include <bsd.port.options.mk>
42
47
48
.if ${PORT_OPTIONS:MDOCS}
49
# master and pymodule use these
50
# DOCS needs to be enabled for python docstrings to be generated
51
# py module can still be used without
52
BUILD_DEPENDS+=	${PYTHON_PKGNAMEPREFIX}breathe>=0:textproc/py-breathe@${PY_FLAVOR} \
53
		${PYTHON_PKGNAMEPREFIX}recommonmark>=0:textproc/py-recommonmark@${PY_FLAVOR} \
54
		${PYTHON_PKGNAMEPREFIX}six>=0:devel/py-six@${PY_FLAVOR} \
55
		${PYTHON_PKGNAMEPREFIX}sphinx>0:textproc/py-sphinx@${PY_FLAVOR} \
56
		${PYTHON_PKGNAMEPREFIX}sphinx_press_theme>=0:textproc/py-sphinx_press_theme@${PY_FLAVOR} \
57
		${PYTHON_PKGNAMEPREFIX}sphinx-tabs>0:textproc/py-sphinx-tabs@${PY_FLAVOR} \
58
		${PYTHON_PKGNAMEPREFIX}testresources>=0:devel/py-testresources@${PY_FLAVOR}
59
.endif
60
43
.if defined(OCIO_SLAVE) && ${OCIO_SLAVE} == tools
61
.if defined(OCIO_SLAVE) && ${OCIO_SLAVE} == tools
44
LIB_DEPENDS=	liblcms2.so:graphics/lcms2 \
62
LIB_DEPENDS+=	liblcms2.so:graphics/lcms2 \
63
		libOpenColorIO.so:graphics/opencolorio \
45
		libOpenImageIO.so:graphics/openimageio \
64
		libOpenImageIO.so:graphics/openimageio \
46
		libOpenColorIO.so:graphics/opencolorio
65
		libopencv_core.so:graphics/opencv \
66
		libOpenEXR.so:graphics/openexr
47
CMAKE_ON+=	OCIO_BUILD_APPS USE_EXTERNAL_LCMS
67
CMAKE_ON+=	OCIO_BUILD_APPS USE_EXTERNAL_LCMS
48
CMAKE_OFF+=	OCIO_BUILD_SHARED OCIO_BUILD_PYGLUE
68
CMAKE_OFF+=	BUILD_SHARED_LIBS OCIO_BUILD_PYGLUE OCIO_BUILD_PYTHON
49
LDFLAGS+=	-lOpenColorIO
69
CMAKE_ARGS+=	-DCMAKE_CXX_STANDARD=14
70
LDFLAGS+=	-lOpenImageIO_Util
50
USES+=		gl xorg
71
USES+=		gl xorg
51
USE_GL=		gl glu glut glew
72
USE_GL=		egl gl glu glut glew
52
USE_XORG=	xi xmu
73
USE_XORG=	xi xmu
53
PLIST=		${PKGDIR}/pkg-plist-tools
74
PLIST=		${PKGDIR}/pkg-plist-tools
54
EXTRA_PATCHES=	${PATCHDIR}/tools
75
55
.elif defined(OCIO_SLAVE) && ${OCIO_SLAVE} == pymodule
76
.elif defined(OCIO_SLAVE) && ${OCIO_SLAVE} == pymodule
56
LIB_DEPENDS=	libOpenImageIO.so:graphics/openimageio \
77
BUILD_DEPENDS+=	pybind11>0:devel/pybind11
57
		libOpenColorIO.so:graphics/opencolorio
78
LIB_DEPENDS+=	libOpenColorIO.so:graphics/opencolorio
58
USES+=		python:3.6+
79
# textproc/py-sphinx_press_theme doesn't support py3.6
59
USE_PYTHON=	flavors
80
USES+=		python:3.7+
60
LDFLAGS+=	-lOpenColorIO
81
LDFLAGS+=	-lOpenColorIO
61
CMAKE_ON+=	OCIO_BUILD_PYGLUE OCIO_PYGLUE_LINK
82
CMAKE_ON+=	OCIO_BUILD_PYTHON
62
CMAKE_OFF+=	OCIO_BUILD_APPS OCIO_BUILD_SHARED
83
CMAKE_OFF+=	OCIO_BUILD_APPS BUILD_SHARED_LIBS
63
CMAKE_ARGS+=	-DPYTHON:FILEPATH=${PYTHON_CMD}
84
CMAKE_ARGS+=	-DOCIO_PYTHON_VERSION=${PYTHON_VER}
64
PLIST=		${PKGDIR}/pkg-plist-pyglue
85
PLIST=		${PKGDIR}/pkg-plist-pyglue ${PKGDIR}/pkg-plist-docs
86
# concurrent allows docs to not collide with master port
87
USE_PYTHON=	concurrent flavors
88
65
.else # master port
89
.else # master port
66
LIB_DEPENDS=	libtinyxml.so:textproc/tinyxml \
67
		libyaml-cpp03.so:devel/yaml-cpp03
68
USES+=		python:3.6+,build
69
USE_LDCONFIG=	yes
70
CMAKE_ON+=	OCIO_BUILD_SHARED OCIO_BUILD_PYGLUE
71
CMAKE_OFF+=	OCIO_BUILD_APPS
72
CMAKE_ARGS+=	-DPYTHON:FILEPATH=${PYTHON_CMD}
73
# we enable pyglue in master port. This makes the python module
90
# we enable pyglue in master port. This makes the python module
74
# available when generating docs, we leave the python header in place
91
# available when generating docs, we leave the python header in place
75
# but only install the python module with the py-opencolorio port
92
# but only install the python module with the py-opencolorio port
76
# this makes it easier to allow multiple python versions installed
93
# this makes it easier to allow multiple python versions installed
77
PLIST=		${PKGDIR}/pkg-plist
94
BUILD_DEPENDS+=	pybind11>0:devel/pybind11
78
EXTRA_PATCHES=	${PATCHDIR}/libs
95
CMAKE_ON+=	BUILD_SHARED_LIBS OCIO_BUILD_PYGLUE OCIO_BUILD_PYTHON
96
CMAKE_OFF+=	OCIO_BUILD_APPS
97
CMAKE_ARGS+=	-DOCIO_PYTHON_VERSION=${PYTHON_VER}
98
USES+=		gl python:build xorg
99
USE_GL=		gl glu glut glew
100
USE_XORG=	xi xmu
101
USE_LDCONFIG=	yes
102
PLIST=		${PKGDIR}/pkg-plist ${PKGDIR}/pkg-plist-docs
79
.endif
103
.endif
80
104
81
post-patch:
82
	@${REINPLACE_CMD} -e '/pkg_check_modules/ s|yaml-cpp|&03|' \
83
		${WRKSRC}/CMakeLists.txt
84
	@${REINPLACE_CMD} -e '/YAML_CPP_INCLUDE_DIR/ s|yaml-cpp|&03|' \
85
		${WRKSRC}/CMakeLists.txt
86
	@${REINPLACE_CMD} -e '/YAML_CPP_LIBRARY/ s|yaml-cpp|&03|' \
87
		${WRKSRC}/CMakeLists.txt
88
	@${REINPLACE_CMD} -e 's|yaml-cpp|&03|' ${WRKSRC}/src/core/OCIOYaml.cpp
89
.if ${SLAVE_PORT} == yes
90
	@${FIND} ${WRKSRC}/src/apps -name main.cpp | ${XARGS} \
91
		${REINPLACE_CMD} '/namespace OIIO/d'
92
.endif
93
94
.if defined(OCIO_SLAVE) && ${OCIO_SLAVE} == pymodule
95
do-install:
96
	@${MKDIR} ${STAGEDIR}${PYTHON_SITELIBDIR}
97
	${INSTALL_LIB} ${BUILD_WRKSRC}/src/pyglue/PyOpenColorIO.so ${STAGEDIR}${PYTHON_SITELIBDIR}
98
.elif !defined(OCIO_SLAVE)
99
post-install:
105
post-install:
100
	@${RM} -R ${STAGEDIR}${PYTHON_LIBDIR}
106
	@cd ${STAGEDIR}${PREFIX} && ${RM} -r share/ocio
107
.if defined(OCIO_SLAVE)
108
	@cd ${STAGEDIR}${PREFIX} && ${RM} -r include libdata lib/cmake lib/libOpenColorIO.a
101
.endif
109
.endif
110
.if !defined(OCIO_SLAVE) || (defined(OCIO_SLAVE) && ${OCIO_SLAVE} != pymodule)
111
	@cd ${STAGEDIR}${PREFIX} && ${RM} -r lib/libOpenColorIO*.a lib/python*
112
.endif
113
114
post-install-DOCS-on:
115
	@cd ${STAGEDIR}${PREFIX}/share/doc && ${MV} OpenColorIO ${PKGNAMEPREFIX}${PORTNAME}
102
116
103
.include <bsd.port.mk>
117
.include <bsd.port.mk>
(-)graphics/opencolorio/distinfo (-3 / +3 lines)
Lines 1-3 Link Here
1
TIMESTAMP = 1557638944
1
TIMESTAMP = 1638315944
2
SHA256 (imageworks-OpenColorIO-v1.1.1_GH0.tar.gz) = c9b5b9def907e1dafb29e37336b702fff22cc6306d445a13b1621b8a754c14c8
2
SHA256 (AcademySoftwareFoundation-OpenColorIO-v2.1.0_GH0.tar.gz) = 81fc7853a490031632a69c73716bc6ac271b395e2ba0e2587af9995c2b0efb5f
3
SIZE (imageworks-OpenColorIO-v1.1.1_GH0.tar.gz) = 13828483
3
SIZE (AcademySoftwareFoundation-OpenColorIO-v2.1.0_GH0.tar.gz) = 10970849
(-)graphics/opencolorio/files/libs/patch-CMakeLists.txt (-17 lines)
Lines 1-17 Link Here
1
--- ./CMakeLists.txt.orig	2018-01-05 12:08:27 UTC
2
+++ ./CMakeLists.txt
3
@@ -596,7 +599,7 @@ if(TARGET OpenColorIO_STATIC)
4
         set(OCIO_STATIC_COMPILE_DEFINITIONS )
5
     endif()
6
 endif()
7
-install(EXPORT OpenColorIO DESTINATION cmake)
8
+install(EXPORT OpenColorIO DESTINATION ${CMAKE_INSTALL_PREFIX}/share/cmake/Modules)
9
 file(WRITE "${CMAKE_BINARY_DIR}/OpenColorIOConfig.cmake"
10
     "
11
     get_filename_component(OpenColorIO_DIR \"\${CMAKE_CURRENT_LIST_FILE}\" PATH)
12
@@ -646,4 +649,4 @@ file(WRITE "${CMAKE_BINARY_DIR}/OpenColo
13
     message(STATUS OPENCOLORIO_FOUND=\${OPENCOLORIO_FOUND})
14
     "
15
 )
16
-install(FILES "${CMAKE_BINARY_DIR}/OpenColorIOConfig.cmake" DESTINATION .)
17
+install(FILES "${CMAKE_BINARY_DIR}/OpenColorIOConfig.cmake" DESTINATION ${CMAKE_INSTALL_PREFIX}/share/cmake/Modules)
(-)graphics/opencolorio/files/libs/patch-src_core_CMakeLists.txt (-8 lines)
Lines 1-8 Link Here
1
--- src/core/CMakeLists.txt.orig	2014-09-11 19:08:18 UTC
2
+++ src/core/CMakeLists.txt
3
@@ -90,4 +90,4 @@ message(STATUS "Create OpenColorIO.pc fr
4
 configure_file(${CMAKE_SOURCE_DIR}/export/pkgconfig/OpenColorIO.pc.in
5
     ${CMAKE_CURRENT_BINARY_DIR}/OpenColorIO.pc @ONLY)
6
 install(FILES ${CMAKE_CURRENT_BINARY_DIR}/OpenColorIO.pc
7
-    DESTINATION ${CMAKE_INSTALL_EXEC_PREFIX}/lib${LIB_SUFFIX}/pkgconfig/)
8
+    DESTINATION ${CMAKE_INSTALL_EXEC_PREFIX}/libdata/pkgconfig/)
(-)graphics/opencolorio/files/patch-CMakeLists.txt (-28 / +27 lines)
Lines 1-32 Link Here
1
--- CMakeLists.txt.orig	2018-01-05 12:08:27 UTC
1
--- CMakeLists.txt.orig	2021-12-01 02:34:49 UTC
2
+++ CMakeLists.txt
2
+++ CMakeLists.txt
3
@@ -3,6 +3,10 @@ set(OCIO_VERSION_MAJOR 1)
3
@@ -119,14 +119,12 @@ option(OCIO_BUILD_FROZEN_DOCS "Specify whether to buil
4
 set(OCIO_VERSION_MINOR 1)
4
 option(OCIO_BUILD_DOCS "Specify whether to build documentation" ${OCIO_BUILD_FROZEN_DOCS})
5
 set(OCIO_VERSION_PATCH 0)
6
 
5
 
7
+set(CMAKE_CXX_STANDARD 11)
6
 option(OCIO_BUILD_PYTHON "Specify whether to build python bindings" ON)
8
+set(CMAKE_CXX_STANDARD_REQUIRED ON)
7
-set (OCIO_PYTHON_VERSION "" CACHE STRING
9
+set(CMAKE_CXX_EXTENSIONS OFF)
8
-     "Preferred Python version (if any) in case multiple are available")
10
+
9
+option(OCIO_PYTHON_VERSION "Preferred Python version (if any) in case multiple are available" 3.8)
11
 cmake_minimum_required(VERSION 2.8)
12
 set(CMAKE_MODULE_PATH ${CMAKE_SOURCE_DIR}/share/cmake)
13
 if(NOT DEFINED CMAKE_FIRST_RUN)
14
@@ -218,8 +222,7 @@ else(USE_EXTERNAL_TINYXML)
15
         ## => 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
16
         ## => 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
17
         ## => TODO: so maybe provide a simple cmake way to build 3rdParty as shared and auto install with this project ?
18
-        set_target_properties(TINYXML_LIB PROPERTIES COMPILE_FLAGS "-DTIXML_USE_STL -fPIC -fvisibility-inlines-hidden -fvisibility=hidden")
19
-        add_definitions(-DTIXML_USE_STL) ## needed to build correctly, and also need to be propagated in child projects (client projects)
20
+        set_target_properties(TINYXML_LIB PROPERTIES COMPILE_FLAGS "-fPIC -fvisibility-inlines-hidden -fvisibility=hidden")
21
         list(APPEND EXTERNAL_OBJECTS $<TARGET_OBJECTS:TINYXML_LIB>)
22
     else()
23
         find_package(Git REQUIRED) ## in order to apply patch (for crossplateform compatibility)
24
@@ -384,7 +387,7 @@ else()
25
     set(OCIO_INLINES_HIDDEN OFF)
26
 endif()
27
 
10
 
28
-set(EXTERNAL_COMPILE_FLAGS "-DTIXML_USE_STL ${YAML_CPP_COMPILE_FLAGS} ${GCC_COMPILE_FLAGS}")
11
 option(OCIO_BUILD_JAVA "Specify whether to build java bindings" OFF)
29
+set(EXTERNAL_COMPILE_FLAGS "${YAML_CPP_COMPILE_FLAGS} ${GCC_COMPILE_FLAGS}")
30
 
12
 
31
 set(EXTERNAL_LINK_FLAGS "")
13
 option(OCIO_WARNING_AS_ERROR "Set build error level for CI testing" OFF)
32
 set(EXTERNAL_LIBRARY_DIRS ${PROJECT_BINARY_DIR}/ext/dist/lib)
14
 
15
-
16
 ###############################################################################
17
 # Optimization / internal linking preferences
18
 
19
@@ -262,7 +260,6 @@ add_subdirectory(src)
20
 add_subdirectory(include)
21
 add_subdirectory(ext)
22
 
23
-
24
 ###############################################################################
25
 # Configure env script
26
 
27
@@ -315,3 +312,4 @@ install(
28
     FILES "${OCIO_PROJECT_CONFIG}" "${OCIO_VERSION_CONFIG}"
29
     DESTINATION "${OCIO_CONFIG_INSTALL_DIR}"
30
 )
31
+
(-)graphics/opencolorio/files/patch-docs_CMakeLists.txt (-17 lines)
Lines 1-17 Link Here
1
--- docs/CMakeLists.txt.orig	2014-09-11 19:08:18 UTC
2
+++ docs/CMakeLists.txt
3
@@ -110,12 +115,11 @@ add_custom_target(doc ALL
4
 add_dependencies(doc Sphinx) 
5
 
6
 install(DIRECTORY ${CMAKE_CURRENT_BINARY_DIR}/build-html/
7
-        DESTINATION ${CMAKE_INSTALL_PREFIX}/share/doc/OpenColorIO/html
8
+        DESTINATION ${CMAKE_INSTALL_PREFIX}/share/doc/opencolorio
9
         PATTERN .* EXCLUDE
10
 )
11
 
12
-find_package(LATEX)
13
-if(PDFLATEX_COMPILER)
14
+if(0)
15
     
16
     add_custom_target(latex
17
         COMMAND PYTHONPATH=${PYTHONPATH} ${EXTDIST_BINPATH}/sphinx-build -b latex . ${CMAKE_CURRENT_BINARY_DIR}/build-latex
(-)graphics/opencolorio/files/patch-share_cmake_OCIOMacros.cmake (-39 lines)
Lines 1-39 Link Here
1
--- share/cmake/OCIOMacros.cmake.orig	2019-03-28 05:12:57 UTC
2
+++ share/cmake/OCIOMacros.cmake
3
@@ -96,27 +96,6 @@ MACRO(OCIOFindOpenImageIO)
4
         set(OIIO_FOUND TRUE)
5
         message(STATUS "Found OIIO library ${OIIO_LIBRARIES}")
6
         message(STATUS "Found OIIO includes ${OIIO_INCLUDES}")
7
-
8
-        # Unfortunately, OIIO hides a dependency to Ilmbase includes
9
-
10
-        if(ILMBASE_PATH)
11
-            message(STATUS "Ilmbase path explicitly specified: ${ILMBASE_PATH}")
12
-        endif()
13
-
14
-        FIND_PATH( ILMBASE_INCLUDES OpenEXR/half.h
15
-            ${ILMBASE_PATH}/include/
16
-            /usr/include
17
-            /usr/local/include
18
-            /sw/include
19
-            /opt/local/include
20
-            DOC "The directory where OpenEXR/half.h resides")
21
-
22
-        if(ILMBASE_INCLUDES)
23
-            message(STATUS "Found Ilmbase includes ${ILMBASE_INCLUDES}")
24
-        else()
25
-            set(OIIO_FOUND FALSE)
26
-            message(STATUS "Ilmbase not found. Specify ILMBASE_PATH to locate it")
27
-        endif()
28
     else()
29
         set(OIIO_FOUND FALSE)
30
         message(STATUS "OIIO not found. Specify OIIO_PATH to locate it")
31
@@ -222,7 +201,7 @@ MACRO(OCIOFindPython)
32
         file(TO_CMAKE_PATH "${PYTHON_LIBRARY_DIRS_RAW}" PYTHON_LIBRARY_DIRS)
33
 
34
         FIND_LIBRARY(PYTHON_LIBRARY
35
-            NAMES "python${PYTHON_VERSION}"
36
+            NAMES "${PYTHON_VERSION}${PYTHON_ABIVER}"
37
             PATHS ${PYTHON_LIBRARY_DIRS}
38
             NO_DEFAULT_PATH # Don't be "helpful" and randomly grab library from /usr/lib etc
39
         )
(-)graphics/opencolorio/files/patch-share_cmake_modules_FindExtPackages.cmake (+11 lines)
Line 0 Link Here
1
--- share/cmake/modules/FindExtPackages.cmake.orig	2021-08-31 10:54:04 UTC
2
+++ share/cmake/modules/FindExtPackages.cmake
3
@@ -107,7 +107,7 @@ if(OCIO_BUILD_PYTHON OR OCIO_BUILD_DOCS)
4
     endif()
5
 
6
     # Python
7
-    find_package(Python ${OCIO_PYTHON_VERSION} REQUIRED
8
+    find_package(Python ${OCIO_PYTHON_VERSION} EXACT
9
                  COMPONENTS ${_Python_COMPONENTS})
10
 
11
     if(OCIO_BUILD_PYTHON)
(-)graphics/opencolorio/files/patch-share_cmake_modules_FindSphinx.cmake (+11 lines)
Line 0 Link Here
1
--- share/cmake/modules/FindSphinx.cmake.orig	2021-12-05 07:24:43 UTC
2
+++ share/cmake/modules/FindSphinx.cmake
3
@@ -24,7 +24,7 @@ endif()
4
 # Find sphinx-build
5
 find_program(Sphinx_EXECUTABLE 
6
     NAMES 
7
-        sphinx-build
8
+        sphinx-build-${Python_VERSION_MAJOR}.${Python_VERSION_MINOR}
9
     HINTS
10
         ${Sphinx_ROOT}
11
         ${_Python_SCRIPTS_DIR}
(-)graphics/opencolorio/files/patch-share_cmake_modules_Findyaml-cpp.cmake (+13 lines)
Line 0 Link Here
1
--- share/cmake/modules/Findyaml-cpp.cmake.orig	2021-12-02 22:09:04 UTC
2
+++ share/cmake/modules/Findyaml-cpp.cmake
3
@@ -32,8 +32,8 @@ if(NOT OCIO_INSTALL_EXT_PACKAGES STREQUAL ALL)
4
         # Search for yaml-cpp-config.cmake
5
         find_package(yaml-cpp ${yaml-cpp_FIND_VERSION} CONFIG QUIET)
6
     endif()
7
-
8
-    if(yaml-cpp_FOUND)
9
+    # while yaml-cpp.cmake finds yaml-cpp the LIBRARY fails to be set for 0.7.0??
10
+    if(NOT yaml-cpp_FOUND)
11
         get_target_property(yaml-cpp_LIBRARY yaml-cpp LOCATION)
12
     else()
13
 
(-)graphics/opencolorio/files/patch-src_core_Config.cpp (-11 lines)
Lines 1-11 Link Here
1
--- src/core/Config.cpp.orig	2018-09-04 18:15:21 UTC
2
+++ src/core/Config.cpp
3
@@ -324,7 +324,7 @@ OCIO_NAMESPACE_ENTER
4
                 sanitytext_ = rhs.sanitytext_;
5
                 
6
                 cacheids_ = rhs.cacheids_;
7
-                cacheidnocontext_ = cacheidnocontext_;
8
+                cacheidnocontext_ = rhs.cacheidnocontext_;
9
             }
10
             return *this;
11
         }
(-)graphics/opencolorio/files/tools/patch-CMakeLists.txt (-35 lines)
Lines 1-35 Link Here
1
--- ./CMakeLists.txt.orig	2018-01-05 12:08:27 UTC
2
+++ ./CMakeLists.txt
3
@@ -457,7 +460,7 @@ endif()
4
 ###############################################################################
5
 ### APPS ###
6
 
7
-if(OCIO_BUILD_APPS AND (OCIO_BUILD_STATIC OR OCIO_BUILD_SHARED) )
8
+if(OCIO_BUILD_APPS)
9
 
10
     # Try to find OpenImageIO (OIIO) and OpenGL stuff
11
     OCIOFindOpenImageIO()
12
@@ -531,7 +534,7 @@ endif()
13
 configure_file(${CMAKE_SOURCE_DIR}/share/ocio/setup_ocio.sh.in
14
     ${CMAKE_CURRENT_BINARY_DIR}/share/ocio/setup_ocio.sh @ONLY)
15
 
16
-INSTALL(PROGRAMS ${CMAKE_CURRENT_BINARY_DIR}/share/ocio/setup_ocio.sh DESTINATION share/ocio/)
17
+#INSTALL(PROGRAMS ${CMAKE_CURRENT_BINARY_DIR}/share/ocio/setup_ocio.sh DESTINATION share/ocio/)
18
 
19
 ###############################################################################
20
 ### CPACK ###
21
@@ -596,7 +595,7 @@ if(TARGET OpenColorIO_STATIC)
22
         set(OCIO_STATIC_COMPILE_DEFINITIONS )
23
     endif()
24
 endif()
25
-install(EXPORT OpenColorIO DESTINATION cmake)
26
+#install(EXPORT OpenColorIO DESTINATION cmake)
27
 file(WRITE "${CMAKE_BINARY_DIR}/OpenColorIOConfig.cmake"
28
     "
29
     get_filename_component(OpenColorIO_DIR \"\${CMAKE_CURRENT_LIST_FILE}\" PATH)
30
@@ -646,4 +649,4 @@ file(WRITE "${CMAKE_BINARY_DIR}/OpenColo
31
     message(STATUS OPENCOLORIO_FOUND=\${OPENCOLORIO_FOUND})
32
     "
33
 )
34
-install(FILES "${CMAKE_BINARY_DIR}/OpenColorIOConfig.cmake" DESTINATION .)
35
+#install(FILES "${CMAKE_BINARY_DIR}/OpenColorIOConfig.cmake" DESTINATION ${CMAKE_INSTALL_PREFIX}/share/cmake/Modules)
(-)graphics/opencolorio/files/tools/patch-src_core_CMakeLists.txt (-18 lines)
Lines 1-18 Link Here
1
--- src/core/CMakeLists.txt.orig	2018-02-05 14:07:04 UTC
2
+++ src/core/CMakeLists.txt
3
@@ -105,15 +105,3 @@ macro(target_link_OCIO target)
4
         set_target_properties(${target} PROPERTIES COMPILE_DEFINITIONS OpenColorIO_STATIC)
5
     endif()
6
 endmacro()
7
-
8
-
9
-# public interface
10
-install(FILES ${core_export_headers}
11
-    DESTINATION ${CMAKE_INSTALL_PREFIX}/include/OpenColorIO/)
12
-
13
-# pkg-config
14
-message(STATUS "Create OpenColorIO.pc from OpenColorIO.pc.in")
15
-configure_file(${CMAKE_SOURCE_DIR}/export/pkgconfig/OpenColorIO.pc.in
16
-    ${CMAKE_CURRENT_BINARY_DIR}/OpenColorIO.pc @ONLY)
17
-install(FILES ${CMAKE_CURRENT_BINARY_DIR}/OpenColorIO.pc
18
-    DESTINATION ${CMAKE_INSTALL_EXEC_PREFIX}/lib${LIB_SUFFIX}/pkgconfig/)
(-)graphics/opencolorio/pkg-plist (-6 / +6 lines)
Lines 1-13 Link Here
1
include/OpenColorIO/OpenColorABI.h
1
include/OpenColorIO/OpenColorABI.h
2
include/OpenColorIO/OpenColorAppHelpers.h
2
include/OpenColorIO/OpenColorIO.h
3
include/OpenColorIO/OpenColorIO.h
3
include/OpenColorIO/OpenColorTransforms.h
4
include/OpenColorIO/OpenColorTransforms.h
4
include/OpenColorIO/OpenColorTypes.h
5
include/OpenColorIO/OpenColorTypes.h
5
include/PyOpenColorIO/PyOpenColorIO.h
6
lib/cmake/OpenColorIO/OpenColorIOConfig.cmake
7
lib/cmake/OpenColorIO/OpenColorIOConfigVersion.cmake
8
lib/cmake/OpenColorIO/OpenColorIOTargets-release.cmake
9
lib/cmake/OpenColorIO/OpenColorIOTargets.cmake
6
lib/libOpenColorIO.so
10
lib/libOpenColorIO.so
7
lib/libOpenColorIO.so.1
11
lib/libOpenColorIO.so.2.1
8
lib/libOpenColorIO.so.%%LIBVERS%%
12
lib/libOpenColorIO.so.%%LIBVERS%%
9
libdata/pkgconfig/OpenColorIO.pc
13
libdata/pkgconfig/OpenColorIO.pc
10
share/cmake/Modules/OpenColorIOConfig.cmake
11
share/cmake/Modules/OpenColorIO-release.cmake
12
share/cmake/Modules/OpenColorIO.cmake
13
share/ocio/setup_ocio.sh
(-)graphics/opencolorio/pkg-plist-docs (+211 lines)
Line 0 Link Here
1
%%PORTDOCS%%%%DOCSDIR%%/html/CHANGELOG.html
2
%%PORTDOCS%%%%DOCSDIR%%/html/CMakeLists.html
3
%%PORTDOCS%%%%DOCSDIR%%/html/INSTALL.html
4
%%PORTDOCS%%%%DOCSDIR%%/html/README.html
5
%%PORTDOCS%%%%DOCSDIR%%/html/V2_DOC_README.html
6
%%PORTDOCS%%%%DOCSDIR%%/html/_images/gn10_to_linear_light.jpeg
7
%%PORTDOCS%%%%DOCSDIR%%/html/_images/gnf_to_linear_light.jpeg
8
%%PORTDOCS%%%%DOCSDIR%%/html/_images/lg10_to_linear_light.jpeg
9
%%PORTDOCS%%%%DOCSDIR%%/html/_images/lg8_to_vd8.jpeg
10
%%PORTDOCS%%%%DOCSDIR%%/html/_images/lgf_to_linear_light.jpeg
11
%%PORTDOCS%%%%DOCSDIR%%/html/_images/psicc_itworks.png
12
%%PORTDOCS%%%%DOCSDIR%%/html/_images/psicc_open_current_profile.png
13
%%PORTDOCS%%%%DOCSDIR%%/html/_images/psicc_proof_setup.png
14
%%PORTDOCS%%%%DOCSDIR%%/html/_images/psicc_reveal_profile.png
15
%%PORTDOCS%%%%DOCSDIR%%/html/_images/psicc_select_profile.png
16
%%PORTDOCS%%%%DOCSDIR%%/html/_sources/CHANGELOG.md.txt
17
%%PORTDOCS%%%%DOCSDIR%%/html/_sources/CMakeLists.txt
18
%%PORTDOCS%%%%DOCSDIR%%/html/_sources/INSTALL.md.txt
19
%%PORTDOCS%%%%DOCSDIR%%/html/_sources/README.md.txt
20
%%PORTDOCS%%%%DOCSDIR%%/html/_sources/V2_DOC_README.md.txt
21
%%PORTDOCS%%%%DOCSDIR%%/html/_sources/api/_index.rst.txt
22
%%PORTDOCS%%%%DOCSDIR%%/html/_sources/api/apphelpers.rst.txt
23
%%PORTDOCS%%%%DOCSDIR%%/html/_sources/api/baker.rst.txt
24
%%PORTDOCS%%%%DOCSDIR%%/html/_sources/api/colorspace.rst.txt
25
%%PORTDOCS%%%%DOCSDIR%%/html/_sources/api/config.rst.txt
26
%%PORTDOCS%%%%DOCSDIR%%/html/_sources/api/constants.rst.txt
27
%%PORTDOCS%%%%DOCSDIR%%/html/_sources/api/context.rst.txt
28
%%PORTDOCS%%%%DOCSDIR%%/html/_sources/api/dynamicproperty.rst.txt
29
%%PORTDOCS%%%%DOCSDIR%%/html/_sources/api/enums.rst.txt
30
%%PORTDOCS%%%%DOCSDIR%%/html/_sources/api/exceptions.rst.txt
31
%%PORTDOCS%%%%DOCSDIR%%/html/_sources/api/formatmetadata.rst.txt
32
%%PORTDOCS%%%%DOCSDIR%%/html/_sources/api/global.rst.txt
33
%%PORTDOCS%%%%DOCSDIR%%/html/_sources/api/grading_transforms.rst.txt
34
%%PORTDOCS%%%%DOCSDIR%%/html/_sources/api/imagedesc.rst.txt
35
%%PORTDOCS%%%%DOCSDIR%%/html/_sources/api/look.rst.txt
36
%%PORTDOCS%%%%DOCSDIR%%/html/_sources/api/namedtransform.rst.txt
37
%%PORTDOCS%%%%DOCSDIR%%/html/_sources/api/processors.rst.txt
38
%%PORTDOCS%%%%DOCSDIR%%/html/_sources/api/rules.rst.txt
39
%%PORTDOCS%%%%DOCSDIR%%/html/_sources/api/shaders.rst.txt
40
%%PORTDOCS%%%%DOCSDIR%%/html/_sources/api/systemmonitors.rst.txt
41
%%PORTDOCS%%%%DOCSDIR%%/html/_sources/api/transforms.rst.txt
42
%%PORTDOCS%%%%DOCSDIR%%/html/_sources/api/viewtransform.rst.txt
43
%%PORTDOCS%%%%DOCSDIR%%/html/_sources/aswf/_index.rst.txt
44
%%PORTDOCS%%%%DOCSDIR%%/html/_sources/aswf/aswf_docker.rst.txt
45
%%PORTDOCS%%%%DOCSDIR%%/html/_sources/aswf/charter.rst.txt
46
%%PORTDOCS%%%%DOCSDIR%%/html/_sources/aswf/cla_dco.rst.txt
47
%%PORTDOCS%%%%DOCSDIR%%/html/_sources/aswf/license.rst.txt
48
%%PORTDOCS%%%%DOCSDIR%%/html/_sources/concepts/_index.rst.txt
49
%%PORTDOCS%%%%DOCSDIR%%/html/_sources/concepts/overview/configuration_files.rst.txt
50
%%PORTDOCS%%%%DOCSDIR%%/html/_sources/concepts/overview/glossary.rst.txt
51
%%PORTDOCS%%%%DOCSDIR%%/html/_sources/concepts/overview/internal_architecture.rst.txt
52
%%PORTDOCS%%%%DOCSDIR%%/html/_sources/concepts/overview/introduction.rst.txt
53
%%PORTDOCS%%%%DOCSDIR%%/html/_sources/concepts/overview/overview.rst.txt
54
%%PORTDOCS%%%%DOCSDIR%%/html/_sources/concepts/publications/publications.rst.txt
55
%%PORTDOCS%%%%DOCSDIR%%/html/_sources/configurations/_index.rst.txt
56
%%PORTDOCS%%%%DOCSDIR%%/html/_sources/configurations/aces_1.0.3.rst.txt
57
%%PORTDOCS%%%%DOCSDIR%%/html/_sources/configurations/nuke_default.rst.txt
58
%%PORTDOCS%%%%DOCSDIR%%/html/_sources/configurations/ocio_v2_demo.rst.txt
59
%%PORTDOCS%%%%DOCSDIR%%/html/_sources/configurations/spi_anim.rst.txt
60
%%PORTDOCS%%%%DOCSDIR%%/html/_sources/configurations/spi_vfx.rst.txt
61
%%PORTDOCS%%%%DOCSDIR%%/html/_sources/guides/_index.rst.txt
62
%%PORTDOCS%%%%DOCSDIR%%/html/_sources/guides/authoring/allocation_vars.rst.txt
63
%%PORTDOCS%%%%DOCSDIR%%/html/_sources/guides/authoring/authoring.rst.txt
64
%%PORTDOCS%%%%DOCSDIR%%/html/_sources/guides/authoring/colorspaces.rst.txt
65
%%PORTDOCS%%%%DOCSDIR%%/html/_sources/guides/authoring/contexts.rst.txt
66
%%PORTDOCS%%%%DOCSDIR%%/html/_sources/guides/authoring/displays_views.rst.txt
67
%%PORTDOCS%%%%DOCSDIR%%/html/_sources/guides/authoring/looks.rst.txt
68
%%PORTDOCS%%%%DOCSDIR%%/html/_sources/guides/authoring/looks_example.rst.txt
69
%%PORTDOCS%%%%DOCSDIR%%/html/_sources/guides/authoring/overview.rst.txt
70
%%PORTDOCS%%%%DOCSDIR%%/html/_sources/guides/authoring/rules.rst.txt
71
%%PORTDOCS%%%%DOCSDIR%%/html/_sources/guides/authoring/transforms.rst.txt
72
%%PORTDOCS%%%%DOCSDIR%%/html/_sources/guides/contributing/architectural_notes.rst.txt
73
%%PORTDOCS%%%%DOCSDIR%%/html/_sources/guides/contributing/coding_style_guide.rst.txt
74
%%PORTDOCS%%%%DOCSDIR%%/html/_sources/guides/contributing/contributing.rst.txt
75
%%PORTDOCS%%%%DOCSDIR%%/html/_sources/guides/contributing/documentation_guidelines.rst.txt
76
%%PORTDOCS%%%%DOCSDIR%%/html/_sources/guides/contributing/doxygen_style_guide.rst.txt
77
%%PORTDOCS%%%%DOCSDIR%%/html/_sources/guides/contributing/getting_started.rst.txt
78
%%PORTDOCS%%%%DOCSDIR%%/html/_sources/guides/contributing/issues.rst.txt
79
%%PORTDOCS%%%%DOCSDIR%%/html/_sources/guides/contributing/repository_structure.rst.txt
80
%%PORTDOCS%%%%DOCSDIR%%/html/_sources/guides/contributing/submitting_changes.rst.txt
81
%%PORTDOCS%%%%DOCSDIR%%/html/_sources/guides/contributing/unit_tests.rst.txt
82
%%PORTDOCS%%%%DOCSDIR%%/html/_sources/guides/developing/app_helpers.rst.txt
83
%%PORTDOCS%%%%DOCSDIR%%/html/_sources/guides/developing/developing.rst.txt
84
%%PORTDOCS%%%%DOCSDIR%%/html/_sources/guides/developing/usage_examples.rst.txt
85
%%PORTDOCS%%%%DOCSDIR%%/html/_sources/guides/using_ocio/compatible_software.rst.txt
86
%%PORTDOCS%%%%DOCSDIR%%/html/_sources/guides/using_ocio/faq.rst.txt
87
%%PORTDOCS%%%%DOCSDIR%%/html/_sources/guides/using_ocio/tool_overview.rst.txt
88
%%PORTDOCS%%%%DOCSDIR%%/html/_sources/guides/using_ocio/using_ocio.rst.txt
89
%%PORTDOCS%%%%DOCSDIR%%/html/_sources/index.rst.txt
90
%%PORTDOCS%%%%DOCSDIR%%/html/_sources/quick_start/_index.rst.txt
91
%%PORTDOCS%%%%DOCSDIR%%/html/_sources/quick_start/downloads.rst.txt
92
%%PORTDOCS%%%%DOCSDIR%%/html/_sources/quick_start/for_artists.rst.txt
93
%%PORTDOCS%%%%DOCSDIR%%/html/_sources/quick_start/for_config_authors.rst.txt
94
%%PORTDOCS%%%%DOCSDIR%%/html/_sources/quick_start/for_contributors.rst.txt
95
%%PORTDOCS%%%%DOCSDIR%%/html/_sources/quick_start/for_devs.rst.txt
96
%%PORTDOCS%%%%DOCSDIR%%/html/_sources/quick_start/installation.rst.txt
97
%%PORTDOCS%%%%DOCSDIR%%/html/_sources/requirements.txt
98
%%PORTDOCS%%%%DOCSDIR%%/html/_sources/toc_redirect.rst.txt
99
%%PORTDOCS%%%%DOCSDIR%%/html/_sources/tutorials/_index.rst.txt
100
%%PORTDOCS%%%%DOCSDIR%%/html/_sources/tutorials/baking_luts.rst.txt
101
%%PORTDOCS%%%%DOCSDIR%%/html/_sources/tutorials/contributing.rst.txt
102
%%PORTDOCS%%%%DOCSDIR%%/html/_sources/upgrading_v2/_index.rst.txt
103
%%PORTDOCS%%%%DOCSDIR%%/html/_sources/upgrading_v2/how_to.rst.txt
104
%%PORTDOCS%%%%DOCSDIR%%/html/_static/OpenColorIO_withText.svg
105
%%PORTDOCS%%%%DOCSDIR%%/html/_static/basic.css
106
%%PORTDOCS%%%%DOCSDIR%%/html/_static/doctools.js
107
%%PORTDOCS%%%%DOCSDIR%%/html/_static/documentation_options.js
108
%%PORTDOCS%%%%DOCSDIR%%/html/_static/file.png
109
%%PORTDOCS%%%%DOCSDIR%%/html/_static/jquery-3.5.1.js
110
%%PORTDOCS%%%%DOCSDIR%%/html/_static/jquery.js
111
%%PORTDOCS%%%%DOCSDIR%%/html/_static/language_data.js
112
%%PORTDOCS%%%%DOCSDIR%%/html/_static/minus.png
113
%%PORTDOCS%%%%DOCSDIR%%/html/_static/ocio_b.svg
114
%%PORTDOCS%%%%DOCSDIR%%/html/_static/plus.png
115
%%PORTDOCS%%%%DOCSDIR%%/html/_static/pygments.css
116
%%PORTDOCS%%%%DOCSDIR%%/html/_static/searchtools.js
117
%%PORTDOCS%%%%DOCSDIR%%/html/_static/sphinx_press_theme.css
118
%%PORTDOCS%%%%DOCSDIR%%/html/_static/tabs.css
119
%%PORTDOCS%%%%DOCSDIR%%/html/_static/tabs.js
120
%%PORTDOCS%%%%DOCSDIR%%/html/_static/theme-vendors.js
121
%%PORTDOCS%%%%DOCSDIR%%/html/_static/theme.css
122
%%PORTDOCS%%%%DOCSDIR%%/html/_static/theme.js
123
%%PORTDOCS%%%%DOCSDIR%%/html/_static/underscore-1.12.0.js
124
%%PORTDOCS%%%%DOCSDIR%%/html/_static/underscore.js
125
%%PORTDOCS%%%%DOCSDIR%%/html/api/_index.html
126
%%PORTDOCS%%%%DOCSDIR%%/html/api/apphelpers.html
127
%%PORTDOCS%%%%DOCSDIR%%/html/api/baker.html
128
%%PORTDOCS%%%%DOCSDIR%%/html/api/colorspace.html
129
%%PORTDOCS%%%%DOCSDIR%%/html/api/config.html
130
%%PORTDOCS%%%%DOCSDIR%%/html/api/constants.html
131
%%PORTDOCS%%%%DOCSDIR%%/html/api/context.html
132
%%PORTDOCS%%%%DOCSDIR%%/html/api/dynamicproperty.html
133
%%PORTDOCS%%%%DOCSDIR%%/html/api/enums.html
134
%%PORTDOCS%%%%DOCSDIR%%/html/api/exceptions.html
135
%%PORTDOCS%%%%DOCSDIR%%/html/api/formatmetadata.html
136
%%PORTDOCS%%%%DOCSDIR%%/html/api/global.html
137
%%PORTDOCS%%%%DOCSDIR%%/html/api/grading_transforms.html
138
%%PORTDOCS%%%%DOCSDIR%%/html/api/imagedesc.html
139
%%PORTDOCS%%%%DOCSDIR%%/html/api/look.html
140
%%PORTDOCS%%%%DOCSDIR%%/html/api/namedtransform.html
141
%%PORTDOCS%%%%DOCSDIR%%/html/api/processors.html
142
%%PORTDOCS%%%%DOCSDIR%%/html/api/rules.html
143
%%PORTDOCS%%%%DOCSDIR%%/html/api/shaders.html
144
%%PORTDOCS%%%%DOCSDIR%%/html/api/systemmonitors.html
145
%%PORTDOCS%%%%DOCSDIR%%/html/api/transforms.html
146
%%PORTDOCS%%%%DOCSDIR%%/html/api/viewtransform.html
147
%%PORTDOCS%%%%DOCSDIR%%/html/aswf/_index.html
148
%%PORTDOCS%%%%DOCSDIR%%/html/aswf/aswf_docker.html
149
%%PORTDOCS%%%%DOCSDIR%%/html/aswf/charter.html
150
%%PORTDOCS%%%%DOCSDIR%%/html/aswf/cla_dco.html
151
%%PORTDOCS%%%%DOCSDIR%%/html/aswf/license.html
152
%%PORTDOCS%%%%DOCSDIR%%/html/concepts/_index.html
153
%%PORTDOCS%%%%DOCSDIR%%/html/concepts/overview/configuration_files.html
154
%%PORTDOCS%%%%DOCSDIR%%/html/concepts/overview/glossary.html
155
%%PORTDOCS%%%%DOCSDIR%%/html/concepts/overview/internal_architecture.html
156
%%PORTDOCS%%%%DOCSDIR%%/html/concepts/overview/introduction.html
157
%%PORTDOCS%%%%DOCSDIR%%/html/concepts/overview/overview.html
158
%%PORTDOCS%%%%DOCSDIR%%/html/concepts/publications/publications.html
159
%%PORTDOCS%%%%DOCSDIR%%/html/configurations/_index.html
160
%%PORTDOCS%%%%DOCSDIR%%/html/configurations/aces_1.0.3.html
161
%%PORTDOCS%%%%DOCSDIR%%/html/configurations/nuke_default.html
162
%%PORTDOCS%%%%DOCSDIR%%/html/configurations/ocio_v2_demo.html
163
%%PORTDOCS%%%%DOCSDIR%%/html/configurations/spi_anim.html
164
%%PORTDOCS%%%%DOCSDIR%%/html/configurations/spi_vfx.html
165
%%PORTDOCS%%%%DOCSDIR%%/html/genindex.html
166
%%PORTDOCS%%%%DOCSDIR%%/html/guides/_index.html
167
%%PORTDOCS%%%%DOCSDIR%%/html/guides/authoring/allocation_vars.html
168
%%PORTDOCS%%%%DOCSDIR%%/html/guides/authoring/authoring.html
169
%%PORTDOCS%%%%DOCSDIR%%/html/guides/authoring/colorspaces.html
170
%%PORTDOCS%%%%DOCSDIR%%/html/guides/authoring/contexts.html
171
%%PORTDOCS%%%%DOCSDIR%%/html/guides/authoring/displays_views.html
172
%%PORTDOCS%%%%DOCSDIR%%/html/guides/authoring/looks.html
173
%%PORTDOCS%%%%DOCSDIR%%/html/guides/authoring/looks_example.html
174
%%PORTDOCS%%%%DOCSDIR%%/html/guides/authoring/overview.html
175
%%PORTDOCS%%%%DOCSDIR%%/html/guides/authoring/rules.html
176
%%PORTDOCS%%%%DOCSDIR%%/html/guides/authoring/transforms.html
177
%%PORTDOCS%%%%DOCSDIR%%/html/guides/contributing/architectural_notes.html
178
%%PORTDOCS%%%%DOCSDIR%%/html/guides/contributing/coding_style_guide.html
179
%%PORTDOCS%%%%DOCSDIR%%/html/guides/contributing/contributing.html
180
%%PORTDOCS%%%%DOCSDIR%%/html/guides/contributing/documentation_guidelines.html
181
%%PORTDOCS%%%%DOCSDIR%%/html/guides/contributing/doxygen_style_guide.html
182
%%PORTDOCS%%%%DOCSDIR%%/html/guides/contributing/getting_started.html
183
%%PORTDOCS%%%%DOCSDIR%%/html/guides/contributing/issues.html
184
%%PORTDOCS%%%%DOCSDIR%%/html/guides/contributing/repository_structure.html
185
%%PORTDOCS%%%%DOCSDIR%%/html/guides/contributing/submitting_changes.html
186
%%PORTDOCS%%%%DOCSDIR%%/html/guides/contributing/unit_tests.html
187
%%PORTDOCS%%%%DOCSDIR%%/html/guides/developing/app_helpers.html
188
%%PORTDOCS%%%%DOCSDIR%%/html/guides/developing/developing.html
189
%%PORTDOCS%%%%DOCSDIR%%/html/guides/developing/usage_examples.html
190
%%PORTDOCS%%%%DOCSDIR%%/html/guides/using_ocio/compatible_software.html
191
%%PORTDOCS%%%%DOCSDIR%%/html/guides/using_ocio/faq.html
192
%%PORTDOCS%%%%DOCSDIR%%/html/guides/using_ocio/tool_overview.html
193
%%PORTDOCS%%%%DOCSDIR%%/html/guides/using_ocio/using_ocio.html
194
%%PORTDOCS%%%%DOCSDIR%%/html/index.html
195
%%PORTDOCS%%%%DOCSDIR%%/html/objects.inv
196
%%PORTDOCS%%%%DOCSDIR%%/html/quick_start/_index.html
197
%%PORTDOCS%%%%DOCSDIR%%/html/quick_start/downloads.html
198
%%PORTDOCS%%%%DOCSDIR%%/html/quick_start/for_artists.html
199
%%PORTDOCS%%%%DOCSDIR%%/html/quick_start/for_config_authors.html
200
%%PORTDOCS%%%%DOCSDIR%%/html/quick_start/for_contributors.html
201
%%PORTDOCS%%%%DOCSDIR%%/html/quick_start/for_devs.html
202
%%PORTDOCS%%%%DOCSDIR%%/html/quick_start/installation.html
203
%%PORTDOCS%%%%DOCSDIR%%/html/requirements.html
204
%%PORTDOCS%%%%DOCSDIR%%/html/search.html
205
%%PORTDOCS%%%%DOCSDIR%%/html/searchindex.js
206
%%PORTDOCS%%%%DOCSDIR%%/html/toc_redirect.html
207
%%PORTDOCS%%%%DOCSDIR%%/html/tutorials/_index.html
208
%%PORTDOCS%%%%DOCSDIR%%/html/tutorials/baking_luts.html
209
%%PORTDOCS%%%%DOCSDIR%%/html/tutorials/contributing.html
210
%%PORTDOCS%%%%DOCSDIR%%/html/upgrading_v2/_index.html
211
%%PORTDOCS%%%%DOCSDIR%%/html/upgrading_v2/how_to.html
(-)graphics/opencolorio/pkg-plist-tools (+4 lines)
Lines 3-5 Link Here
3
bin/ocioconvert
3
bin/ocioconvert
4
bin/ociodisplay
4
bin/ociodisplay
5
bin/ociolutimage
5
bin/ociolutimage
6
bin/ociochecklut
7
bin/ociomakeclf
8
bin/ocioperf
9
bin/ociowrite

Return to bug 253491