summaryrefslogtreecommitdiff
path: root/graphics/ilmbase
diff options
context:
space:
mode:
authoradam <adam>2013-12-09 11:39:20 +0000
committeradam <adam>2013-12-09 11:39:20 +0000
commit6653b6d25cfb006c489af46f0b9b172c1aae969a (patch)
tree9c29592dd2b632a486768510334ebe14d0f60448 /graphics/ilmbase
parent81550b5f5406025bf3820b4855b9293b7762f972 (diff)
downloadpkgsrc-6653b6d25cfb006c489af46f0b9b172c1aae969a.tar.gz
Changes 2.1.0:
This release includes a refactoring of the optimised read paths for RGBA data, optimisations for some of the python bindings to Imath, improvements to the cmake build environment as well as additional documentation describing deep data in more detail.
Diffstat (limited to 'graphics/ilmbase')
-rw-r--r--graphics/ilmbase/Makefile5
-rw-r--r--graphics/ilmbase/PLIST3
-rw-r--r--graphics/ilmbase/distinfo10
-rw-r--r--graphics/ilmbase/patches/patch-aa15
4 files changed, 16 insertions, 17 deletions
diff --git a/graphics/ilmbase/Makefile b/graphics/ilmbase/Makefile
index b0c4cfdd752..e72edb160da 100644
--- a/graphics/ilmbase/Makefile
+++ b/graphics/ilmbase/Makefile
@@ -1,7 +1,6 @@
-# $NetBSD: Makefile,v 1.13 2013/12/02 23:39:09 bsiegert Exp $
+# $NetBSD: Makefile,v 1.14 2013/12/09 11:39:20 adam Exp $
-DISTNAME= ilmbase-2.0.1
-PKGREVISION= 1
+DISTNAME= ilmbase-2.1.0
CATEGORIES= graphics
MASTER_SITES= http://download.savannah.nongnu.org/releases/openexr/
diff --git a/graphics/ilmbase/PLIST b/graphics/ilmbase/PLIST
index a2f2edb53b2..f30b188f345 100644
--- a/graphics/ilmbase/PLIST
+++ b/graphics/ilmbase/PLIST
@@ -1,4 +1,4 @@
-@comment $NetBSD: PLIST,v 1.3 2013/05/08 17:48:33 adam Exp $
+@comment $NetBSD: PLIST,v 1.4 2013/12/09 11:39:20 adam Exp $
include/OpenEXR/Iex.h
include/OpenEXR/IexBaseExc.h
include/OpenEXR/IexErrnoExc.h
@@ -29,6 +29,7 @@ include/OpenEXR/ImathExport.h
include/OpenEXR/ImathForward.h
include/OpenEXR/ImathFrame.h
include/OpenEXR/ImathFrustum.h
+include/OpenEXR/ImathFrustumTest.h
include/OpenEXR/ImathFun.h
include/OpenEXR/ImathGL.h
include/OpenEXR/ImathGLU.h
diff --git a/graphics/ilmbase/distinfo b/graphics/ilmbase/distinfo
index 5b2cae74d93..d2255b1ebdb 100644
--- a/graphics/ilmbase/distinfo
+++ b/graphics/ilmbase/distinfo
@@ -1,9 +1,9 @@
-$NetBSD: distinfo,v 1.9 2013/12/02 23:39:09 bsiegert Exp $
+$NetBSD: distinfo,v 1.10 2013/12/09 11:39:20 adam Exp $
-SHA1 (ilmbase-2.0.1.tar.gz) = bfa62519094413f686c6f08c5923b47a10eea180
-RMD160 (ilmbase-2.0.1.tar.gz) = a17bce323d3025ddb971c254bef31a7c230b4b20
-Size (ilmbase-2.0.1.tar.gz) = 555828 bytes
+SHA1 (ilmbase-2.1.0.tar.gz) = 306d76e7a2ac619c2f641f54b59dd95576525192
+RMD160 (ilmbase-2.1.0.tar.gz) = a5f44efcbd2994973ee1c2baa32c357c1ea257da
+Size (ilmbase-2.1.0.tar.gz) = 557552 bytes
SHA1 (patch-Iex_IexThrowErrnoExc.cpp) = 1a4206619320a2a95378b7c2db14fde20b0ffd71
SHA1 (patch-Imath_ImathFun.h) = 79ab60ada8cecd52e5b16fadbded82492d79a1df
-SHA1 (patch-aa) = 7498a0cfafaec4f1e43dd57270f514bc5a8e7b1f
+SHA1 (patch-aa) = 97e7c7347cc6b4f3e11e7d0692c78b7322e06a7f
SHA1 (patch-ab) = 1e39351d9513e10e3745c188612f9daf41253234
diff --git a/graphics/ilmbase/patches/patch-aa b/graphics/ilmbase/patches/patch-aa
index e2a3795d858..39bc862ca34 100644
--- a/graphics/ilmbase/patches/patch-aa
+++ b/graphics/ilmbase/patches/patch-aa
@@ -1,16 +1,15 @@
-$NetBSD: patch-aa,v 1.2 2008/02/03 03:37:32 heinz Exp $
+$NetBSD: patch-aa,v 1.3 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 2006-12-13 22:26:18.000000000 +0000
+--- bootstrap.orig 2013-11-12 17:26:32.000000000 +0000
+++ bootstrap
@@ -1,7 +1,7 @@
#! /bin/sh
- # If we're on OS X, use glibtoolize instead of toolize
+ # If we're on OS X, use glibtoolize instead of toolize when available
HOSTTYPE=`uname`
--if [ "$HOSTTYPE" == "Darwin" ]; then
-+if [ "$HOSTTYPE" = "Darwin" ]; then
+-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
+ LIBTOOLIZE=libtoolize