2004-12-08 16:40:10 +00:00
|
|
|
|
|
|
|
# NOTE: packages can use jasper:
|
|
|
|
# ImageMagick
|
|
|
|
# kdelibs
|
|
|
|
# koffice
|
|
|
|
# netpbm
|
|
|
|
|
2006-03-01 16:30:23 +00:00
|
|
|
# define to use GeoJasper
|
|
|
|
#define geo 1
|
|
|
|
|
2004-12-08 16:40:10 +00:00
|
|
|
Summary: Implementation of the JPEG-2000 standard, Part 1
|
2005-03-03 21:56:40 +00:00
|
|
|
Name: jasper
|
|
|
|
Group: System Environment/Libraries
|
2004-12-08 16:40:10 +00:00
|
|
|
Version: 1.701.0
|
2006-10-04 19:21:42 +00:00
|
|
|
Release: 15%{?dist}.2
|
2005-04-06 22:12:02 +00:00
|
|
|
|
2005-10-17 16:04:07 +00:00
|
|
|
License: JasPer License Version 2.0
|
2006-03-01 16:30:23 +00:00
|
|
|
%if "%{?geo:1}" == "1"
|
|
|
|
%define geojasper_ver 1.2.9
|
|
|
|
URL: http://www.dimin.net/software/utils.html
|
|
|
|
Source: http://dimin.m6.net/software/utils/geojasper_src.zip
|
|
|
|
Provides: geojasper = %{geojasper_ver}
|
|
|
|
%else
|
2005-03-03 21:56:40 +00:00
|
|
|
URL: http://www.ece.uvic.ca/~mdadams/jasper/
|
2004-12-08 16:40:10 +00:00
|
|
|
Source: http://www.ece.uvic.ca/~mdadams/jasper/software/jasper-1.701.0.zip
|
2006-03-01 16:30:23 +00:00
|
|
|
%endif
|
2005-10-17 16:04:07 +00:00
|
|
|
BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n)
|
2004-12-08 16:40:10 +00:00
|
|
|
|
2006-01-31 16:11:35 +00:00
|
|
|
Patch1: jasper-1.701.0-GL.patch
|
2006-03-01 18:12:26 +00:00
|
|
|
# autoconf/automake bits of patch1
|
|
|
|
Patch2: jasper-1.701.0-GL-ac.patch
|
2006-09-18 20:17:57 +00:00
|
|
|
# memory leak, see
|
|
|
|
# http://gyachi.sourceforge.net/download.shtml
|
|
|
|
# http://ayttm.sourceforge.net/files.shtml
|
|
|
|
# http://ayttm.sourceforge.net/jasper-memory-leak-1.701.0.patch.gz
|
|
|
|
Patch3: jasper-1.701.0-memory_leak.patch
|
2006-01-31 16:11:35 +00:00
|
|
|
|
2006-03-01 16:30:23 +00:00
|
|
|
BuildRequires: automake
|
2005-10-17 16:04:07 +00:00
|
|
|
BuildRequires: libjpeg-devel
|
2006-10-04 19:21:42 +00:00
|
|
|
# "freeglut-devel: Requires: libGL-devel libGLU-devel" (#179464)
|
|
|
|
BuildRequires: freeglut-devel libGL-devel libGLU-devel
|
2004-12-08 16:40:10 +00:00
|
|
|
|
|
|
|
%description
|
|
|
|
This package contains an implementation of the image compression
|
|
|
|
standard JPEG-2000, Part 1. It consists of tools for conversion to and
|
|
|
|
from the JP2 and JPC formats.
|
|
|
|
|
|
|
|
%package devel
|
|
|
|
Summary: JPEG-2000 library developer files
|
|
|
|
Group: Development/Libraries
|
2005-10-17 16:04:07 +00:00
|
|
|
Requires: %{name} = %{version}-%{release}
|
2004-12-08 16:40:10 +00:00
|
|
|
Requires: libjpeg-devel
|
2005-03-03 21:56:40 +00:00
|
|
|
%description devel
|
2005-10-17 16:04:07 +00:00
|
|
|
%{summary}.
|
2004-12-08 16:40:10 +00:00
|
|
|
|
|
|
|
|
|
|
|
%prep
|
2006-03-01 16:30:23 +00:00
|
|
|
%setup -q -n %{name}-%{version}%{?geo:.GEO}
|
2004-12-08 16:40:10 +00:00
|
|
|
|
2006-01-31 16:11:35 +00:00
|
|
|
%patch1 -p1 -b .GL
|
2006-09-18 20:17:57 +00:00
|
|
|
%patch3 -p1 -b .memleak
|
2006-01-31 16:11:35 +00:00
|
|
|
|
2006-03-01 16:30:23 +00:00
|
|
|
%if "%{?geo:1}" == "1"
|
|
|
|
chmod +x configure configure.ac
|
2006-03-01 18:12:26 +00:00
|
|
|
%patch2 -p1 -b .GL-ac
|
2006-03-01 16:30:23 +00:00
|
|
|
libtoolize --force
|
|
|
|
aclocal
|
|
|
|
autoconf
|
|
|
|
autoheader
|
|
|
|
automake -a
|
|
|
|
%endif
|
|
|
|
|
2004-12-08 16:40:10 +00:00
|
|
|
|
|
|
|
%build
|
2006-03-01 16:30:23 +00:00
|
|
|
|
2004-12-08 16:40:10 +00:00
|
|
|
%configure \
|
2005-10-18 13:10:42 +00:00
|
|
|
--enable-shared \
|
2005-10-17 16:04:07 +00:00
|
|
|
--disable-static
|
2004-12-08 16:40:10 +00:00
|
|
|
|
2005-03-03 21:56:40 +00:00
|
|
|
make %{?_smp_mflags}
|
2004-12-08 16:40:10 +00:00
|
|
|
|
|
|
|
|
2006-01-31 16:11:35 +00:00
|
|
|
%check ||:
|
2005-10-18 13:10:42 +00:00
|
|
|
make check
|
|
|
|
|
|
|
|
|
2004-12-08 16:40:10 +00:00
|
|
|
%install
|
|
|
|
rm -rf $RPM_BUILD_ROOT
|
2005-10-17 16:04:07 +00:00
|
|
|
|
2005-03-03 21:56:40 +00:00
|
|
|
make install DESTDIR=$RPM_BUILD_ROOT
|
2004-12-08 16:40:10 +00:00
|
|
|
|
|
|
|
# Unpackaged files
|
|
|
|
rm -f doc/README
|
|
|
|
rm -f $RPM_BUILD_ROOT%{_bindir}/%{_target_platform}*
|
2005-10-17 16:04:07 +00:00
|
|
|
rm -f $RPM_BUILD_ROOT%{_libdir}/lib*.la
|
2004-12-08 16:40:10 +00:00
|
|
|
|
|
|
|
|
|
|
|
%files
|
2006-09-18 20:17:57 +00:00
|
|
|
%defattr(-,root,root,-)
|
2005-03-03 21:56:40 +00:00
|
|
|
%doc COPYRIGHT LICENSE NEWS README
|
2006-01-31 16:11:35 +00:00
|
|
|
%{_bindir}/imgcmp
|
|
|
|
%{_bindir}/jiv
|
|
|
|
%{_bindir}/imginfo
|
2006-03-01 16:30:23 +00:00
|
|
|
%{_bindir}/*jasper*
|
2004-12-08 16:40:10 +00:00
|
|
|
%{_libdir}/lib*.so.*
|
|
|
|
|
2005-03-03 21:56:40 +00:00
|
|
|
%files devel
|
2006-09-18 20:17:57 +00:00
|
|
|
%defattr(-,root,root,-)
|
2004-12-08 16:40:10 +00:00
|
|
|
%doc doc/*
|
2006-03-01 16:30:23 +00:00
|
|
|
%{_includedir}/jasper/
|
2004-12-08 16:40:10 +00:00
|
|
|
%{_libdir}/lib*.so
|
|
|
|
|
|
|
|
|
|
|
|
%post -p /sbin/ldconfig
|
2005-10-17 16:04:07 +00:00
|
|
|
|
2004-12-08 16:40:10 +00:00
|
|
|
%postun -p /sbin/ldconfig
|
|
|
|
|
|
|
|
|
|
|
|
%clean
|
|
|
|
rm -rf $RPM_BUILD_ROOT
|
|
|
|
|
|
|
|
|
2005-03-03 21:56:40 +00:00
|
|
|
%changelog
|
2006-10-04 19:21:42 +00:00
|
|
|
* Wed Oct 04 2006 Rex Dieter <rexdieter[AT]users.sf.net>
|
|
|
|
- respin
|
|
|
|
|
2006-09-18 20:49:57 +00:00
|
|
|
* Mon Sep 18 2006 Rex Dieter <rexdieter[AT]users.sf.net> 1.701.0-15
|
2006-09-18 20:17:57 +00:00
|
|
|
- memory leak (#207006)
|
|
|
|
|
2006-08-29 17:28:32 +00:00
|
|
|
* Tue Aug 29 2006 Rex Dieter <rexdieter[AT]users.sf.net> 1.701.0-13
|
|
|
|
- fc6 respin
|
|
|
|
|
2006-03-01 18:16:10 +00:00
|
|
|
* Wed Mar 1 2006 Rex Dieter <rexdieter[AT]users.sf.net> 1.701.0-12
|
2006-03-01 18:12:26 +00:00
|
|
|
- fixup build issues introduced by geojasper integration
|
|
|
|
|
2006-03-01 16:30:23 +00:00
|
|
|
* Wed Mar 1 2006 Rex Dieter <rexdieter[AT]users.sf.net> 1.701.0-10
|
|
|
|
- support/use geojasper (optional, default no)
|
|
|
|
- fc5: gcc/glibc respin
|
|
|
|
|
2006-02-10 13:56:56 +00:00
|
|
|
* Fri Feb 10 2006 Rex Dieter <rexdieter[AT]users.sf.net>
|
|
|
|
- fc5: gcc/glibc respin
|
|
|
|
|
2006-01-31 16:43:46 +00:00
|
|
|
* Tue Jan 31 2006 Rex Dieter <rexdieter[AT]users.sf.net> 1.701.0-9
|
|
|
|
- workaround "freeglut-devel should Requires: libGL-devel, libGLU-devel"
|
|
|
|
(#179464)
|
|
|
|
|
2006-01-31 16:11:35 +00:00
|
|
|
* Tue Jan 31 2006 Rex Dieter <rexdieter[AT]users.sf.net> 1.701.0-8
|
|
|
|
- revert jasper to jaspertool rename (#176773)
|
|
|
|
- actually use/apply GL patch
|
|
|
|
|
2005-10-18 13:10:42 +00:00
|
|
|
* Tue Oct 18 2005 Rex Dieter <rexdieter[AT]users.sf.net> 1.701.0-7
|
|
|
|
- GL patch to remove libGL dependancy (using only freeglut)
|
|
|
|
|
|
|
|
* Tue Oct 18 2005 Rex Dieter <rexdieter[AT]users.sf.net> 1.701.0-6
|
|
|
|
- token %%check section
|
|
|
|
- --enable-shared
|
|
|
|
|
2005-10-17 16:04:07 +00:00
|
|
|
* Mon Oct 17 2005 Rex Dieter <rexdieter[AT]users.sf.net> 1.701.0-5
|
|
|
|
- use %%{?dist}
|
2005-10-18 12:51:44 +00:00
|
|
|
- BR: libGL-devel
|
2005-10-17 16:04:07 +00:00
|
|
|
|
2005-04-06 22:12:02 +00:00
|
|
|
* Fri Apr 7 2005 Michael Schwendt <mschwendt[AT]users.sf.net>
|
|
|
|
- rebuilt
|
|
|
|
|
2004-12-08 16:40:10 +00:00
|
|
|
* Sat Oct 23 2004 Rex Dieter <rexdieter at sf.net> 0:1.701.0-0.fdr.3
|
|
|
|
- Capitalize summary
|
|
|
|
- remove 0-length ChangeLog
|
|
|
|
|
|
|
|
* Fri Jun 04 2004 Rex Dieter <rexdieter at sf.net> 0:1.701.0-0.fdr.2
|
|
|
|
- nuke .la file
|
|
|
|
- BR: glut-devel -> freeglut-devel
|
|
|
|
|
|
|
|
* Tue Jun 01 2004 Rex Dieter <rexdieter at sf.net> 0:1.701.0-0.fdr.1
|
|
|
|
- 1.701.0
|
|
|
|
|
|
|
|
* Tue Jun 01 2004 Rex Dieter <rexdieter at sf.net> 0:1.700.5-0.fdr.2
|
|
|
|
- avoid conflicts with fc'2 tomcat by renaming /usr/bin/jasper -> jaspertool
|
|
|
|
|
|
|
|
* Mon Mar 08 2004 Rex Dieter <rexdieter at sf.net> 0:1.700.5-0.fdr.1
|
|
|
|
- use Epochs.
|
|
|
|
- -devel: Requires: %%name = %%epoch:%%version
|
|
|
|
|
|
|
|
* Thu Jan 22 2004 Rex Dieter <rexdieter at sf.net> 1.700.5-0.fdr.0
|
|
|
|
- first try
|
|
|
|
|