summaryrefslogtreecommitdiffstats
path: root/gis/gdal/gdal.SlackBuild
diff options
context:
space:
mode:
author David Spencer2018-05-19 23:43:27 +0200
committer Willy Sudiarto Raharjo2018-05-20 03:35:09 +0200
commitc97bd17ac886c33fb90b3954945e2c3b07907acc (patch)
treeaa077f38d3063d85f289fe4a8c3f6f55326a3514 /gis/gdal/gdal.SlackBuild
parent0d0cf9629d386a3ebe06b96f6b801d258f8ef403 (diff)
downloadslackbuilds-c97bd17ac886c33fb90b3954945e2c3b07907acc.tar.gz
gis/gdal: Updated for version 2.2.4.
The update to version 2.3.0 broke lots of dependent packages that don't use c++11. Sorry! This reverts commit 92f5754b90444345b6da5f5c3b0d851a6e23f463. Signed-off-by: David Spencer <idlemoor@slackbuilds.org>
Diffstat (limited to 'gis/gdal/gdal.SlackBuild')
-rw-r--r--gis/gdal/gdal.SlackBuild22
1 files changed, 10 insertions, 12 deletions
diff --git a/gis/gdal/gdal.SlackBuild b/gis/gdal/gdal.SlackBuild
index d0e34fb3c4..2973ebf43c 100644
--- a/gis/gdal/gdal.SlackBuild
+++ b/gis/gdal/gdal.SlackBuild
@@ -25,7 +25,7 @@
# Maintained by David Spencer <baildon.research@googlemail.com>
PRGNAM=gdal
-VERSION=${VERSION:-2.3.0}
+VERSION=${VERSION:-2.2.4}
BUILD=${BUILD:-1}
TAG=${TAG:-_SBo}
@@ -71,23 +71,20 @@ find -L . \
\( -perm 666 -o -perm 664 -o -perm 640 -o -perm 600 -o -perm 444 \
-o -perm 440 -o -perm 400 \) -exec chmod 644 {} \;
-# zstd, webp, OpenCL, Spatialite, Grass support via $WITHLIST
-# (everything else is handled automatically by configure)
+# OpenCL, webp, Spatialite and Grass support need special arrangements.
+# Everything else is handled automatically by configure.
WITHLIST=""
-if pkg-config --exists zstd; then
- WITHLIST+=" --with-zstd"
+# Request OpenCL support:
+if [ ${OPENCL:-no} = "yes" ]; then
+ WITHLIST+=" --with-opencl"
fi
+# Request webp support if it's installed:
if pkg-config --exists libwebp; then
WITHLIST+=" --with-webp"
fi
-# OpenCL support if requested:
-if [ ${OPENCL:-no} = "yes" ]; then
- WITHLIST+=" --with-opencl"
-fi
-
# Spatialite support in gdal optionally has a circular dependency
# via the postgis 'liblwgeom' library (postgis depends on gdal).
# Here is an undocumented option to request Spatialite support,
@@ -131,7 +128,7 @@ CXXFLAGS="$SLKCFLAGS" \
--with-liblzma \
--with-curl=/usr/bin/curl-config \
--without-grib \
- --with-proj \
+ --with-static-proj4 \
--with-mysql \
--with-python \
--with-poppler \
@@ -163,9 +160,10 @@ find $PKG/usr/man -type f -exec gzip -9 {} \;
for i in $( find $PKG/usr/man -type l ) ; do ln -s $( readlink $i ).gz $i.gz ; rm $i ; done
make -f GNUmakefile -B docs
+# --docdir is ignored :-(
make install-docs DESTDIR=$PKG INST_DOCS=/usr/doc/$PRGNAM-$VERSION
cp -a \
- COMMITTERS HOWTO-RELEASE LICENSE.TXT MIGRATION_GUIDE.TXT NEWS PROVENANCE.TXT VERSION \
+ COMMITERS HOWTO-RELEASE LICENSE.TXT NEWS PROVENANCE.TXT VERSION \
$PKG/usr/doc/$PRGNAM-$VERSION
cat $CWD/$PRGNAM.SlackBuild > $PKG/usr/doc/$PRGNAM-$VERSION/$PRGNAM.SlackBuild