diff options
author | João Felipe Santos <joao.eel@gmail.com> | 2010-05-29 02:02:16 -0500 |
---|---|---|
committer | Robby Workman <rworkman@slackbuilds.org> | 2010-05-29 02:02:16 -0500 |
commit | e32ff21dde3f9af7fb50087b3768cb02c526020f (patch) | |
tree | 43d54262f7353d30ac54d4bf05a624173c5c76e6 /libraries/matplotlib/matplotlib.SlackBuild | |
parent | 3d26ebd3ffb78b70e5875cb18092cb0835c94b2a (diff) |
libraries/matplotlib: Re-added and updated to 0.99.1.2.
Diffstat (limited to 'libraries/matplotlib/matplotlib.SlackBuild')
-rw-r--r-- | libraries/matplotlib/matplotlib.SlackBuild | 63 |
1 files changed, 63 insertions, 0 deletions
diff --git a/libraries/matplotlib/matplotlib.SlackBuild b/libraries/matplotlib/matplotlib.SlackBuild new file mode 100644 index 000000000000..36fe64f31f98 --- /dev/null +++ b/libraries/matplotlib/matplotlib.SlackBuild @@ -0,0 +1,63 @@ +#!/bin/sh + +# Slackware build script for matplotlib + +# Written by Aleksandar Samardzic <asamardzic@gmail.com> +# Updated to 0.99.1.2 by João Felipe Santos <joao.eel@gmail.com> +# Patch for libpng borrowed from Arch Linux + +PRGNAM=matplotlib +VERSION=${VERSION:-0.99.1.2} +BUILD=${BUILD:-1} +TAG=${TAG:-_SBo} + +TARBALL_VERSION=0.99.1.1 # Tarball dir has wrong version number + +# Automatically determine the architecture we're building on: +if [ -z "$ARCH" ]; then + case "$( uname -m )" in + i?86) ARCH=i486 ;; + arm*) ARCH=arm ;; + # Unless $ARCH is already set, use uname -m for all other archs: + *) ARCH=$( uname -m ) ;; + esac +fi + +CWD=$(pwd) +TMP=${TMP:-/tmp/SBo} +PKG=${PKG:-$TMP/package-$PRGNAM} +OUTPUT=${OUTPUT:-/tmp} + +set -e + +rm -rf $PKG +mkdir -p $TMP $PKG $OUTPUT +cd $TMP +rm -rf $PRGNAM-$TARBALL_VERSION +tar xvf $CWD/$PRGNAM-$VERSION.tar.gz +cd $PRGNAM-$TARBALL_VERSION +chown -R root:root . +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 {} \; + +patch -p1 < $CWD/libpng-1.4.patch + +python setup.py install --root $PKG + +find $PKG | xargs file | grep -e "executable" -e "shared object" | grep ELF \ + | cut -f 1 -d : | xargs strip --strip-unneeded 2> /dev/null || true + +mkdir -p $PKG/usr/doc/$PRGNAM-$VERSION +install -m 0644 \ + CHANGELOG INSTALL INTERACTIVE KNOWN_BUGS README.txt TODO \ + $PKG/usr/doc/$PRGNAM-$VERSION +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.${PKGTYPE:-tgz} |