diff options
author | uebayasi <uebayasi@pkgsrc.org> | 2006-01-05 04:37:33 +0000 |
---|---|---|
committer | uebayasi <uebayasi@pkgsrc.org> | 2006-01-05 04:37:33 +0000 |
commit | d54a3ee48a8ae7abbab52c7b455bc2d4e3c98260 (patch) | |
tree | d9e80117d032c316bdd4b2e4e3c744ec092e28d5 /graphics/dcraw | |
parent | 587764b7fc47fef102d1aadaaabb182349354612 (diff) | |
download | pkgsrc-d54a3ee48a8ae7abbab52c7b455bc2d4e3c98260.tar.gz |
Update dcraw to 7.94; Sergey Svishchev in pkg/32457.
No changelog available, but changes to manpage suggest the following:
- two more interpolation methods (VHG, AHD)
- bilateral filter to smooth noise
- settable black point
Diffstat (limited to 'graphics/dcraw')
-rw-r--r-- | graphics/dcraw/Makefile | 4 | ||||
-rw-r--r-- | graphics/dcraw/distinfo | 16 | ||||
-rw-r--r-- | graphics/dcraw/patches/patch-aa | 8 |
3 files changed, 14 insertions, 14 deletions
diff --git a/graphics/dcraw/Makefile b/graphics/dcraw/Makefile index 0a0b93baa4f..e943ecd4b2e 100644 --- a/graphics/dcraw/Makefile +++ b/graphics/dcraw/Makefile @@ -1,8 +1,8 @@ -# $NetBSD: Makefile,v 1.22 2005/08/06 13:13:39 markd Exp $ +# $NetBSD: Makefile,v 1.23 2006/01/05 04:37:33 uebayasi Exp $ # DISTNAME= dcraw -PKGNAME= dcraw-7.48 +PKGNAME= dcraw-7.94 CATEGORIES= graphics MASTER_SITES= http://www.cybercom.net/~dcoffin/dcraw/ DISTFILES= dcraw.c dcraw.1 diff --git a/graphics/dcraw/distinfo b/graphics/dcraw/distinfo index 1f6c14a55c9..fa62d60195d 100644 --- a/graphics/dcraw/distinfo +++ b/graphics/dcraw/distinfo @@ -1,9 +1,9 @@ -$NetBSD: distinfo,v 1.18 2005/08/06 13:13:39 markd Exp $ +$NetBSD: distinfo,v 1.19 2006/01/05 04:37:33 uebayasi Exp $ -SHA1 (dcraw-7.48/dcraw.c) = b5d99fed3c525195c9daa158faca445971167532 -RMD160 (dcraw-7.48/dcraw.c) = 36b575c222c228eac55920bc24a4c5eb9be5c142 -Size (dcraw-7.48/dcraw.c) = 161087 bytes -SHA1 (dcraw-7.48/dcraw.1) = 6c022b8aebc4a84b36fc59c497be54856b4ee543 -RMD160 (dcraw-7.48/dcraw.1) = b0a0b0376c9fcbc1b996466e6c77bfffa07c25cb -Size (dcraw-7.48/dcraw.1) = 3744 bytes -SHA1 (patch-aa) = 796166f137d12b3d49eb09fda50b8871d4683092 +SHA1 (dcraw-7.94/dcraw.c) = 48c98c3e25244af3e480055bf590e6ae13bff7c0 +RMD160 (dcraw-7.94/dcraw.c) = bde89c889550e1d78a41217986c207234d091482 +Size (dcraw-7.94/dcraw.c) = 177791 bytes +SHA1 (dcraw-7.94/dcraw.1) = 86460b9339558cb86aaea504f8043c89e2f7dbbe +RMD160 (dcraw-7.94/dcraw.1) = 77e7536b96461a1c2b9f1e45320936f2c3ab7c97 +Size (dcraw-7.94/dcraw.1) = 4078 bytes +SHA1 (patch-aa) = f1a9d3eb800da346918e86aeaed1c1e66932247b diff --git a/graphics/dcraw/patches/patch-aa b/graphics/dcraw/patches/patch-aa index c0b3ba22498..9375aabd61e 100644 --- a/graphics/dcraw/patches/patch-aa +++ b/graphics/dcraw/patches/patch-aa @@ -1,8 +1,8 @@ -$NetBSD: patch-aa,v 1.1 2005/04/07 09:16:47 seb Exp $ +$NetBSD: patch-aa,v 1.2 2006/01/05 04:37:33 uebayasi Exp $ ---- dcraw.c.orig 2005-04-07 09:09:23.000000000 +0000 +--- dcraw.c.orig 2006-01-05 13:30:23.000000000 +0900 +++ dcraw.c -@@ -163,7 +163,9 @@ struct decode { +@@ -182,7 +182,9 @@ struct decode { 3 G R G R G R 3 B G B G B G 3 R G R G R G 3 G B G B G B */ @@ -10,6 +10,6 @@ $NetBSD: patch-aa,v 1.1 2005/04/07 09:16:47 seb Exp $ +#include <sys/param.h> + +#if !(defined(__GLIBC__) || (defined(__NetBSD__) && (__NetBSD_Version__ >= 300000000))) - char *memmem (char *haystack, size_t haystacklen, + char *my_memmem (char *haystack, size_t haystacklen, char *needle, size_t needlelen) { |