Sun Mar 2 09:48:42 2008 UTC ()
Update to 8.82, provided by Bernd Limbach in PR 38130:

revision 1.398
date: 2008/02/06 21:29:13;  author: dcoffin;  state: Exp;  lines: +61 -36
Added the "-P" and "-S" options.
Support the Sony DSLR-A200 and the PowerShots A720 and S5 IS.
----------------------------
revision 1.397
date: 2007/12/10 07:43:31;  author: dcoffin;  state: Exp;  lines: +56 -6
Support the Panasonic DMC-L10, added the "-W" option.
----------------------------
revision 1.396
date: 2007/11/16 15:24:52;  author: dcoffin;  state: Exp;  lines: +3 -0
Cropped four columns from the Nikon D3.
----------------------------
revision 1.395
date: 2007/11/12 20:28:32;  author: dcoffin;  state: Exp;  lines: +34 -26
Abolished the getrat() macro, support the Hasselblad H3D.
----------------------------
revision 1.394
date: 2007/11/04 02:18:54;  author: dcoffin;  state: Exp;  lines: +12 -6
Added the Olympus E-3 and adjusted a few maximums.
----------------------------
revision 1.393
date: 2007/10/30 06:23:29;  author: dcoffin;  state: Exp;  lines: +333 -88
Support the AVT F-080C, Canon EOS 40D, Canon EOS-1Ds Mark III,
Canon PowerShot G9, Nikon Coolpix S6, Nikon D3, Nikon D300,
Panasonic DMC-FZ18, and Sony DSLR-A700.
Support the new Canon sRAW CR2 format.
Added median filtering after interpolation.


(wiz)
diff -r1.1.1.1 -r1.2 pkgsrc/graphics/dcraw/DESCR
diff -r1.28 -r1.29 pkgsrc/graphics/dcraw/Makefile
diff -r1.22 -r1.23 pkgsrc/graphics/dcraw/distinfo
diff -r1.3 -r1.4 pkgsrc/graphics/dcraw/patches/patch-aa

cvs diff -r1.1.1.1 -r1.2 pkgsrc/graphics/dcraw/DESCR (expand / switch to unified diff)

--- pkgsrc/graphics/dcraw/DESCR 2004/02/20 13:43:29 1.1.1.1
+++ pkgsrc/graphics/dcraw/DESCR 2008/03/02 09:48:42 1.2
@@ -1,2 +1,2 @@ @@ -1,2 +1,2 @@
1This is a program to convert raw image files from any digital camera 1This is a command-line ANSI C program to convert raw photos from
2into PPM format. 2any digital camera on any computer running any operating system.

cvs diff -r1.28 -r1.29 pkgsrc/graphics/dcraw/Makefile (expand / switch to unified diff)

--- pkgsrc/graphics/dcraw/Makefile 2007/09/16 13:32:48 1.28
+++ pkgsrc/graphics/dcraw/Makefile 2008/03/02 09:48:42 1.29
@@ -1,20 +1,19 @@ @@ -1,20 +1,19 @@
1# $NetBSD: Makefile,v 1.28 2007/09/16 13:32:48 obache Exp $ 1# $NetBSD: Makefile,v 1.29 2008/03/02 09:48:42 wiz Exp $
2# 2#
3 3
4DISTNAME= dcraw-8.77 4DISTNAME= dcraw-8.82
5CATEGORIES= graphics 5CATEGORIES= graphics
6MASTER_SITES= http://www.cybercom.net/~dcoffin/dcraw/archive/ 6MASTER_SITES= http://www.cybercom.net/~dcoffin/dcraw/archive/
7DIST_SUBDIR= ${PKGNAME} 
8 7
9MAINTAINER= pkgsrc-users@NetBSD.org 8MAINTAINER= pkgsrc-users@NetBSD.org
10HOMEPAGE= http://www.cybercom.net/~dcoffin/dcraw/ 9HOMEPAGE= http://www.cybercom.net/~dcoffin/dcraw/
11COMMENT= Raw digital camera decoder 10COMMENT= Raw digital camera decoder
12 11
13USE_PKGLOCALEDIR= yes 12USE_PKGLOCALEDIR= yes
14WRKSRC= ${WRKDIR}/${PKGBASE} 13WRKSRC= ${WRKDIR}/${PKGBASE}
15USE_TOOLS+= msgfmt 14USE_TOOLS+= msgfmt
16USE_LANGUAGES= c 15USE_LANGUAGES= c
17 16
18LIBS+= -lm -ljpeg 17LIBS+= -lm -ljpeg
19CFLAGS+= -DLOCALEDIR=\"${PREFIX}/${PKGLOCALEDIR}/locale\" 18CFLAGS+= -DLOCALEDIR=\"${PREFIX}/${PKGLOCALEDIR}/locale\"
20 19

