aboutsummaryrefslogtreecommitdiff
path: root/patches/libtiff
diff options
context:
space:
mode:
authorrhatto <rhatto@370017ae-e619-0410-ac65-c121f96126d4>2006-08-20 00:20:22 +0000
committerrhatto <rhatto@370017ae-e619-0410-ac65-c121f96126d4>2006-08-20 00:20:22 +0000
commit60efefed3c9c00420cdfbb177909cf5e5e25c847 (patch)
treee511abb57f4597e2e770b52a502819a68e9f5420 /patches/libtiff
parent3fd3493fb6cf4ac6d8d64e801a7f1597ab814340 (diff)
downloadslackbuilds-60efefed3c9c00420cdfbb177909cf5e5e25c847.tar.gz
slackbuilds-60efefed3c9c00420cdfbb177909cf5e5e25c847.tar.bz2
updated libtiff
git-svn-id: svn+slack://slack.fluxo.info/var/svn/slackbuilds@36 370017ae-e619-0410-ac65-c121f96126d4
Diffstat (limited to 'patches/libtiff')
-rwxr-xr-xpatches/libtiff/libtiff.SlackBuild110
1 files changed, 110 insertions, 0 deletions
diff --git a/patches/libtiff/libtiff.SlackBuild b/patches/libtiff/libtiff.SlackBuild
new file mode 100755
index 00000000..a9ee549d
--- /dev/null
+++ b/patches/libtiff/libtiff.SlackBuild
@@ -0,0 +1,110 @@
+#!/bin/bash
+#
+# got it from ftp://ftp.slackware.com/pub/slackware/slackware-10.2/patches/source/libtiff/libtiff.SlackBuild
+# small changes by rhatto
+#
+
+CWD="`pwd`"
+
+if [ -f "/etc/slackbuildrc" ]; then
+ source /etc/slackbuildrc
+fi
+
+if [ -f "~/.slackbuildrc" ]; then
+ source ~/.slackbuildrc
+fi
+
+# default settings
+PACKAGE="nano"
+ARCH=${ARCH:=x86_64}
+VERSION=${VERSION:=3.8.2}
+BUILD=${BUILD:=1rha}
+SRC_DIR=${SRC:=$CWD}
+TMP=${TMP:=/tmp}
+REPOS=${REPOS:=$TMP}
+
+LIBDIR=/usr/lib
+if [ "$ARCH" = "i386" ]; then
+ SLKCFLAGS="-O2 -march=i386 -mcpu=i686"
+elif [ "$ARCH" = "i486" ]; then
+ SLKCFLAGS="-O2 -march=i486 -mcpu=i686"
+elif [ "$ARCH" = "s390" ]; then
+ SLKCFLAGS="-O2"
+elif [ "$ARCH" = "x86_64" ]; then
+ SLKCFLAGS="-O2"
+ LIBDIR=/usr/lib64
+fi
+
+RTOOL="wget"
+PACKAGE_EXT="gz"
+SRC="$PACKAGE-$VERSION.tar.$PACKAGE_EXT"
+URL="ftp://ftp.remotesensing.org/pub/libtiff/$SRC"
+
+SRC_DIR="$SRC_DIR/$PACKAGE"
+mkdir -p $SRC_DIR
+
+if [ "$PACKAGE_EXT" == "bz2" ]; then
+ tarflag="j"
+else
+ tarflag="z"
+fi
+
+if [ "$RTOOL" == "wget" ] && [ ! -f "$SRC_DIR/$SRC" ]; then
+ wget "$URL" -O "$SRC_DIR/$SRC"
+fi
+
+TMP="$TMP/$PACKAGE"
+PKG="$TMP/package-$PACKAGE"
+rm -rf $TMP
+mkdir -p $TMP
+cd $TMP
+
+rm -rf tiff-$VERSION
+tar xjvf $SRC_DIR/tiff-$VERSION.tar.bz2
+cd tiff-$VERSION
+
+chown -R root:root .
+find . -perm 777 -exec chmod 755 {} \;
+find . -perm 664 -exec chmod 644 {} \;
+
+if [ "$VERSION" == "3.8.2" ]; then
+ zcat $SRC_DIR/tiff-3.8.2.goo-sec.diff.gz | patch -p1 --verbose || exit 1
+ zcat $SRC_DIR/tiff-3.8.2.tiffsplit.commandline.overflow.diff.gz | patch -p1 --verbose || exit 1
+fi
+
+CFLAGS="$SLKCFLAGS" \
+./configure \
+ --prefix=/usr \
+ --program-prefix="" \
+ --program-suffix="" \
+ --libdir=$LIBDIR \
+ $ARCH-slackware-linux
+
+make -j3 || exit 1
+make install DESTDIR=$PKG || exit 1
+rm -r $PKG/usr/share
+( 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/$LIBDIR/lib*.a
+chmod 755 $PKG/$LIBDIR/libtiff*.so.*
+chown -R root:bin $PKG/usr/bin
+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
+
+# I'd use that shiny new manpage script here but all the
+# .3 manpages end with '.3tiff'.
+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 $REPOS/libtiff-$VERSION-$ARCH-$BUILD.tgz
+