From ed2d8bfcf93a7c4339f08d55fa51d2d2fa48eb8f Mon Sep 17 00:00:00 2001 From: David Spencer Date: Thu, 24 Sep 2015 21:42:07 +0100 Subject: gis/gdal: Updated for version 1.11.3. Signed-off-by: David Spencer --- gis/gdal/gdal.SlackBuild | 15 ++++++++++----- 1 file changed, 10 insertions(+), 5 deletions(-) (limited to 'gis/gdal/gdal.SlackBuild') diff --git a/gis/gdal/gdal.SlackBuild b/gis/gdal/gdal.SlackBuild index a18220fec6..26d1206b96 100644 --- a/gis/gdal/gdal.SlackBuild +++ b/gis/gdal/gdal.SlackBuild @@ -24,7 +24,7 @@ # Maintained by David Spencer PRGNAM=gdal -VERSION=${VERSION:-1.11.2} +VERSION=${VERSION:-1.11.3} BUILD=${BUILD:-1} TAG=${TAG:-_SBo} @@ -106,9 +106,9 @@ fi # and libtiff, but this can cause segfaults in other software linked against # the real libjpeg (eg. qgis calling qt). Enable JPEG12 only if you need it: if [ ${JPEG12:-no} = "yes" ]; then - WITHLIST+=" --with-jpeg=internal --with-libtiff=internal" + WITHLIST+=" --with-jpeg=internal" else - WITHLIST+=" --with-jpeg=/usr/lib${LIBDIRSUFFIX} --with-libtiff=/usr/lib${LIBDIRSUFFIX}" + WITHLIST+=" --with-jpeg=/usr/lib${LIBDIRSUFFIX}" fi # Thanks to the people at Arch for this: @@ -135,6 +135,10 @@ CXXFLAGS="$SLKCFLAGS" \ --with-mysql \ --with-python \ --with-poppler \ + --with-libtiff=internal \ + --with-rename-internal-libtiff-symbols=yes \ + --with-geotiff=internal \ + --with-rename-internal-libgeotiff-symbols=yes \ $WITHLIST \ --build=$ARCH-slackware-linux @@ -144,12 +148,13 @@ make install DESTDIR=$PKG # Kill erroneously installed .dox files rm $PKG/usr/bin/*.dox -find $PKG | xargs file | grep -e "executable" -e "shared object" | grep ELF \ +find $PKG -print0 | xargs -0 file | grep -e "executable" -e "shared object" | grep ELF \ | cut -f 1 -d : | xargs strip --strip-unneeded 2> /dev/null || true make -f GNUmakefile -B man make install-man DESTDIR=$PKG -gzip -9 $PKG/usr/man/man?/* || exit 1 +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 :-( -- cgit v1.2.3