cvs diff -r1.22 -r1.23 pkgsrc/graphics/dcraw/distinfo (expand / switch to unified diff)

--- pkgsrc/graphics/dcraw/distinfo 2007/09/16 13:32:48 1.22
+++ pkgsrc/graphics/dcraw/distinfo 2008/03/02 09:48:42 1.23
@@ -1,6 +1,6 @@ @@ -1,6 +1,6 @@
1$NetBSD: distinfo,v 1.22 2007/09/16 13:32:48 obache Exp $ 1$NetBSD: distinfo,v 1.23 2008/03/02 09:48:42 wiz Exp $
2 2
3SHA1 (dcraw-8.77/dcraw-8.77.tar.gz) = 6d373376f54b1abc8a740d92ed2ed01c96cb7cc8 3SHA1 (dcraw-8.82.tar.gz) = c2ad77407ec9200ba186020100437bd9c43782e5
4RMD160 (dcraw-8.77/dcraw-8.77.tar.gz) = 55a5d4f5caf4989916fca3c604e14d5c18b463d2 4RMD160 (dcraw-8.82.tar.gz) = 959707e854d216acc6d9ab1d87c6d3c6190d2ca4
5Size (dcraw-8.77/dcraw-8.77.tar.gz) = 125758 bytes 5Size (dcraw-8.82.tar.gz) = 136810 bytes
6SHA1 (patch-aa) = e9a7a7cd3bf2bdb92dc04411314adf45bbcf3d2b 6SHA1 (patch-aa) = 218fad02e1d1b2ddf89d4382b7d45504af1e8aed

cvs diff -r1.3 -r1.4 pkgsrc/graphics/dcraw/patches/patch-aa (expand / switch to unified diff)

--- pkgsrc/graphics/dcraw/patches/patch-aa 2007/09/16 13:32:48 1.3
+++ pkgsrc/graphics/dcraw/patches/patch-aa 2008/03/02 09:48:42 1.4
@@ -1,12 +1,12 @@ @@ -1,12 +1,12 @@
1$NetBSD: patch-aa,v 1.3 2007/09/16 13:32:48 obache Exp $ 1$NetBSD: patch-aa,v 1.4 2008/03/02 09:48:42 wiz Exp $
2 2
3--- dcraw.c.orig 2007-08-10 21:09:34.000000000 +0000 3--- dcraw.c.orig 2008-02-22 16:43:39.000000000 +0100
4+++ dcraw.c 4+++ dcraw.c
5@@ -48,6 +48,7 @@ 5@@ -50,6 +50,7 @@
6 #include <lcms.h> 6 #include <lcms.h>
7 #endif 7 #endif
8 #ifdef LOCALEDIR 8 #ifdef LOCALEDIR
9+#include <locale.h> 9+#include <locale.h>
10 #include <libintl.h> 10 #include <libintl.h>
11 #define _(String) gettext(String) 11 #define _(String) gettext(String)
12 #else 12 #else