summaryrefslogtreecommitdiffstats
path: root/graphics/hugin/hugin.SlackBuild
diff options
context:
space:
mode:
author dsomero <xgizzmo@gmail.com>2010-05-20 20:44:06 -0400
committer David Somero <xgizzmo@slackbuilds.org>2010-05-21 00:32:31 -0500
commit0be1aece9c5581594b397efcccdbbccabb5ae885 (patch)
tree38ae78aa481cf2c50ce97e31314289ad5b0b935b /graphics/hugin/hugin.SlackBuild
parentcc7220b1b8f5c33535a0c6f11469bf261d26c21b (diff)
downloadslackbuilds-0be1aece9c5581594b397efcccdbbccabb5ae885.tar.gz
slackbuilds-0be1aece9c5581594b397efcccdbbccabb5ae885.tar.xz
graphics/hugin: Removed (build failure)
This appears related to libpng14
Diffstat (limited to 'graphics/hugin/hugin.SlackBuild')
-rw-r--r--graphics/hugin/hugin.SlackBuild86
1 files changed, 0 insertions, 86 deletions
diff --git a/graphics/hugin/hugin.SlackBuild b/graphics/hugin/hugin.SlackBuild
deleted file mode 100644
index c12131f9e6..0000000000
--- a/graphics/hugin/hugin.SlackBuild
+++ /dev/null
@@ -1,86 +0,0 @@
-#!/bin/sh
-#
-# Slackware build script for Hugin
-#
-# Copyright 2009-2010 Erik W. Hanson, Minneapolis, MN, USA
-# All rights reserved.
-#
-# Redistribution and use of this script, with or without modification, is
-# permitted provided that the following conditions are met:
-#
-# 1. Redistributions of this script must retain the above copyright
-# notice, this list of conditions and the following disclaimer.
-#
-# THIS SOFTWARE IS PROVIDED BY THE AUTHOR ''AS IS'' AND ANY EXPRESS OR IMPLIED
-# WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
-# MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO
-# EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
-# SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
-# PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS;
-# OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY,
-# WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR
-# OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF
-# ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
-
-set -eu
-
-PRGNAM=hugin
-VERSION=2009.4.0
-ARCH=${ARCH:-i486}
-BUILD=${BUILD:-1}
-TAG=${TAG:-_SBo}
-
-CWD=$(pwd)
-TMP=${TMP:-/tmp/SBo}
-PKG=$TMP/package-$PRGNAM
-OUTPUT=${OUTPUT:-/tmp}
-
-if [ "$ARCH" = "i486" ]; then
- SLKCFLAGS="-O2 -march=i486 -mtune=i686"
- LIBDIRSUFFIX=""
-elif [ "$ARCH" = "i686" ]; then
- SLKCFLAGS="-O2 -march=i686 -mtune=i686"
- LIBDIRSUFFIX=""
-elif [ "$ARCH" = "x86_64" ]; then
- SLKCFLAGS="-O2 -fPIC"
- LIBDIRSUFFIX="64"
-fi
-
-rm -rf $PKG
-mkdir -p $TMP $PKG
-cd $TMP
-rm -rf $PRGNAM-$VERSION
-tar xvf $CWD/$PRGNAM-$VERSION.tar.gz
-cd $PRGNAM-$VERSION
-chown -R root:root .
-chmod -R u+w,go+r-w,a-s .
-
-cmake \
- -DCMAKE_C_FLAGS="$SLKCFLAGS" \
- -DCMAKE_CXX_FLAGS="$SLKCFLAGS" \
- -DCMAKE_EXE_LINKER_FLAGS="-lpthread" \
- -DLIB_SUFFIX="$LIBDIRSUFFIX" \
- -DCMAKE_INSTALL_PREFIX=/usr .
-
-make
-make install DESTDIR=$PKG
-
-find $PKG | xargs file | egrep "ELF.*executable" | cut -f 1 -d : | \
- xargs strip --strip-unneeded 2> /dev/null
-find $PKG | xargs file | egrep "ELF.*shared object" | cut -f 1 -d : | \
- xargs strip --strip-unneeded 2> /dev/null
-
-mv $PKG/usr/share/man $PKG/usr/man
-gzip -9 $PKG/usr/man/man?/*.?
-
-mkdir -p $PKG/usr/doc/$PRGNAM-$VERSION
-cp -a AUTHORS COPYING ChangeLog INSTALL_cmake LICENCE_VIGRA README README_JP \
- README_WINDOWS 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
-cat $CWD/doinst.sh > $PKG/install/doinst.sh
-
-cd $PKG
-/sbin/makepkg -l y -c n $OUTPUT/$PRGNAM-$VERSION-$ARCH-$BUILD$TAG.${PKGTYPE:-tgz}