2010-05-11 20:00:46 +02:00
|
|
|
#!/bin/sh
|
|
|
|
# Slackware build script for GDAL
|
2010-05-12 17:40:42 +02:00
|
|
|
# Written by Marco Cecchetti <mrc.ild@gmail.com>
|
2010-05-11 20:00:46 +02:00
|
|
|
|
|
|
|
PRGNAM=gdal
|
2010-05-12 17:40:42 +02:00
|
|
|
VERSION=1.6.0
|
2010-05-11 20:00:46 +02:00
|
|
|
ARCH=${ARCH:-i486}
|
2010-05-12 17:40:42 +02:00
|
|
|
BUILD=${BUILD:-1}
|
2010-05-11 20:00:46 +02:00
|
|
|
TAG=${TAG:-_SBo}
|
2010-05-12 17:40:42 +02:00
|
|
|
|
2010-05-11 20:00:46 +02:00
|
|
|
CWD=$(pwd)
|
|
|
|
TMP=${TMP:-/tmp/SBo}
|
|
|
|
PKG=$TMP/package-$PRGNAM
|
|
|
|
OUTPUT=${OUTPUT:-/tmp}
|
|
|
|
|
|
|
|
if [ "$ARCH" = "i486" ]; then
|
|
|
|
SLKCFLAGS="-O2 -march=i486 -mtune=i686"
|
|
|
|
elif [ "$ARCH" = "i686" ]; then
|
|
|
|
SLKCFLAGS="-O2 -march=i686 -mtune=i686"
|
2010-05-12 17:40:42 +02:00
|
|
|
elif [ "$ARCH" = "x86_64" ]; then
|
|
|
|
SLKCFLAGS="-O2"
|
2010-05-11 20:00:46 +02:00
|
|
|
fi
|
|
|
|
|
|
|
|
|
|
|
|
rm -rf $PKG
|
|
|
|
mkdir -p $TMP $PKG $OUTPUT
|
2010-05-12 17:40:42 +02:00
|
|
|
cd $TMP || exit 1
|
2010-05-11 20:00:46 +02:00
|
|
|
rm -rf $PRGNAM-$VERSION
|
2010-05-12 17:40:42 +02:00
|
|
|
tar xvf $CWD/$PRGNAM-$VERSION.tar.gz || exit 1
|
|
|
|
cd $PRGNAM-$VERSION || exit 1
|
2010-05-11 20:00:46 +02:00
|
|
|
chown -R root:root .
|
2010-05-12 17:40:42 +02:00
|
|
|
find . \
|
|
|
|
\( -perm 777 -o -perm 775 -o -perm 711 -o -perm 555 -o -perm 511 \) \
|
|
|
|
-exec chmod 755 {} \; -o \
|
|
|
|
\( -perm 666 -o -perm 664 -o -perm 600 -o -perm 444 -o -perm 440 -o -perm 400 \) \
|
|
|
|
-exec chmod 644 {} \;
|
2010-05-11 20:00:46 +02:00
|
|
|
|
|
|
|
CFLAGS="$SLKCFLAGS" \
|
|
|
|
CXXFLAGS="$SLKCFLAGS" \
|
|
|
|
./configure \
|
|
|
|
--prefix=/usr \
|
|
|
|
--sysconfdir=/etc \
|
|
|
|
--localstatedir=/var \
|
2010-05-12 17:40:42 +02:00
|
|
|
--with-threads \
|
|
|
|
--with-geos=yes \
|
|
|
|
--with-ogr=yes \
|
|
|
|
--with-libz=/usr/lib \
|
|
|
|
--with-libtiff=internal \
|
|
|
|
--with-hide-internal-symbols=yes \
|
|
|
|
--with-curl=/usr/bin/curl-config \
|
|
|
|
--without-grib \
|
|
|
|
--with-static-proj4 \
|
|
|
|
--build=$ARCH-slackware-linux \
|
|
|
|
--host=$ARCH-slackware-linux \
|
|
|
|
|| exit 1
|
|
|
|
|
|
|
|
make || exit 1
|
|
|
|
make install DESTDIR=$PKG || exit 1
|
2010-05-11 20:00:46 +02:00
|
|
|
|
|
|
|
( cd $PKG
|
|
|
|
find . | xargs file | grep "executable" | grep ELF | cut -f 1 -d : | xargs strip --strip-unneeded 2> /dev/null
|
|
|
|
find . | xargs file | grep "shared object" | grep ELF | cut -f 1 -d : | xargs strip --strip-unneeded 2> /dev/null
|
|
|
|
)
|
|
|
|
|
2010-05-12 17:40:42 +02:00
|
|
|
cp -a man/ $PKG/usr/
|
|
|
|
gzip -9 $PKG/usr/man/man?/* || exit 1
|
2010-05-11 20:00:46 +02:00
|
|
|
|
|
|
|
mkdir -p $PKG/usr/doc/$PRGNAM-$VERSION
|
2010-05-12 17:40:42 +02:00
|
|
|
cp -a COMMITERS HOWTO-RELEASE LICENSE.TXT NEWS PROVENANCE.TXT VERSION doc/* \
|
|
|
|
$PKG/usr/doc/$PRGNAM-$VERSION
|
2010-05-11 20:00:46 +02:00
|
|
|
cat $CWD/$PRGNAM.SlackBuild > $PKG/usr/doc/$PRGNAM-$VERSION/$PRGNAM.SlackBuild
|
|
|
|
|
|
|
|
mkdir -p $PKG/install
|
|
|
|
cat $CWD/slack-desc > $PKG/install/slack-desc
|
|
|
|
|
|
|
|
cd $PKG
|
|
|
|
/sbin/makepkg -l y -c n $OUTPUT/$PRGNAM-$VERSION-$ARCH-$BUILD$TAG.tgz
|