summaryrefslogtreecommitdiff
path: root/graphics/openexr
diff options
context:
space:
mode:
Diffstat (limited to 'graphics/openexr')
-rw-r--r--graphics/openexr/Makefile4
-rw-r--r--graphics/openexr/PLIST6
-rw-r--r--graphics/openexr/distinfo10
-rw-r--r--graphics/openexr/patches/patch-ab23
4 files changed, 23 insertions, 20 deletions
diff --git a/graphics/openexr/Makefile b/graphics/openexr/Makefile
index 4c60469b05e..b6df215e7fa 100644
--- a/graphics/openexr/Makefile
+++ b/graphics/openexr/Makefile
@@ -1,6 +1,6 @@
-# $NetBSD: Makefile,v 1.29 2013/07/31 18:26:07 adam Exp $
+# $NetBSD: Makefile,v 1.30 2013/12/09 11:39:20 adam Exp $
-DISTNAME= openexr-2.0.1
+DISTNAME= openexr-2.1.0
CATEGORIES= graphics
MASTER_SITES= http://download.savannah.nongnu.org/releases/openexr/
diff --git a/graphics/openexr/PLIST b/graphics/openexr/PLIST
index 0b583a211b7..f5d7ba01bb9 100644
--- a/graphics/openexr/PLIST
+++ b/graphics/openexr/PLIST
@@ -1,4 +1,4 @@
-@comment $NetBSD: PLIST,v 1.9 2013/07/31 18:26:07 adam Exp $
+@comment $NetBSD: PLIST,v 1.10 2013/12/09 11:39:20 adam Exp $
bin/exrenvmap
bin/exrheader
bin/exrmakepreview
@@ -22,6 +22,8 @@ include/OpenEXR/ImfCompressionAttribute.h
include/OpenEXR/ImfConvert.h
include/OpenEXR/ImfDeepCompositing.h
include/OpenEXR/ImfDeepFrameBuffer.h
+include/OpenEXR/ImfDeepImageState.h
+include/OpenEXR/ImfDeepImageStateAttribute.h
include/OpenEXR/ImfDeepScanLineInputFile.h
include/OpenEXR/ImfDeepScanLineInputPart.h
include/OpenEXR/ImfDeepScanLineOutputFile.h
@@ -97,7 +99,9 @@ share/aclocal/openexr.m4
share/doc/OpenEXR-${PKGVERSION}/MultiViewOpenEXR.pdf
share/doc/OpenEXR-${PKGVERSION}/OpenEXRFileLayout.pdf
share/doc/OpenEXR-${PKGVERSION}/ReadingAndWritingImageFiles.pdf
+share/doc/OpenEXR-${PKGVERSION}/InterpretingDeepPixels.pdf
share/doc/OpenEXR-${PKGVERSION}/TechnicalIntroduction.pdf
+share/doc/OpenEXR-${PKGVERSION}/TheoryDeepPixels.pdf
share/doc/OpenEXR-${PKGVERSION}/examples/drawImage.cpp
share/doc/OpenEXR-${PKGVERSION}/examples/drawImage.h
share/doc/OpenEXR-${PKGVERSION}/examples/generalInterfaceExamples.cpp
diff --git a/graphics/openexr/distinfo b/graphics/openexr/distinfo
index 33f031ca596..2b6eb54062b 100644
--- a/graphics/openexr/distinfo
+++ b/graphics/openexr/distinfo
@@ -1,8 +1,8 @@
-$NetBSD: distinfo,v 1.21 2013/07/31 18:26:07 adam Exp $
+$NetBSD: distinfo,v 1.22 2013/12/09 11:39:20 adam Exp $
-SHA1 (openexr-2.0.1.tar.gz) = 22589e11d090a01b5c3117e7e0b7bbb8301184b6
-RMD160 (openexr-2.0.1.tar.gz) = e0c13393574c18beb449e01b2f54d353fb94eb24
-Size (openexr-2.0.1.tar.gz) = 12609335 bytes
+SHA1 (openexr-2.1.0.tar.gz) = 4a3db5ea527856145844556e0ee349f45ed4cbc7
+RMD160 (openexr-2.1.0.tar.gz) = b0e1da47e8691d514db02f07f7c085a21a148755
+Size (openexr-2.1.0.tar.gz) = 13680816 bytes
SHA1 (patch-IlmImf_ImfSystemSpecific.h) = f36d049085e42beabcf5f7af5354009391a1f9f2
SHA1 (patch-aa) = 14b3472ec55a2c35aaa31b832414ee8677c58220
-SHA1 (patch-ab) = df9a5ceea5702c08265ea884813c965122241802
+SHA1 (patch-ab) = 0efe7155350e1976d1d7bad9da8b1a037fd84572
diff --git a/graphics/openexr/patches/patch-ab b/graphics/openexr/patches/patch-ab
index 4d06260cc35..719ef01acd9 100644
--- a/graphics/openexr/patches/patch-ab
+++ b/graphics/openexr/patches/patch-ab
@@ -1,16 +1,15 @@
-$NetBSD: patch-ab,v 1.3 2013/05/08 17:49:11 adam Exp $
+$NetBSD: patch-ab,v 1.4 2013/12/09 11:39:20 adam Exp $
-Shell portability fix: see
-https://savannah.nongnu.org/bugs/index.php?22222
+Shell portability fix: see https://savannah.nongnu.org/bugs/index.php?22222
---- bootstrap.orig 2013-04-09 17:07:52.000000000 +0000
+--- bootstrap.orig 2013-11-25 19:53:00.000000000 +0000
+++ bootstrap
-@@ -2,7 +2,7 @@
- # If we're on OS X, use glibtoolize instead of toolize
+@@ -1,7 +1,7 @@
+ #! /bin/sh
+ # If we're on OS X, use glibtoolize instead of toolize when available
HOSTTYPE=`uname`
- LIBTOOLIZE=libtoolize
--if [ "$HOSTTYPE" == "Darwin" ]; then
-+if [ "$HOSTTYPE" = "Darwin" ]; then
- GLIBTOOLIZE=`which glibtoolize`
- if [ "x$GLIBTOOLIZE" != "x" ]; then
- LIBTOOLIZE=glibtoolize
+-if [ "$HOSTTYPE" == "Darwin" ] && $(which glibtoolize > /dev/null 2>&1) ; then
++if [ "$HOSTTYPE" = "Darwin" ] && $(which glibtoolize > /dev/null 2>&1) ; then
+ LIBTOOLIZE=glibtoolize
+ else
+ LIBTOOLIZE=libtoolize