5f6963
Name:           jbigkit
5f6963
Version:        2.1
5f6963
Release:        14%{?dist}
5f6963
Summary:        JBIG1 lossless image compression tools
5f6963
5f6963
License:        GPLv2+
5f6963
URL:            http://www.cl.cam.ac.uk/~mgk25/jbigkit/
5f6963
Source0:        http://www.cl.cam.ac.uk/~mgk25/download/jbigkit-%{version}.tar.gz
5f6963
Patch0:         jbigkit-2.1-shlib.patch
5f6963
Patch1:         jbigkit-2.0-warnings.patch
5f6963
Patch2:         jbigkit-ldflags.patch
5f6963
Patch3:         jbigkit-covscan.patch
5f6963
5f6963
# gcc is no longer in buildroot by default
5f6963
# gcc needed for libjbig library and several filters - jbigtopbm, pbmtojbig e.g.
5f6963
BuildRequires: gcc
5f6963
5f6963
Requires:       jbigkit-libs%{?_isa} = %{version}-%{release}
5f6963
5f6963
%package libs
5f6963
Summary:        JBIG1 lossless image compression library
5f6963
5f6963
%package devel
5f6963
Summary:        JBIG1 lossless image compression library -- development files
5f6963
Requires:       jbigkit-libs%{?_isa} = %{version}-%{release}
5f6963
5f6963
%description libs
5f6963
JBIG-KIT provides a portable library of compression and decompression
5f6963
functions with a documented interface that you can include very easily
5f6963
into your image or document processing software. In addition, JBIG-KIT
5f6963
provides ready-to-use compression and decompression programs with a
5f6963
simple command line interface (similar to the converters found in netpbm).
5f6963
5f6963
JBIG-KIT implements the specification:
5f6963
    ISO/IEC 11544:1993 and ITU-T Recommendation T.82(1993):
5f6963
     Information technology — Coded representation of picture and audio
5f6963
     information — Progressive bi-level image compression 
