2014-04-16 23:10:30 +00:00
|
|
|
# $Id$
|
2014-12-22 16:08:04 +00:00
|
|
|
# Maintainer: Jaroslav Lichtblau <svetlemodry@archlinux.org>
|
2014-04-16 23:10:30 +00:00
|
|
|
# Contributor: dibblethewrecker dibblethewrecker.at.jiwe.dot.org
|
|
|
|
# Contributor: William Rea <sillywilly@gmail.com>
|
|
|
|
|
|
|
|
# ALARM: Kevin Mihelich <kevin@archlinuxarm.org>
|
|
|
|
# - drop poppler, currently breaks build
|
|
|
|
# - use uname in path in removing rpath in packaging
|
|
|
|
|
|
|
|
pkgname=gdal
|
2017-08-06 16:48:20 +00:00
|
|
|
pkgver=2.2.1
|
|
|
|
pkgrel=1
|
2014-04-16 23:10:30 +00:00
|
|
|
pkgdesc="A translator library for raster geospatial data formats"
|
|
|
|
arch=('i686' 'x86_64')
|
|
|
|
url="http://www.gdal.org/"
|
|
|
|
license=('custom')
|
2015-10-06 23:32:06 +00:00
|
|
|
depends=('curl' 'geos' 'giflib' 'hdf5' 'libgeotiff' 'libjpeg-turbo' 'libpng' 'libspatialite' 'libtiff' 'netcdf'
|
2015-09-17 23:01:48 +00:00
|
|
|
'python2' 'python2-numpy' 'cfitsio' 'sqlite' 'libmariadbclient' 'postgresql-libs')
|
2014-04-16 23:10:30 +00:00
|
|
|
makedepends=('perl' 'swig' 'chrpath' 'doxygen')
|
|
|
|
optdepends=('postgresql: postgresql database support'
|
|
|
|
'mariadb: mariadb database support'
|
2014-11-10 20:55:50 +00:00
|
|
|
'perl: perl binding support')
|
2015-09-17 23:01:48 +00:00
|
|
|
options=('!emptydirs')
|
2014-04-16 23:10:30 +00:00
|
|
|
changelog=$pkgname.changelog
|
2016-05-22 21:05:03 +00:00
|
|
|
source=(http://download.osgeo.org/${pkgname}/${pkgver}/${pkgname}-${pkgver}.tar.xz)
|
2017-08-06 16:48:20 +00:00
|
|
|
sha256sums=('927098d54083ac919a497f787b835b099e9a194f2e5444dbff901f7426b86066')
|
2014-04-16 23:10:30 +00:00
|
|
|
|
|
|
|
prepare() {
|
2014-12-22 16:08:04 +00:00
|
|
|
cd "${srcdir}"/$pkgname-$pkgver
|
2014-06-14 19:55:23 +00:00
|
|
|
|
2014-04-16 23:10:30 +00:00
|
|
|
# python2 fixes
|
|
|
|
sed -i 's_python python1.5_python2 python python1.5_' configure
|
|
|
|
for file in swig/python/{,osgeo/,samples/,scripts/}*.py; do
|
|
|
|
sed -i 's_#!/usr/bin/env python_#!/usr/bin/env python2_' $file
|
|
|
|
done
|
|
|
|
|
|
|
|
# Fix mandir
|
|
|
|
sed -i "s|^mandir=.*|mandir='\${prefix}/share/man'|" configure
|
|
|
|
}
|
|
|
|
|
|
|
|
build() {
|
2014-12-22 16:08:04 +00:00
|
|
|
cd "${srcdir}"/$pkgname-$pkgver
|
2014-04-16 23:10:30 +00:00
|
|
|
export CFLAGS="$CFLAGS -fno-strict-aliasing"
|
|
|
|
|
2014-10-03 12:38:58 +00:00
|
|
|
# bug #23654
|
2014-04-16 23:10:30 +00:00
|
|
|
export LDFLAGS="$LDFLAGS -Wl,--as-needed"
|
|
|
|
|
|
|
|
./configure --prefix=/usr --with-netcdf --with-libtiff --with-sqlite3 \
|
2015-09-17 23:01:48 +00:00
|
|
|
--with-geotiff --with-mysql --with-python --with-curl --with-hdf5 \
|
|
|
|
--with-perl --with-geos --with-png --with-spatialite
|
2014-04-16 23:10:30 +00:00
|
|
|
|
|
|
|
# workaround for bug #13646
|
|
|
|
sed -i 's/PY_HAVE_SETUPTOOLS=1/PY_HAVE_SETUPTOOLS=/g' ./GDALmake.opt
|
|
|
|
sed -i 's/EXE_DEP_LIBS/KILL_EXE_DEP_LIBS/' apps/GNUmakefile
|
|
|
|
|
|
|
|
make
|
|
|
|
make man
|
|
|
|
}
|
|
|
|
|
|
|
|
package () {
|
2014-12-22 16:08:04 +00:00
|
|
|
cd "${srcdir}"/$pkgname-$pkgver
|
2014-04-16 23:10:30 +00:00
|
|
|
make DESTDIR="${pkgdir}" install
|
|
|
|
make DESTDIR="${pkgdir}" install-man
|
|
|
|
|
|
|
|
# install license
|
2015-09-17 23:01:48 +00:00
|
|
|
install -Dm644 LICENSE.TXT "${pkgdir}"/usr/share/licenses/${pkgname}/LICENSE
|
2014-04-16 23:10:30 +00:00
|
|
|
|
2017-08-06 16:48:20 +00:00
|
|
|
#FS15477 clean up junks - still present in 2.2.1
|
2014-04-16 23:10:30 +00:00
|
|
|
rm -f "${pkgdir}"/usr/share/man/man1/_build_gdal_src_gdal-${pkgver}_apps_.1
|
|
|
|
|
|
|
|
# Remove RPATH
|
|
|
|
chrpath --delete "${pkgdir}"/usr/lib/perl5/$(uname -m)-linux-thread-multi/auto/Geo/OSR/OSR.so
|
|
|
|
chrpath --delete "${pkgdir}"/usr/lib/perl5/$(uname -m)-linux-thread-multi/auto/Geo/OGR/OGR.so
|
|
|
|
chrpath --delete "${pkgdir}"/usr/lib/perl5/$(uname -m)-linux-thread-multi/auto/Geo/GDAL/GDAL.so
|
|
|
|
chrpath --delete "${pkgdir}"/usr/lib/perl5/$(uname -m)-linux-thread-multi/auto/Geo/GDAL/Const/Const.so
|
2017-08-03 01:40:54 +00:00
|
|
|
chrpath --delete "${pkgdir}"/usr/lib/perl5/$(uname -m)-linux-thread-multi/auto/Geo/GNM/GNM.so
|
2014-04-16 23:10:30 +00:00
|
|
|
}
|