summaryrefslogtreecommitdiff
path: root/graphics/openimageio/Makefile
diff options
context:
space:
mode:
authorryoon <ryoon>2013-02-10 23:22:36 +0000
committerryoon <ryoon>2013-02-10 23:22:36 +0000
commita21b63833f3b6e32d8d1ec4c158a88c621f2bbb2 (patch)
tree2cd1a07e145c3d7eddb8c400543a26955a70a728 /graphics/openimageio/Makefile
parentc1816e2d0a7d88ef8f6b4d8b90222a5985ce9f81 (diff)
downloadpkgsrc-a21b63833f3b6e32d8d1ec4c158a88c621f2bbb2.tar.gz
Update to 1.1.5
* Fix distname Changelog: Release 1.1.5 (29 Jan 2013) --------------------------- * Bug fix in ImageBufAlgo::parallel_image utility template -- care when not enough work chunks to dole out to all the threads (was previously sending work to threads with nonsensical ROI's, now we just stop when all the regions have been doled out). * Additional optional argument to IBA::zover that, when nonzero, will treat z=0 pixels as infinitely far away, not super close. You can turn this on from oiiotool with: oiiotool --zover:zeroisinf=1 ... Release 1.1.4 (27 Jan 2013) --------------------------- * ImageBufAlgo::make_texture() allows you to do the same thing that maketx does, but from inside an application and without launching a shell invocation of maketx. * oiiotool now recognizes --metamatch and --nometamatch arguments which cause metadata names matching (or only info NOT matching) the given regular expression to be printed with --info. * oiiotool --zover does z (depth) composites (it's like a regular "over", but uses the z depth at each pixel to determine which of the two images is the foreground and which is the background). * ImageBufAlgo::zover() performs z compositing (same as oiiotool --zover). * ImageBufAlgo::fixNonFinite didn't work properly with 'half' image buffers. * Performance improvements when reading and writing images. * Fix error when writing tiled 'float' TIFF images, corrupted output. (Could easily happen when using 'maketx' to convert float images into TIFF textures.) * Eliminate warnings when compiling with Clang 3.2. * New CMake variable "USE_EXTERNAL_TBB" can optionally be set to force use of an external TBB library rather than the embedded one. * Additional testsuite tests (doesn't affect users, but makes bugs easier to catch). * Fix build problem with SHA1.cpp on some platforms. Release 1.1.3 (9 Jan 2013) --------------------------- * Build fix: incorrectly named OpenEXR 2.x files. * Bug fix in oiiotool --croptofull on OSX * Build fixes for MinGW on Windows. * maketx --fullpixels option ignores any origin or display window in the source image, pretending the pixel data is the entire 0-1 image range starting at the origin (useful when the source image is created by an application that incorrectly writes it out as if it were a crop window). * maketx no longer will clobber existing ImageDescription metadata when it adds SHA-1 hash or other info as it creates the texture. * Many additional Exif and IPTC tags are correctly recognized. * maketx and oiiotool recognize and take advantage of IPTC:ImageHistory metadata.
Diffstat (limited to 'graphics/openimageio/Makefile')
-rw-r--r--graphics/openimageio/Makefile9
1 files changed, 4 insertions, 5 deletions
diff --git a/graphics/openimageio/Makefile b/graphics/openimageio/Makefile
index 92b283d1de8..28d93827bfb 100644
--- a/graphics/openimageio/Makefile
+++ b/graphics/openimageio/Makefile
@@ -1,10 +1,9 @@
-# $NetBSD: Makefile,v 1.4 2013/02/06 23:21:09 jperkin Exp $
+# $NetBSD: Makefile,v 1.5 2013/02/10 23:22:36 ryoon Exp $
-DISTNAME= Release-1.1.2
+DISTNAME= oiio-Release-1.1.5
PKGNAME= ${DISTNAME:S/Release/openimageio/}
-PKGREVISION= 2
CATEGORIES= graphics
-MASTER_SITES= https://github.com/OpenImageIO/oiio/archive/
+MASTER_SITES= -https://github.com/OpenImageIO/oiio/archive/Release-1.1.5.tar.gz
FETCH_USING= curl
MAINTAINER= ryoon@NetBSD.org
@@ -12,7 +11,7 @@ HOMEPAGE= https://sites.google.com/site/openimageio/
COMMENT= OpenImageIO is a library for reading and writing images
LICENSE= modified-bsd
-WRKSRC= ${WRKDIR}/oiio-${DISTNAME}/src
+WRKSRC= ${WRKDIR}/${DISTNAME}/src
USE_CMAKE= yes
USE_LANGUAGES= c c++