5f6963
5f6963
which is commonly referred to as the “JBIG1 standard”
5f6963
5f6963
%description devel
5f6963
The jbigkit-devel package contains files needed for development using 
5f6963
the JBIG-KIT image compression library.
5f6963
5f6963
%description
5f6963
The jbigkit package contains tools for converting between PBM and JBIG1
5f6963
formats.
5f6963
5f6963
5f6963
%prep
5f6963
%setup -q -n jbigkit-2.1
5f6963
%patch0 -p1 -b .shlib
5f6963
%patch1 -p1 -b .warnings
5f6963
# jbigkit: Partial Fedora build flags injection (bug #1548546)
5f6963
%patch2 -p1 -b .ldflags
5f6963
# 1602563 - covscan review - patch taken from upstream
5f6963
%patch3 -p1 -b .covscan
5f6963
5f6963
%build
5f6963
# get the correct redhat build flags
5f6963
%set_build_flags
5f6963
%make_build
5f6963
5f6963
%install
5f6963
mkdir -p $RPM_BUILD_ROOT%{_libdir}
5f6963
mkdir -p $RPM_BUILD_ROOT%{_includedir}
5f6963
mkdir -p $RPM_BUILD_ROOT%{_bindir}
5f6963
mkdir -p $RPM_BUILD_ROOT%{_mandir}/man1
5f6963
5f6963
install -p -m0755 libjbig/libjbig.so.%{version} $RPM_BUILD_ROOT/%{_libdir}
5f6963
install -p -m0755 libjbig/libjbig85.so.%{version} $RPM_BUILD_ROOT/%{_libdir}
5f6963
ln -sf libjbig.so.%{version} $RPM_BUILD_ROOT/%{_libdir}/libjbig.so
5f6963
ln -sf libjbig85.so.%{version} $RPM_BUILD_ROOT/%{_libdir}/libjbig85.so
5f6963
5f6963
install -p -m0644 libjbig/jbig.h $RPM_BUILD_ROOT%{_includedir}
5f6963
install -p -m0644 libjbig/jbig85.h $RPM_BUILD_ROOT%{_includedir}
5f6963
install -p -m0644 libjbig/jbig_ar.h $RPM_BUILD_ROOT%{_includedir}
5f6963
5f6963
install -p -m0755 pbmtools/???to??? $RPM_BUILD_ROOT%{_bindir}
5f6963
install -p -m0755 pbmtools/???to???85 $RPM_BUILD_ROOT%{_bindir}
5f6963
install -p -m0644 pbmtools/*.1 $RPM_BUILD_ROOT%{_mandir}/man1
5f6963
5f6963
%check
5f6963
make test
5f6963
5f6963
%post libs -p /sbin/ldconfig
5f6963
5f6963
%postun libs -p /sbin/ldconfig
5f6963
5f6963
%files
5f6963
%{_bindir}/???to*
5f6963
%{_mandir}/man1/*
5f6963
%license COPYING
5f6963
5f6963
%files libs
5f6963
%{_libdir}/libjbig*.so.%{version}
5f6963
%doc ANNOUNCE TODO CHANGES
5f6963
%license COPYING
5f6963
5f6963
%files devel
5f6963
%{_libdir}/libjbig*.so
5f6963
%{_includedir}/jbig*.h
5f6963
5f6963
%changelog
5f6963
* Thu Oct 25 2018 Zdenek Dohnal <zdohnal@redhat.com> - 2.1-14
5f6963
- 1602563 - Please review important issues found by covscan in "jbigkit-2.1-12.el8+7" package
5f6963
5f6963
* Wed Jul 11 2018 Zdenek Dohnal <zdohnal@redhat.com> - 2.1-13
5f6963
- ship license in correct tag
5f6963
5f6963
* Tue Feb 27 2018 Zdenek Dohnal <zdohnal@redhat.com> - 2.1-12
5f6963
- 1548546 - jbigkit: Partial Fedora build flags injection
5f6963
5f6963
* Fri Feb 09 2018 Zdenek Dohnal <zdohnal@redhat.com> - 2.1-10
5f6963
- remove old stuff
5f6963
5f6963
* Wed Feb 07 2018 Fedora Release Engineering <releng@fedoraproject.org> - 2.1-9
5f6963
- Rebuilt for https://fedoraproject.org/wiki/Fedora_28_Mass_Rebuild
5f6963
5f6963
* Wed Aug 02 2017 Fedora Release Engineering <releng@fedoraproject.org> - 2.1-8
5f6963
- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Binutils_Mass_Rebuild
5f6963
5f6963
* Wed Jul 26 2017 Fedora Release Engineering <releng@fedoraproject.org> - 2.1-7
5f6963
- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Mass_Rebuild
5f6963
5f6963
* Fri Feb 10 2017 Fedora Release Engineering <releng@fedoraproject.org> - 2.1-6
5f6963
- Rebuilt for https://fedoraproject.org/wiki/Fedora_26_Mass_Rebuild
5f6963
5f6963
* Thu Feb 04 2016 Fedora Release Engineering <releng@fedoraproject.org> - 2.1-5
5f6963
- Rebuilt for https://fedoraproject.org/wiki/Fedora_24_Mass_Rebuild
5f6963
5f6963
* Wed Jun 17 2015 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2.1-4
5f6963
- Rebuilt for https://fedoraproject.org/wiki/Fedora_23_Mass_Rebuild
5f6963
5f6963
* Sun Sep  7 2014 Ville Skyttä <ville.skytta@iki.fi> - 2.1-3
5f6963
- Build with $RPM_OPT_FLAGS again
5f6963
5f6963
* Sat Aug 16 2014 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2.1-2
5f6963
- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_22_Mass_Rebuild
5f6963
5f6963
* Mon Aug 04 2014 Fridolin Pokorny <fpokorny@redhat.com> - 2.1-1
5f6963
- Update to 2.1
5f6963
- Removed jbigkit-CVE-2013-6369.patch (accepted by upstream)
5f6963
- Updated jbigkit-2.0-warnings.patch to fix only fread() checks
5f6963
- Updated jbigkit-2.0-shlib.patch
5f6963
5f6963
* Sat Jun 07 2014 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2.0-11
5f6963
- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_Mass_Rebuild
5f6963
5f6963
* Tue Apr 08 2014 Jiri Popelka <jpopelka@redhat.com> - 2.0-10
5f6963
- CVE-2013-6369 (#1085362)
5f6963
5f6963
* Sat Aug 03 2013 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2.0-9
5f6963
- Rebuilt for https://fedoraproject.org/wiki/Fedora_20_Mass_Rebuild
5f6963
5f6963
* Thu Feb 14 2013 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2.0-8
5f6963
- Rebuilt for https://fedoraproject.org/wiki/Fedora_19_Mass_Rebuild
5f6963
5f6963
* Tue Jul 17 2012 Jiri Popelka <jpopelka@redhat.com> - 2.0-7
5f6963
- Fix a number of compiler warnings per feedback from Ubuntu security team (#840608)
5f6963
5f6963
* Mon Apr 16 2012 Jiri Popelka <jpopelka@redhat.com> - 2.0-6
5f6963
- Don't install up-to-date license file, use the upstream one. (#807760)
5f6963
5f6963
* Wed Mar 28 2012 Jiri Popelka <jpopelka@redhat.com> - 2.0-5
5f6963
- Moving from rpmfusion-free to Fedora because it will be free of known patents
5f6963
  in all countries from 2012-04-04 onwards
5f6963
- Changed license from GPL to GPLv2+ and included up-to-date license file
5f6963
5f6963
* Wed Feb 08 2012 Nicolas Chauvet <kwizart@gmail.com> - 2.0-4
5f6963
- Rebuilt for https://fedoraproject.org/wiki/Fedora_17_Mass_Rebuild
5f6963
5f6963
* Sun Mar 29 2009 Thorsten Leemhuis <fedora [AT] leemhuis [DOT] info> - 2.0-3
5f6963
- rebuild for new F11 features
5f6963
5f6963
* Fri Sep 05 2008 David Woodhouse <dwmw2@infradead.org> 2.0-2
5f6963
- Add missing jbig_ar.h
5f6963
5f6963
* Wed Sep 03 2008 David Woodhouse <dwmw2@infradead.org> 2.0-1
5f6963
- Update to 2.0
5f6963
5f6963
* Sun Aug 03 2008 Thorsten Leemhuis <fedora@leemhuis.info> - 1.6-3
5f6963
- rebuild
5f6963
5f6963
* Sun Oct  1 2006 David Woodhouse <dwmw2@infradead.org> 1.6-2
5f6963
- Review fixes
5f6963
5f6963
* Tue Sep 12 2006 David Woodhouse <dwmw2@infradead.org> 1.6-1
5f6963
- Initial version