Wed Jun 20 21:07:15 2012 UTC ()
Update to 4.0.2 for CVE-2012-2113.

     * tif_getimage.c: added support for _SEPARATED CMYK images.
     * tif_getimage.c: Added support for greyscale + alpha.
     * Added TIFFCreateCustomDirectory() and TIFFCreateEXIFDirectory()
       functions.
     * tif_print.c: Lots of fixes around printing corrupt or hostile input.
     * Improve handling of corrupt ycbcrsubsampling values.
     * tif_unix.c: use strerror to get meaningful error messages.
     * tif_jpeg.c: fix serious bugs in JPEGDecodeRaw().
     * tif_jpeg.c: Fix size overflow (zdi-can-1221,CVE-2012-1173).


(wiz)
diff -r1.104 -r1.105 pkgsrc/graphics/tiff/Makefile
diff -r1.15 -r1.16 pkgsrc/graphics/tiff/PLIST
diff -r1.55 -r1.56 pkgsrc/graphics/tiff/distinfo
diff -r1.1 -r0 pkgsrc/graphics/tiff/patches/patch-libtiff_tif__getimage.c
diff -r1.1 -r0 pkgsrc/graphics/tiff/patches/patch-libtiff_tiffiop.h

cvs diff -r1.104 -r1.105 pkgsrc/graphics/tiff/Makefile (expand / switch to unified diff)

--- pkgsrc/graphics/tiff/Makefile 2012/04/10 14:13:04 1.104
+++ pkgsrc/graphics/tiff/Makefile 2012/06/20 21:07:14 1.105
@@ -1,17 +1,16 @@ @@ -1,17 +1,16 @@
1# $NetBSD: Makefile,v 1.104 2012/04/10 14:13:04 taca Exp $ 1# $NetBSD: Makefile,v 1.105 2012/06/20 21:07:14 wiz Exp $
2 2
3DISTNAME= tiff-4.0.1 3DISTNAME= tiff-4.0.2
4PKGREVISION= 1 
5CATEGORIES= graphics 4CATEGORIES= graphics
6MASTER_SITES= ftp://ftp.remotesensing.org/pub/libtiff/ \ 5MASTER_SITES= ftp://ftp.remotesensing.org/pub/libtiff/ \
7 http://libtiff.maptools.org/dl/ 6 http://libtiff.maptools.org/dl/
8 7
9MAINTAINER= pkgsrc-users@NetBSD.org 8MAINTAINER= pkgsrc-users@NetBSD.org
10HOMEPAGE= http://www.remotesensing.org/libtiff/ 9HOMEPAGE= http://www.remotesensing.org/libtiff/
11COMMENT= Library and tools for reading and writing TIFF data files 10COMMENT= Library and tools for reading and writing TIFF data files
12 11
13EXTRACT_ONLY= ${DISTNAME}${EXTRACT_SUFX} 12EXTRACT_ONLY= ${DISTNAME}${EXTRACT_SUFX}
14 13
15PKG_INSTALLATION_TYPES= overwrite pkgviews 14PKG_INSTALLATION_TYPES= overwrite pkgviews
16PKG_DESTDIR_SUPPORT= user-destdir 15PKG_DESTDIR_SUPPORT= user-destdir
17 16

cvs diff -r1.15 -r1.16 pkgsrc/graphics/tiff/PLIST (expand / switch to unified diff)

