diff options
author | wiz <wiz> | 2008-03-02 09:48:42 +0000 |
---|---|---|
committer | wiz <wiz> | 2008-03-02 09:48:42 +0000 |
commit | 2b411ebf228459ad9a9068e684b8ee25f9dac461 (patch) | |
tree | 3b0943d5f1770fa935327cf28ee9795d8e675efe /graphics/dcraw | |
parent | c1f8fab66e86d481716ab1fe13a5e17a2b696399 (diff) | |
download | pkgsrc-2b411ebf228459ad9a9068e684b8ee25f9dac461.tar.gz |
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.
Diffstat (limited to 'graphics/dcraw')
-rw-r--r-- | graphics/dcraw/DESCR | 4 | ||||
-rw-r--r-- | graphics/dcraw/Makefile | 5 | ||||
-rw-r--r-- | graphics/dcraw/distinfo | 10 | ||||
-rw-r--r-- | graphics/dcraw/patches/patch-aa | 6 |
4 files changed, 12 insertions, 13 deletions
diff --git a/graphics/dcraw/DESCR b/graphics/dcraw/DESCR index cc4f8595fd9..6215911c9b9 100644 --- a/graphics/dcraw/DESCR +++ b/graphics/dcraw/DESCR @@ -1,2 +1,2 @@ -This is a program to convert raw image files from any digital camera -into PPM format. +This is a command-line ANSI C program to convert raw photos from +any digital camera on any computer running any operating system. diff --git a/graphics/dcraw/Makefile b/graphics/dcraw/Makefile index 1ab1466e93a..3bf0254d9d2 100644 --- a/graphics/dcraw/Makefile +++ b/graphics/dcraw/Makefile @@ -1,10 +1,9 @@ -# $NetBSD: Makefile,v 1.28 2007/09/16 13:32:48 obache Exp $ +# $NetBSD: Makefile,v 1.29 2008/03/02 09:48:42 wiz Exp $ # -DISTNAME= dcraw-8.77 +DISTNAME= dcraw-8.82 CATEGORIES= graphics MASTER_SITES= http://www.cybercom.net/~dcoffin/dcraw/archive/ -DIST_SUBDIR= ${PKGNAME} MAINTAINER= pkgsrc-users@NetBSD.org HOMEPAGE= http://www.cybercom.net/~dcoffin/dcraw/ diff --git a/graphics/dcraw/distinfo b/graphics/dcraw/distinfo index a2e9f0a5b70..8baac047cea 100644 --- a/graphics/dcraw/distinfo +++ b/graphics/dcraw/distinfo @@ -1,6 +1,6 @@ -$NetBSD: distinfo,v 1.22 2007/09/16 13:32:48 obache Exp $ +$NetBSD: distinfo,v 1.23 2008/03/02 09:48:42 wiz Exp $ -SHA1 (dcraw-8.77/dcraw-8.77.tar.gz) = 6d373376f54b1abc8a740d92ed2ed01c96cb7cc8 -RMD160 (dcraw-8.77/dcraw-8.77.tar.gz) = 55a5d4f5caf4989916fca3c604e14d5c18b463d2 -Size (dcraw-8.77/dcraw-8.77.tar.gz) = 125758 bytes -SHA1 (patch-aa) = e9a7a7cd3bf2bdb92dc04411314adf45bbcf3d2b +SHA1 (dcraw-8.82.tar.gz) = c2ad77407ec9200ba186020100437bd9c43782e5 +RMD160 (dcraw-8.82.tar.gz) = 959707e854d216acc6d9ab1d87c6d3c6190d2ca4 +Size (dcraw-8.82.tar.gz) = 136810 bytes +SHA1 (patch-aa) = 218fad02e1d1b2ddf89d4382b7d45504af1e8aed diff --git a/graphics/dcraw/patches/patch-aa b/graphics/dcraw/patches/patch-aa index cc5aa30904e..ab09df047d3 100644 --- a/graphics/dcraw/patches/patch-aa +++ b/graphics/dcraw/patches/patch-aa @@ -1,8 +1,8 @@ -$NetBSD: patch-aa,v 1.3 2007/09/16 13:32:48 obache Exp $ +$NetBSD: patch-aa,v 1.4 2008/03/02 09:48:42 wiz Exp $ ---- dcraw.c.orig 2007-08-10 21:09:34.000000000 +0000 +--- dcraw.c.orig 2008-02-22 16:43:39.000000000 +0100 +++ dcraw.c -@@ -48,6 +48,7 @@ +@@ -50,6 +50,7 @@ #include <lcms.h> #endif #ifdef LOCALEDIR |