geotiff/geotiff.spec
Dirk Stoecker 135b51af12 Accepting request 829549 from home:dirkmueller:branches:Application:Geo
- update to 1.6.0:
  * Add support for OGC GeoTIFF 1.1
  * Expose GTIFGetPCSInfoEx(), GTIFGetProjTRFInfoEx(), GTIFGetGCSInfoEx(), GTIFGetDatumInfoEx(), GTIFGetEllipsoidInfoEx(), GTIFGetPMInfoEx(), GTIFGetUOMLengthInfoEx() and GTIFGetUOMAngleInfoEx() so that users can specify their own PROJ context
  * Add GTIFKeyGetASCII(), GTIFKeyGetSHORT() and GTIFKeyGetDOUBLE() as safer variants of GTIFKeyGet() with type checking
  * autotools build: enable build in a separate tree from source (#37) (fixes #28)
  * Use pkg-config for libtiff detection
  * GTIFDecToDMS(): fix rounding issue (refs #16)
  * geo_names.c: Silence warning in GetNameFromDatabase
  * cpl_serv.h: add parenthesis in macro definitions
  * Fix spelling errors
  * geo_normalize.c: set UOMLength from GeogLinearUnits (for geocentic CRS) (GDAL #1595)
  * testlistgeo: remove hardcoded path in test output (fixes https://github.com/OSGeo/libgeotiff/issues/16#issuecomment-502267406)
  * Adapt test script for PROJ 6.2 EPSG database (fixes #22)
  * Use unix EOL for cmake related files (fixes #14)
  * configure.ac: drop dead code
  * geo_normalize.c: avoid look up of user-defined geokeys that cause PROJ warnings (fixes GDAL #2321)
  * listgeo: fix corner coordinates for images with RasterPixelIsPoint (#36)

OBS-URL: https://build.opensuse.org/request/show/829549
OBS-URL: https://build.opensuse.org/package/show/Application:Geo/geotiff?expand=0&rev=27
2020-08-25 14:16:58 +00:00

149 lines
4.1 KiB
RPMSpec

#
# spec file for package geotiff
#
# Copyright (c) 2020 SUSE LLC
#
# All modifications and additions to the file contributed by third parties
# remain the property of their copyright owners, unless otherwise agreed
# upon. The license for this file, and modifications and additions to the
# file, is the same license as for the pristine package itself (unless the
# license for the pristine package is not an Open Source License, in which
# case the license is the MIT License). An "Open Source License" is a
# license that conforms to the Open Source Definition (Version 1.9)
# published by the Open Source Initiative.
# Please submit bugfixes or comments via https://bugs.opensuse.org/
#
%define sover 5
%define libname lib%{name}%{sover}
Name: geotiff
Version: 1.6.0
Release: 0
Summary: Library to handle georeferenced TIFF
License: MIT AND SUSE-Public-Domain
Group: Productivity/Scientific/Other
URL: https://github.com/OSGeo/libgeotiff
Source0: https://download.osgeo.org/%{name}/lib%{name}/lib%{name}-%{version}.tar.gz
# UPSTREAM Patch (geotif) to be used with gdal 2.4.1
# Patch0: https://github.com/OSGeo/libgeotiff/commit/f4956251.patch
BuildRequires: gcc-c++
BuildRequires: libjpeg-devel
BuildRequires: pkgconfig
BuildRequires: pkgconfig(libtiff-4)
BuildRequires: pkgconfig(proj) >= 6.0
BuildRequires: pkgconfig(zlib)
%description
This library is designed to permit the extraction and parsing of the
"GeoTIFF" Key directories, as well as definition and installation of
GeoTIFF keys in new files.
%package devel
Summary: GeoTIFF header files
Group: Development/Libraries/C and C++
Requires: %{libname} = %{version}
Requires: pkgconfig(libtiff-4)
Requires: pkgconfig(proj) >= 6.0
Provides: lib%{name}-devel = %{version}
%description devel
Header files for GeoTIFF library.
This library is designed to permit the extraction and parsing of the
"GeoTIFF" Key directories, as well as definition and installation of
GeoTIFF keys in new files.
%package -n %{libname}
Summary: Shared libraries for GeoTIFF library
Group: System/Libraries
%description -n %{libname}
Shared libraries for GeoTIFF library.
This library is designed to permit the extraction and parsing of the
"GeoTIFF" Key directories, as well as definition and installation of
GeoTIFF keys in new files.
%prep
%setup -q -n lib%{name}-%{version}
#%%autopatch -p2
for f in `find . -type f`
do
if file $f | grep -q CRLF ; then
echo "Fix line ends for $f"
set -x
sed -i -e 's|\r||g' $f
set +x
fi
done
%build
export CFLAGS="%{optflags} $CFLAGS -g -fstack-protector -fno-strict-aliasing -D _BSD_SOURCE"
export CXXFLAGS="%{optflags} $CXXFLAGS -g -fstack-protector -fno-strict-aliasing"
%configure \
--prefix=%{_prefix} \
--includedir=%{_includedir}/lib%{name} \
--with-proj \
--with-jpeg \
--with-zip \
--with-pic \
--enable-static=no \
--enable-debug=yes
make %{?_smp_mflags}
%install
%make_install
# install pkgconfig file
cat > libgeotiff.pc <<EOF
prefix=%{_prefix}
exec_prefix=%{_prefix}
libdir=%{_libdir}
includedir=%{_includedir}/lib%{name}
Name: %{libname}
Version: %{version}
Description: GeoTIFF file format library
Libs: -L%{_libdir} -l%{name}
Cflags: -I%{_includedir}/lib%{name}
EOF
install -Dpm 0644 lib%{name}.pc \
%{buildroot}%{_libdir}/pkgconfig/lib%{name}.pc
# do not ship la files
find %{buildroot} -type f -name "*.la" -delete -print
%post -n %{libname} -p /sbin/ldconfig
%postun -n %{libname} -p /sbin/ldconfig
%files
%license LICENSE COPYING
%doc ChangeLog README NEWS
%{_bindir}/geotifcp
%{_bindir}/listgeo
%{_bindir}/applygeo
%{_mandir}/man1/listgeo.1%{?ext_man}
%{_mandir}/man1/applygeo.1%{?ext_man}
%{_mandir}/man1/geotifcp.1%{?ext_man}
%files -n %{libname}
%license LICENSE COPYING
%doc ChangeLog README NEWS
%{_libdir}/lib%{name}.so.%{sover}*
%files devel
%defattr(0644,root,root,0755)
%license LICENSE COPYING
%doc ChangeLog README NEWS
%dir %{_includedir}/lib%{name}
%{_includedir}/lib%{name}/*.h
%{_includedir}/lib%{name}/*.inc
%{_libdir}/lib%{name}.so
%{_libdir}/pkgconfig/lib%{name}.pc
%changelog