--- pkgsrc/graphics/tiff/PLIST 2012/02/21 13:03:00 1.15
+++ pkgsrc/graphics/tiff/PLIST 2012/06/20 21:07:14 1.16
@@ -1,14 +1,14 @@ @@ -1,14 +1,14 @@
1@comment $NetBSD: PLIST,v 1.15 2012/02/21 13:03:00 drochner Exp $ 1@comment $NetBSD: PLIST,v 1.16 2012/06/20 21:07:14 wiz Exp $
2bin/bmp2tiff 2bin/bmp2tiff
3bin/fax2ps 3bin/fax2ps
4bin/fax2tiff 4bin/fax2tiff
5bin/gif2tiff 5bin/gif2tiff
6bin/pal2rgb 6bin/pal2rgb
7bin/ppm2tiff 7bin/ppm2tiff
8bin/ras2tiff 8bin/ras2tiff
9bin/raw2tiff 9bin/raw2tiff
10bin/rgb2ycbcr 10bin/rgb2ycbcr
11bin/thumbnail 11bin/thumbnail
12bin/tiff2bw 12bin/tiff2bw
13bin/tiff2pdf 13bin/tiff2pdf
14bin/tiff2ps 14bin/tiff2ps
@@ -221,13 +221,15 @@ share/doc/tiff/html/v3.7.0alpha.html @@ -221,13 +221,15 @@ share/doc/tiff/html/v3.7.0alpha.html
221share/doc/tiff/html/v3.7.0beta.html 221share/doc/tiff/html/v3.7.0beta.html
222share/doc/tiff/html/v3.7.0beta2.html 222share/doc/tiff/html/v3.7.0beta2.html
223share/doc/tiff/html/v3.7.1.html 223share/doc/tiff/html/v3.7.1.html
224share/doc/tiff/html/v3.7.2.html 224share/doc/tiff/html/v3.7.2.html
225share/doc/tiff/html/v3.7.3.html 225share/doc/tiff/html/v3.7.3.html
226share/doc/tiff/html/v3.7.4.html 226share/doc/tiff/html/v3.7.4.html
227share/doc/tiff/html/v3.8.0.html 227share/doc/tiff/html/v3.8.0.html
228share/doc/tiff/html/v3.8.1.html 228share/doc/tiff/html/v3.8.1.html
229share/doc/tiff/html/v3.8.2.html 229share/doc/tiff/html/v3.8.2.html
230share/doc/tiff/html/v3.9.0beta.html 230share/doc/tiff/html/v3.9.0beta.html
231share/doc/tiff/html/v3.9.1.html 231share/doc/tiff/html/v3.9.1.html
232share/doc/tiff/html/v3.9.2.html 232share/doc/tiff/html/v3.9.2.html
233share/doc/tiff/html/v4.0.0.html 233share/doc/tiff/html/v4.0.0.html
 234share/doc/tiff/html/v4.0.1.html
 235share/doc/tiff/html/v${PKGVERSION}.html

cvs diff -r1.55 -r1.56 pkgsrc/graphics/tiff/distinfo (expand / switch to unified diff)

--- pkgsrc/graphics/tiff/distinfo 2012/04/10 14:13:04 1.55
+++ pkgsrc/graphics/tiff/distinfo 2012/06/20 21:07:14 1.56
@@ -1,8 +1,6 @@ @@ -1,8 +1,6 @@
1$NetBSD: distinfo,v 1.55 2012/04/10 14:13:04 taca Exp $ 1$NetBSD: distinfo,v 1.56 2012/06/20 21:07:14 wiz Exp $
2 2
3SHA1 (tiff-4.0.1.tar.gz) = 8baf382231c9051a1b3eb294581289aa21447171 3SHA1 (tiff-4.0.2.tar.gz) = d84b7b33a6cfb3d15ca386c8c16b05047f8b5352
4RMD160 (tiff-4.0.1.tar.gz) = abf98ab277edaee302b432dbcecfe68061dd91dc 4RMD160 (tiff-4.0.2.tar.gz) = 520c5a6d17d1b0c3957e3889b66eadce0accf53f
5Size (tiff-4.0.1.tar.gz) = 1991580 bytes 5Size (tiff-4.0.2.tar.gz) = 2022814 bytes
6SHA1 (patch-configure) = 0e86c6d69783333c03d6241e1824f68602f3c732 6SHA1 (patch-configure) = 0e86c6d69783333c03d6241e1824f68602f3c732
7SHA1 (patch-libtiff_tif__getimage.c) = fc1f63b669fb8871935d4bf12e09dc1c78150f91 
8SHA1 (patch-libtiff_tiffiop.h) = 8729e474106a0edce4284004f6f6d95b97c4a544 

File Deleted: pkgsrc/graphics/tiff/patches/Attic/patch-libtiff_tif__getimage.c

File Deleted: pkgsrc/graphics/tiff/patches/Attic/patch-libtiff_tiffiop.h