gis/gdal: Updated for version 3.3.0.
Signed-off-by: Benjamin Trigona-Harany <slackbuilds@jaxartes.net> Signed-off-by: Willy Sudiarto Raharjo <willysr@slackbuilds.org>
This commit is contained in:
parent
8b22be9310
commit
3ebf2e75e3
|
@ -10,7 +10,8 @@ provides a similar capability for simple features vector data.
|
|||
|
||||
The following optional requirements are detected automatically:
|
||||
|
||||
freexl, hdf, hdf5, libkml, netcdf, postgresql, xerces-c
|
||||
freexl, hdf, hdf5, libkml, netcdf, postgresql, xerces-c,
|
||||
libspatialite, SFCGAL
|
||||
|
||||
To enable OpenCL GPU-accelerated performance, specify the option
|
||||
OPENCL=yes (requires either nvidia-driver or amd-app-sdk with
|
||||
|
|
|
@ -26,7 +26,7 @@
|
|||
# Maintained by David Spencer <baildon.research@googlemail.com>
|
||||
|
||||
PRGNAM=gdal
|
||||
VERSION=${VERSION:-3.2.2}
|
||||
VERSION=${VERSION:-3.3.0}
|
||||
BUILD=${BUILD:-1}
|
||||
TAG=${TAG:-_SBo}
|
||||
|
||||
|
@ -86,14 +86,9 @@ if pkg-config --exists libwebp; then
|
|||
WITHLIST+=" --with-webp"
|
||||
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,
|
||||
# if you promise to be careful :-)
|
||||
# Spatialite support if package is installed:
|
||||
if pkg-config --exists spatialite; then
|
||||
if [ ${SPATIALITE:-no} = "yes" ]; then
|
||||
WITHLIST+=" --with-spatialite"
|
||||
fi
|
||||
WITHLIST+=" --with-spatialite"
|
||||
fi
|
||||
|
||||
# Also, enabling Grass support in gdal introduces a circular dependency,
|
||||
|
@ -130,6 +125,7 @@ CXXFLAGS="$SLKCFLAGS" \
|
|||
--with-libz=/usr/lib${LIBDIRSUFFIX} \
|
||||
--with-liblzma \
|
||||
--with-curl=/usr/bin/curl-config \
|
||||
--with-crypto=yes \
|
||||
--without-grib \
|
||||
--with-static-proj4 \
|
||||
--with-mysql \
|
||||
|
|
|
@ -1,8 +1,8 @@
|
|||
PRGNAM="gdal"
|
||||
VERSION="3.2.2"
|
||||
VERSION="3.3.0"
|
||||
HOMEPAGE="https://www.gdal.org/"
|
||||
DOWNLOAD="https://download.osgeo.org/gdal/3.2.2/gdal-3.2.2.tar.xz"
|
||||
MD5SUM="c656be582f7beb528c66486cd1fca7a2"
|
||||
DOWNLOAD="https://download.osgeo.org/gdal/3.3.0/gdal-3.3.0.tar.xz"
|
||||
MD5SUM="000db27a7b3e146b9dcb3838aabde2ab"
|
||||
DOWNLOAD_x86_64=""
|
||||
MD5SUM_x86_64=""
|
||||
REQUIRES="geos proj"
|
||||
|
|
Loading…
Reference in New Issue