|
|
c1da72 |
Summary: Tool for decoding raw image data from digital cameras
|
|
|
c1da72 |
Name: dcraw
|
|
|
c1da72 |
Version: 9.19
|
|
|
c1da72 |
Release: 6%{?dist}
|
|
|
c1da72 |
Group: Applications/Multimedia
|
|
|
c1da72 |
License: GPLv2+
|
|
|
c1da72 |
URL: http://cybercom.net/~dcoffin/dcraw
|
|
|
c1da72 |
Source0: http://cybercom.net/~dcoffin/dcraw/archive/dcraw-%{version}.tar.gz
|
|
|
c1da72 |
Patch0: dcraw-9.19-lcms2.patch
|
|
|
c1da72 |
Patch1: dcraw-9.19-CVE-2013-1438.patch
|
|
|
c1da72 |
BuildRequires: gettext
|
|
|
c1da72 |
BuildRequires: libjpeg-devel
|
|
|
c1da72 |
BuildRequires: lcms2-devel
|
|
|
c1da72 |
BuildRequires: jasper-devel
|
|
|
c1da72 |
BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%__id_u -n)
|
|
|
c1da72 |
|
|
|
c1da72 |
%description
|
|
|
c1da72 |
This package contains dcraw, a command line tool to decode raw image data
|
|
|
c1da72 |
downloaded from digital cameras.
|
|
|
c1da72 |
|
|
|
c1da72 |
%prep
|
|
|
c1da72 |
%setup -q -n dcraw
|
|
|
c1da72 |
%patch0 -p1 -b .lcms2
|
|
|
c1da72 |
%patch1 -p1 -b .CVE-2013-1438
|
|
|
c1da72 |
|
|
|
c1da72 |
%build
|
|
|
c1da72 |
gcc %optflags \
|
|
|
c1da72 |
-lm -ljpeg -llcms2 -ljasper \
|
|
|
c1da72 |
-DUSE_LCMS2 \
|
|
|
c1da72 |
-DLOCALEDIR="\"%{_datadir}/locale\"" \
|
|
|
c1da72 |
-o dcraw dcraw.c
|
|
|
c1da72 |
# build language catalogs
|
|
|
c1da72 |
for catsrc in dcraw_*.po; do
|
|
|
c1da72 |
lang="${catsrc%.po}"
|
|
|
c1da72 |
lang="${lang#dcraw_}"
|
|
|
c1da72 |
msgfmt -o "dcraw_${lang}.mo" "$catsrc"
|
|
|
c1da72 |
done
|
|
|
c1da72 |
|
|
|
c1da72 |
%install
|
|
|
c1da72 |
rm -rf %buildroot
|
|
|
c1da72 |
install -d -m 0755 %{buildroot}%{_bindir}
|
|
|
c1da72 |
install -m 0755 dcraw %{buildroot}%{_bindir}
|
|
|
c1da72 |
|
|
|
c1da72 |
# install language catalogs
|
|
|
c1da72 |
for catalog in dcraw_*.mo; do
|
|
|
c1da72 |
lang="${catalog%.mo}"
|
|
|
c1da72 |
lang="${lang#dcraw_}"
|
|
|
c1da72 |
install -d -m 0755 "%{buildroot}%{_datadir}/locale/${lang}/LC_MESSAGES"
|
|
|
c1da72 |
install -m 0644 "$catalog" "%{buildroot}%{_datadir}/locale/${lang}/LC_MESSAGES/dcraw.mo"
|
|
|
c1da72 |
done
|
|
|
c1da72 |
|
|
|
c1da72 |
install -d -m 0755 %{buildroot}%{_bindir} %{buildroot}%{_mandir}/man1
|
|
|
c1da72 |
install -m 0644 dcraw.1 %{buildroot}%{_mandir}/man1/dcraw.1
|
|
|
c1da72 |
# localized manpages
|
|
|
c1da72 |
rm -f %{name}-man-files
|
|
|
c1da72 |
touch %{name}-man-files
|
|
|
c1da72 |
for manpage in dcraw_*.1; do
|
|
|
c1da72 |
lang="${manpage%.1}"
|
|
|
c1da72 |
lang="${lang#dcraw_}"
|
|
|
c1da72 |
install -d -m 0755 "%{buildroot}%{_mandir}/${lang}/man1"
|
|
|
c1da72 |
install -m 0644 "${manpage}" "%{buildroot}%{_mandir}/${lang}/man1/dcraw.1"
|
|
|
c1da72 |
echo "%%lang($lang) %%{_mandir}/${lang}/man1/*" >> %{name}-man-files
|
|
|
c1da72 |
done
|
|
|
c1da72 |
|
|
|
c1da72 |
%find_lang %{name}
|
|
|
c1da72 |
|
|
|
c1da72 |
%clean
|
|
|
c1da72 |
rm -rf %buildroot
|
|
|
c1da72 |
|
|
|
c1da72 |
%files -f %{name}.lang -f %{name}-man-files
|
|
|
c1da72 |
%defattr(-, root, root)
|
|
|
c1da72 |
%{_bindir}/dcraw
|
|
|
c1da72 |
%{_mandir}/man1/*
|
|
|
c1da72 |
|
|
|
c1da72 |
%changelog
|
|
|
c1da72 |
* Fri Jan 24 2014 Daniel Mach <dmach@redhat.com> - 9.19-6
|
|
|
c1da72 |
- Mass rebuild 2014-01-24
|
|
|
c1da72 |
|
|
|
c1da72 |
* Fri Dec 27 2013 Daniel Mach <dmach@redhat.com> - 9.19-5
|
|
|
c1da72 |
- Mass rebuild 2013-12-27
|
|
|
c1da72 |
|
|
|
c1da72 |
* Fri Dec 06 2013 Nils Philippsen <nils@redhat.com> - 9.19-4
|
|
|
c1da72 |
- harden against corrupt input files (CVE-2013-1438)
|
|
|
c1da72 |
|
|
|
c1da72 |
* Fri Sep 13 2013 Nils Philippsen <nils@redhat.com> - 9.19-3
|
|
|
c1da72 |
- build against the currently maintained version of lcms (2.x)
|
|
|
c1da72 |
|
|
|
c1da72 |
* Sat Aug 03 2013 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 9.19-2
|
|
|
c1da72 |
- Rebuilt for https://fedoraproject.org/wiki/Fedora_20_Mass_Rebuild
|
|
|
c1da72 |
|
|
|
c1da72 |
* Thu Jun 20 2013 Nils Philippsen <nils@redhat.com> - 9.19-1
|
|
|
c1da72 |
- version 9.19
|
|
|
c1da72 |
|
|
|
c1da72 |
* Mon Jun 03 2013 Nils Philippsen <nils@redhat.com> - 9.18-1
|
|
|
c1da72 |
- version 9.18
|
|
|
c1da72 |
|
|
|
c1da72 |
* Wed Feb 13 2013 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 9.17-3
|
|
|
c1da72 |
- Rebuilt for https://fedoraproject.org/wiki/Fedora_19_Mass_Rebuild
|
|
|
c1da72 |
|
|
|
c1da72 |
* Fri Jan 18 2013 Adam Tkac <atkac redhat com> - 9.17-2
|
|
|
c1da72 |
- rebuild due to "jpeg8-ABI" feature drop
|
|
|
c1da72 |
|
|
|
c1da72 |
* Mon Jan 14 2013 Nils Philippsen <nils@redhat.com> - 9.17-1
|
|
|
c1da72 |
- version 9.17
|
|
|
c1da72 |
|
|
|
c1da72 |
* Fri Dec 21 2012 Adam Tkac <atkac redhat com> - 9.16-4
|
|
|
c1da72 |
- rebuild against new libjpeg
|
|
|
c1da72 |
|
|
|
c1da72 |
* Thu Oct 18 2012 Nils Philippsen <nils@redhat.com> - 9.16-3
|
|
|
c1da72 |
- upstream changed 9.16 tarball, adds support for Samsung NX1000, Sony
|
|
|
c1da72 |
DSC-RX100 models
|
|
|
c1da72 |
|
|
|
c1da72 |
* Wed Jul 18 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 9.16-2
|
|
|
c1da72 |
- Rebuilt for https://fedoraproject.org/wiki/Fedora_18_Mass_Rebuild
|
|
|
c1da72 |
|
|
|
c1da72 |
* Wed Jul 04 2012 Nils Philippsen <nils@redhat.com> - 9.16-1
|
|
|
c1da72 |
- version 9.16
|
|
|
c1da72 |
|
|
|
c1da72 |
* Tue Jun 19 2012 Nils Philippsen <nils@redhat.com> - 9.15-1
|
|
|
c1da72 |
- version 9.15
|
|
|
c1da72 |
|
|
|
c1da72 |
* Tue Jan 10 2012 Nils Philippsen <nils@redhat.com> - 9.12-2
|
|
|
c1da72 |
- rebuild for gcc 4.7
|
|
|
c1da72 |
|
|
|
c1da72 |
* Thu Dec 22 2011 Nils Philippsen <nils@redhat.com> - 9.12-1
|
|
|
c1da72 |
- version 9.12
|
|
|
c1da72 |
|
|
|
c1da72 |
* Wed Oct 12 2011 Nils Philippsen <nils@redhat.com> - 9.11-1
|
|
|
c1da72 |
- version 9.11
|
|
|
c1da72 |
|
|
|
c1da72 |
* Mon Aug 01 2011 Nils Philippsen <nils@redhat.com> - 9.10-1
|
|
|
c1da72 |
- version 9.10
|
|
|
c1da72 |
- add BR: jasper-devel, link with jasper library
|
|
|
c1da72 |
|
|
|
c1da72 |
* Mon May 23 2011 Nils Philippsen <nils@redhat.com> - 9.08-1
|
|
|
c1da72 |
- version 9.08
|
|
|
c1da72 |
|
|
|
c1da72 |
* Thu Apr 14 2011 Nils Philippsen <nils@redhat.com> - 9.07-1
|
|
|
c1da72 |
- version 9.07
|
|
|
c1da72 |
|
|
|
c1da72 |
* Fri Mar 04 2011 Nils Philippsen <nils@redhat.com> - 9.06-1
|
|
|
c1da72 |
- version 9.06
|
|
|
c1da72 |
|
|
|
c1da72 |
* Tue Feb 08 2011 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 9.04-2
|
|
|
c1da72 |
- Rebuilt for https://fedoraproject.org/wiki/Fedora_15_Mass_Rebuild
|
|
|
c1da72 |
|
|
|
c1da72 |
* Tue Aug 03 2010 Nils Philippsen <nils@redhat.com> - 9.04-1
|
|
|
c1da72 |
- version 9.04
|
|
|
c1da72 |
|
|
|
c1da72 |
* Wed Jun 02 2010 Nils Philippsen <nils@redhat.com> - 9.01-1
|
|
|
c1da72 |
- version 9.01
|
|
|
c1da72 |
- color man page files with %%lang()
|
|
|
c1da72 |
|
|
|
c1da72 |
* Fri Feb 12 2010 Nils Philippsen <nils@redhat.com> - 8.99-1
|
|
|
c1da72 |
- version 8.99
|
|
|
c1da72 |
|
|
|
c1da72 |
* Tue Aug 18 2009 Nils Philippsen <nils@redhat.com> - 8.96-1
|
|
|
c1da72 |
- version 8.96
|
|
|
c1da72 |
|
|
|
c1da72 |
* Fri Jul 24 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 8.91-2
|
|
|
c1da72 |
- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild
|
|
|
c1da72 |
|
|
|
c1da72 |
* Mon Mar 02 2009 Nils Philippsen <nils@redhat.com> - 8.91-1
|
|
|
c1da72 |
- version 8.91
|
|
|
c1da72 |
|
|
|
c1da72 |
* Tue Feb 24 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 8.89-2
|
|
|
c1da72 |
- Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild
|
|
|
c1da72 |
|
|
|
c1da72 |
* Thu Nov 27 2008 Nils Philippsen <nphilipp@redhat.com> - 8.89-1
|
|
|
c1da72 |
- version 8.89
|
|
|
c1da72 |
- remove obsolete gps patch
|
|
|
c1da72 |
|
|
|
c1da72 |
* Mon Feb 25 2008 Nils Philippsen <nphilipp@redhat.com> - 8.82-1
|
|
|
c1da72 |
- version 8.82
|
|
|
c1da72 |
|
|
|
c1da72 |
* Tue Feb 19 2008 Fedora Release Engineering <rel-eng@fedoraproject.org> - 8.81-2
|
|
|
c1da72 |
- Autorebuild for GCC 4.3
|
|
|
c1da72 |
|
|
|
c1da72 |
* Mon Jan 14 2008 Nils Philippsen <nphilipp@redhat.com> - 8.81-1
|
|
|
c1da72 |
- version 8.81
|
|
|
c1da72 |
- add support for GPS data (#428600, patch by Ulrich Drepper)
|
|
|
c1da72 |
|
|
|
c1da72 |
* Fri Nov 30 2007 Nils Philippsen <nphilipp@redhat.com> - 8.80-1
|
|
|
c1da72 |
- version 8.80
|
|
|
c1da72 |
- change license tag to GPLv2+
|
|
|
c1da72 |
|
|
|
c1da72 |
* Mon Feb 05 2007 Nils Philippsen <nphilipp@redhat.com> - 8.77-2
|
|
|
c1da72 |
- rebuild with pristine source tarball
|
|
|
c1da72 |
|
|
|
c1da72 |
* Mon Feb 05 2007 Nils Philippsen <nphilipp@redhat.com> - 8.77-1
|
|
|
c1da72 |
- version 8.77
|
|
|
c1da72 |
|
|
|
c1da72 |
* Mon Feb 05 2007 Nils Philippsen <nphilipp@redhat.com> - 8.53-2
|
|
|
c1da72 |
- fix summary, use %%find_lang (#225678)
|
|
|
c1da72 |
|
|
|
c1da72 |
* Thu Feb 01 2007 Nils Philippsen <nphilipp@redhat.com> - 8.53-1
|
|
|
c1da72 |
- upstream finally has a tarball, use that and its version (#209016)
|
|
|
c1da72 |
- use dist tag
|
|
|
c1da72 |
|
|
|
c1da72 |
* Wed Jul 12 2006 Jesse Keating <jkeating@redhat.com> - 0.0.20060521-1.1
|
|
|
c1da72 |
- rebuild
|
|
|
c1da72 |
|
|
|
c1da72 |
* Tue May 23 2006 Nils Philippsen <nphilipp@redhat.com> - 0.0.20060521-1
|
|
|
c1da72 |
- program and manpage version of 2006-05-21
|
|
|
c1da72 |
- use %%optflags
|
|
|
c1da72 |
- change license tag to GPL
|
|
|
c1da72 |
- use lcms
|
|
|
c1da72 |
|
|
|
c1da72 |
* Fri Feb 10 2006 Jesse Keating <jkeating@redhat.com> - 0.0.20051211-1.2
|
|
|
c1da72 |
- bump again for double-long bug on ppc(64)
|
|
|
c1da72 |
|
|
|
c1da72 |
* Tue Feb 07 2006 Jesse Keating <jkeating@redhat.com> - 0.0.20051211-1.1
|
|
|
c1da72 |
- rebuilt for new gcc4.1 snapshot and glibc changes
|
|
|
c1da72 |
|
|
|
c1da72 |
* Wed Dec 14 2005 Nils Philippsen <nphilipp@redhat.com>
|
|
|
c1da72 |
- version of 2005-12-11
|
|
|
c1da72 |
- manpage of 2005-09-29
|
|
|
c1da72 |
|
|
|
c1da72 |
* Fri Dec 09 2005 Jesse Keating <jkeating@redhat.com>
|
|
|
c1da72 |
- rebuilt
|
|
|
c1da72 |
|
|
|
c1da72 |
* Wed Mar 02 2005 Nils Philippsen <nphilipp@redhat.com>
|
|
|
c1da72 |
- version of 2005-02-27
|
|
|
c1da72 |
- manpage of 2005-01-19
|
|
|
c1da72 |
|
|
|
c1da72 |
* Wed Dec 01 2004 Nils Philippsen <nphilipp@redhat.com>
|
|
|
c1da72 |
- version of 2004-11-28
|
|
|
c1da72 |
- initial build
|