auto-import changelog data from libtiff-3.5.7-2.src.rpm
Mon Feb 25 2002 Phil Knirsch <pknirsch@redhat.com> - Fixed problem with newer bash versions setting CDPATH (#59741) Tue Feb 19 2002 Phil Knirsch <pknirsch@redhat.com> - Update to current release 3.5.7 Wed Jan 09 2002 Tim Powers <timp@redhat.com> - automated rebuild
This commit is contained in:
parent
3bc646e380
commit
6e46353a24
@ -1 +1 @@
|
|||||||
tiff-v3.5.5.tar.gz
|
tiff-v3.5.7.tar.gz
|
||||||
|
35
libtiff.spec
35
libtiff.spec
@ -1,7 +1,7 @@
|
|||||||
Summary: A library of functions for manipulating TIFF format image files.
|
Summary: A library of functions for manipulating TIFF format image files.
|
||||||
Name: libtiff
|
Name: libtiff
|
||||||
Version: 3.5.5
|
Version: 3.5.7
|
||||||
Release: 13
|
Release: 2
|
||||||
Copyright: distributable
|
Copyright: distributable
|
||||||
Group: System Environment/Libraries
|
Group: System Environment/Libraries
|
||||||
Source0: http://www.libtiff.org/tiff-v%{version}.tar.gz
|
Source0: http://www.libtiff.org/tiff-v%{version}.tar.gz
|
||||||
@ -10,9 +10,7 @@ Patch1: libtiff-v3.4-arm.patch
|
|||||||
Patch2: libtiff-v3.5.4-codecs.patch
|
Patch2: libtiff-v3.5.4-codecs.patch
|
||||||
Patch3: libtiff-v3.5.4-mandir.patch
|
Patch3: libtiff-v3.5.4-mandir.patch
|
||||||
Patch4: libtiff-v3.5.5-buildroot.patch
|
Patch4: libtiff-v3.5.5-buildroot.patch
|
||||||
Patch5: libtiff-v3.5.5-test.patch
|
Patch5: libtiff-v3.5.5-64bit.patch
|
||||||
Patch6: libtiff-v3.5.5-steve.patch
|
|
||||||
Patch7: libtiff-v3.5.5-64bit.patch
|
|
||||||
URL: http://www.libtiff.org/
|
URL: http://www.libtiff.org/
|
||||||
BuildRoot: %{_tmppath}/%{name}-root
|
BuildRoot: %{_tmppath}/%{name}-root
|
||||||
BuildRequires: zlib-devel zlib libjpeg-devel libjpeg
|
BuildRequires: zlib-devel zlib libjpeg-devel libjpeg
|
||||||
@ -21,8 +19,8 @@ Requires: zlib libjpeg
|
|||||||
|
|
||||||
%description
|
%description
|
||||||
The libtiff package contains a library of functions for manipulating
|
The libtiff package contains a library of functions for manipulating
|
||||||
TIFF (Tagged Image File Format) image format files. TIFF is a widely
|
TIFF (Tagged Image File Format) image format files. TIFF is a widely
|
||||||
used file format for bitmapped images. TIFF files usually end in the
|
used file format for bitmapped images. TIFF files usually end in the
|
||||||
.tif extension and they are often quite large.
|
.tif extension and they are often quite large.
|
||||||
|
|
||||||
The libtiff package should be installed if you need to manipulate TIFF
|
The libtiff package should be installed if you need to manipulate TIFF
|
||||||
@ -39,8 +37,8 @@ developing programs which will manipulate TIFF format image files
|
|||||||
using the libtiff library.
|
using the libtiff library.
|
||||||
|
|
||||||
If you need to develop programs which will manipulate TIFF format
|
If you need to develop programs which will manipulate TIFF format
|
||||||
image files, you should install this package. You also need to install
|
image files, you should install this package. You'll also need to
|
||||||
the libtiff package.
|
install the libtiff package.
|
||||||
|
|
||||||
%prep
|
%prep
|
||||||
%setup -q -n tiff-v%{version}
|
%setup -q -n tiff-v%{version}
|
||||||
@ -49,13 +47,14 @@ the libtiff package.
|
|||||||
%patch2 -p1 -b .codecs
|
%patch2 -p1 -b .codecs
|
||||||
%patch3 -p1 -b .mandir
|
%patch3 -p1 -b .mandir
|
||||||
%patch4 -p1 -b .buildroot
|
%patch4 -p1 -b .buildroot
|
||||||
%patch5 -p1 -b .test
|
%patch5 -p1 -b .64bit
|
||||||
%patch6 -p1 -b .steve
|
|
||||||
%patch7 -p1 -b .64bit
|
|
||||||
find . -type d -name CVS | xargs -r rm -frv
|
find . -type d -name CVS | xargs -r rm -frv
|
||||||
|
|
||||||
%build
|
%build
|
||||||
|
|
||||||
|
# Fixes problem with newer bash versions and doesn't hurt older ones.
|
||||||
|
CDPATH=""
|
||||||
|
unset CDPATH
|
||||||
./configure --target=%{_target_platform} << EOF
|
./configure --target=%{_target_platform} << EOF
|
||||||
no
|
no
|
||||||
%{_bindir}
|
%{_bindir}
|
||||||
@ -69,7 +68,8 @@ EOF
|
|||||||
cd libtiff
|
cd libtiff
|
||||||
ln -s libtiff.so.%{LIBVER} libtiff.so
|
ln -s libtiff.so.%{LIBVER} libtiff.so
|
||||||
cd ..
|
cd ..
|
||||||
make LDOPTS="-s"
|
export LDOPTS=-s
|
||||||
|
make
|
||||||
|
|
||||||
%install
|
%install
|
||||||
[ "$RPM_BUILD_DIR" ] && rm -fr $RPM_BUILD_ROOT
|
[ "$RPM_BUILD_DIR" ] && rm -fr $RPM_BUILD_ROOT
|
||||||
@ -103,6 +103,15 @@ rm -rf $RPM_BUILD_ROOT
|
|||||||
%{_mandir}/man3/*
|
%{_mandir}/man3/*
|
||||||
|
|
||||||
%changelog
|
%changelog
|
||||||
|
* Mon Feb 25 2002 Phil Knirsch <pknirsch@redhat.com>
|
||||||
|
- Fixed problem with newer bash versions setting CDPATH (#59741)
|
||||||
|
|
||||||
|
* Tue Feb 19 2002 Phil Knirsch <pknirsch@redhat.com>
|
||||||
|
- Update to current release 3.5.7
|
||||||
|
|
||||||
|
* Wed Jan 09 2002 Tim Powers <timp@redhat.com>
|
||||||
|
- automated rebuild
|
||||||
|
|
||||||
* Tue Aug 28 2001 Phil Knirsch <phil@redhat.de>
|
* Tue Aug 28 2001 Phil Knirsch <phil@redhat.de>
|
||||||
- Fixed ia64 problem with tiffinfo. Was general 64 bit arch problem where s390x
|
- Fixed ia64 problem with tiffinfo. Was general 64 bit arch problem where s390x
|
||||||
and ia64 were missing (#52129).
|
and ia64 were missing (#52129).
|
||||||
|
Loading…
Reference in New Issue
Block a user