View | Details | Raw Unified | Return to bug 202442
Collapse All | Expand All

(-)openimageio/Makefile (-2 / +2 lines)
Lines 2-8 Link Here
2
# $FreeBSD$
2
# $FreeBSD$
3
3
4
PORTNAME=	openimageio
4
PORTNAME=	openimageio
5
PORTVERSION=	1.5.16
5
PORTVERSION=	1.5.18
6
DISTVERSIONPREFIX=	Release-
6
DISTVERSIONPREFIX=	Release-
7
PORTREVISION?=	0
7
PORTREVISION?=	0
8
CATEGORIES?=	graphics multimedia
8
CATEGORIES?=	graphics multimedia
Lines 66-72 Link Here
66
LIB_DEPENDS+=	libIlmImf.so:${PORTSDIR}/graphics/OpenEXR \
66
LIB_DEPENDS+=	libIlmImf.so:${PORTSDIR}/graphics/OpenEXR \
67
		libboost_thread.so:${PORTSDIR}/devel/boost-libs \
67
		libboost_thread.so:${PORTSDIR}/devel/boost-libs \
68
		libhdf5.so:${PORTSDIR}/science/hdf5 \
68
		libhdf5.so:${PORTSDIR}/science/hdf5 \
69
		libopencv_legacy.so:${PORTSDIR}/graphics/opencv \
69
		libopencv_highgui.so:${PORTSDIR}/graphics/opencv \
70
		libopenjpeg.so:${PORTSDIR}/graphics/openjpeg15 \
70
		libopenjpeg.so:${PORTSDIR}/graphics/openjpeg15 \
71
		libwebp.so:${PORTSDIR}/graphics/webp
71
		libwebp.so:${PORTSDIR}/graphics/webp
72
USE_LDCONFIG=	yes
72
USE_LDCONFIG=	yes
(-)openimageio/distinfo (-2 / +2 lines)
Lines 1-2 Link Here
1
SHA256 (OpenImageIO-oiio-Release-1.5.16_GH0.tar.gz) = 6c676ae5ddc3b2a8f8d37b521c670d8b3f82d1af583801027d44cf61e1550d6b
1
SHA256 (OpenImageIO-oiio-Release-1.5.18_GH0.tar.gz) = 5e22fb0fbc46f72dd8904282cf43ae5501415f11b0043c61660dd99ac267c756
2
SIZE (OpenImageIO-oiio-Release-1.5.16_GH0.tar.gz) = 23136543
2
SIZE (OpenImageIO-oiio-Release-1.5.18_GH0.tar.gz) = 20721348
(-)openimageio/files/patch-src_include_OpenImageIO_simd.h (-15 lines)
Lines 1-15 Link Here
1
--- src/include/OpenImageIO/simd.h.orig	2015-06-23 11:59:51 UTC
2
+++ src/include/OpenImageIO/simd.h
3
@@ -52,8 +52,10 @@ OF THIS SOFTWARE, EVEN IF ADVISED OF THE
4
 #if (defined(__SSE2__) || (_MSC_VER >= 1300 && !_M_CEE_PURE)) && !defined(OIIO_NO_SSE)
5
 #  include <xmmintrin.h>
6
 #  include <emmintrin.h>
7
-#  if defined(__SSE3__) || defined(__SSSE3__)
8
+#  if defined(__SSE3__)
9
 #    include <pmmintrin.h>
10
+#  endif
11
+#  if defined(__SSSE3__)
12
 #    include <tmmintrin.h>
13
 #  endif
14
 #  if (defined(__SSE4_1__) || defined(__SSE4_2__))
15

Return to bug 202442