build against the currently maintained version of lcms (2.x)

This commit is contained in:
Nils Philippsen 2013-09-13 17:29:03 +02:00
parent 34f54cc22f
commit 347b04ea14
2 changed files with 71 additions and 3 deletions

59
dcraw-9.19-lcms2.patch Normal file
View File

@ -0,0 +1,59 @@
From 789b763bff1701ef31bd077ae49671dfe1c82a51 Mon Sep 17 00:00:00 2001
From: Nils Philippsen <nils@redhat.com>
Date: Wed, 4 Sep 2013 17:13:49 +0200
Subject: [PATCH] Add support for LCMS version 2.x.
---
dcraw.c | 21 ++++++++++++++++++++-
1 file changed, 20 insertions(+), 1 deletion(-)
diff --git a/dcraw.c b/dcraw.c
index 96e3d1f..4b280b5 100644
--- a/dcraw.c
+++ b/dcraw.c
@@ -80,7 +80,13 @@ typedef unsigned long long UINT64;
#include <jpeglib.h> /* Decode compressed Kodak DC120 photos */
#endif /* and Adobe Lossy DNGs */
#ifndef NO_LCMS
-#include <lcms.h> /* Support color profiles */
+#ifdef USE_LCMS2
+#include <lcms2.h> /* Support color profiles */
+#else
+#undef USE_LCMS1
+#define USE_LCMS1
+#include <lcms.h>
+#endif
#endif
#ifdef LOCALEDIR
#include <libintl.h>
@@ -8581,6 +8587,15 @@ notraw:
}
#ifndef NO_LCMS
+#ifdef USE_LCMS2
+static void lcms2_error_show_handler (cmsContext ContextID,
+ cmsUInt32Number ErrorCode,
+ const char *Text)
+{
+ fprintf (stderr, "lcms2: Error #%d; %s\n", ErrorCode, Text);
+}
+#endif
+
void CLASS apply_profile (const char *input, const char *output)
{
char *prof;
@@ -8589,7 +8604,11 @@ void CLASS apply_profile (const char *input, const char *output)
FILE *fp;
unsigned size;
+#ifdef USE_LCMS2
+ cmsSetLogErrorHandler (lcms2_error_show_handler);
+#else
cmsErrorAction (LCMS_ERROR_SHOW);
+#endif
if (strcmp (input, "embed"))
hInProfile = cmsOpenProfileFromFile (input, "r");
else if (profile_length) {
--
1.8.3.1

View File

@ -1,14 +1,15 @@
Summary: Tool for decoding raw image data from digital cameras Summary: Tool for decoding raw image data from digital cameras
Name: dcraw Name: dcraw
Version: 9.19 Version: 9.19
Release: 2%{?dist} Release: 3%{?dist}
Group: Applications/Multimedia Group: Applications/Multimedia
License: GPLv2+ License: GPLv2+
URL: http://cybercom.net/~dcoffin/dcraw URL: http://cybercom.net/~dcoffin/dcraw
Source0: http://cybercom.net/~dcoffin/dcraw/archive/dcraw-%{version}.tar.gz Source0: http://cybercom.net/~dcoffin/dcraw/archive/dcraw-%{version}.tar.gz
Patch0: dcraw-9.19-lcms2.patch
BuildRequires: gettext BuildRequires: gettext
BuildRequires: libjpeg-devel BuildRequires: libjpeg-devel
BuildRequires: lcms-devel BuildRequires: lcms2-devel
BuildRequires: jasper-devel BuildRequires: jasper-devel
BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%__id_u -n) BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%__id_u -n)
@ -18,9 +19,14 @@ downloaded from digital cameras.
%prep %prep
%setup -q -n dcraw %setup -q -n dcraw
%patch0 -p1 -b .lcms2
%build %build
gcc %optflags -lm -ljpeg -llcms -ljasper -DLOCALEDIR="\"%{_datadir}/locale\"" -o dcraw dcraw.c gcc %optflags \
-lm -ljpeg -llcms2 -ljasper \
-DUSE_LCMS2 \
-DLOCALEDIR="\"%{_datadir}/locale\"" \
-o dcraw dcraw.c
# build language catalogs # build language catalogs
for catsrc in dcraw_*.po; do for catsrc in dcraw_*.po; do
lang="${catsrc%.po}" lang="${catsrc%.po}"
@ -65,6 +71,9 @@ rm -rf %buildroot
%{_mandir}/man1/* %{_mandir}/man1/*
%changelog %changelog
* Fri Sep 13 2013 Nils Philippsen <nils@redhat.com> - 9.19-3
- build against the currently maintained version of lcms (2.x)
* Sat Aug 03 2013 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 9.19-2 * Sat Aug 03 2013 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 9.19-2
- Rebuilt for https://fedoraproject.org/wiki/Fedora_20_Mass_Rebuild - Rebuilt for https://fedoraproject.org/wiki/Fedora_20_Mass_Rebuild