#!/bin/sh
CWD=`pwd`
TMP=/tmp
PKG=$TMP/package-libtiff
VERSION=3.7.0
ARCH=alpha
BUILD=1
TARGET=$ARCH-alphaslack-linux


rm -rf $PKG
mkdir -p $PKG
( cd $TMP
rm -rf tiff-$VERSION
tar xjf $CWD/tiff-$VERSION.tar.bz2
cd tiff-$VERSION
# tiff-3.7.0 ships with a broken libtool (well, ltmain.sh from which
# libtool is generated) that builds improperly named shared libraries.
# This patch updates it to a working revision.
zcat $CWD/tiff.ltmain.diff.gz | patch -p1 --verbose
chown -R root.root .
find . -perm 777 -exec chmod 755 {} \;
find . -perm 664 -exec chmod 644 {} \;
./configure \
  --prefix=/usr \
  --disable-jpeg \
  --program-prefix="" \
  --program-suffix="" \
  $TARGET
make
make install DESTDIR=$PKG
chown -R root.bin $PKG/usr/bin
( 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
)
strip -g $PKG/usr/lib/libtiff.a
chmod 755 $PKG/usr/lib/libtiff.so.*
mkdir -p $PKG/usr/doc/libtiff-$VERSION
cp -a COPYRIGHT README RELEASE-DATE TODO VERSION $PKG/usr/doc/libtiff-$VERSION
#mv $PKG/usr/local/man $PKG/usr
#rmdir $PKG/usr/local
gzip -9 $PKG/usr/man/man?/*
mkdir -p $PKG/install
cat $CWD/slack-desc > $PKG/install/slack-desc
cd $PKG
makepkg -l y -c n ../libtiff-$VERSION-$ARCH-$BUILD.tgz
) 2>&1 | tee $TMP/libtiff.build.log
