diff options
author | Mikhail Zotov <mikhail dot ru at gmail dot com> | 2010-05-13 00:58:29 +0200 |
---|---|---|
committer | David Somero <xgizzmo@slackbuilds.org> | 2010-05-13 00:58:29 +0200 |
commit | 245ebd55dd03f5d0c97fba78706fefd2dcd42131 (patch) | |
tree | c5e63cac44ffdc89afd874ff3af3bdad351f3624 /libraries/fltk2/fltk2.SlackBuild | |
parent | 93beaaf2381c0939e5ca893b2797bcbbe3407aca (diff) | |
download | slackbuilds-245ebd55dd03f5d0c97fba78706fefd2dcd42131.tar.gz |
libraries/fltk2: Added to 13.0 repository
Diffstat (limited to 'libraries/fltk2/fltk2.SlackBuild')
-rw-r--r-- | libraries/fltk2/fltk2.SlackBuild | 100 |
1 files changed, 100 insertions, 0 deletions
diff --git a/libraries/fltk2/fltk2.SlackBuild b/libraries/fltk2/fltk2.SlackBuild new file mode 100644 index 0000000000..1b75ed82c8 --- /dev/null +++ b/libraries/fltk2/fltk2.SlackBuild @@ -0,0 +1,100 @@ +#!/bin/sh + +# Slackware build script for fltk, version 2 + +# Copyright 2009-2010 Mikhail Zotov <mikhail dot ru@gmail dot com> +# All rights reserved. +# +# The script is based on the build script for FLTK, version 1, by LukenShiro. +# The script has been fixed by Robby Workman. +# +# 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. + +PRGNAM=fltk2 +VERSION=2.0.x_r6970 +ARCH=${ARCH:-i486} +BUILD=${BUILD:-1} +TAG=${TAG:-_SBo} + +SRC_PRGNAM=fltk +SRC_VERSION=$(printf $VERSION | tr _ -) + +CWD=$(pwd) +TMP=${TMP:-/tmp/SBo} +PKG=$TMP/package-$PRGNAM +OUTPUT=${OUTPUT:-/tmp} + +DOCFILES="CHANGES COPYING CREDITS README README.unix README_fltk1_to_fltk2.txt" + +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 + +set -e + +rm -rf $PKG +mkdir -p $TMP $PKG $OUTPUT +cd $TMP +rm -rf $SRC_PRGNAM-$SRC_VERSION +tar xvf $CWD/$SRC_PRGNAM-$SRC_VERSION.tar.bz2 +cd $SRC_PRGNAM-$SRC_VERSION +chown -R root:root . +chmod -R u+w,go+r-w,a-s . + +# Fix linking when --libdir=/usr/lib64 +sed -i \ + -e '/RANLIB/s:$(libdir)/\(.*LIBNAME)\):$(libdir)/`basename \1`:g' \ + src/Makefile || exit + +CFLAGS="$SLKCFLAGS" \ +CXXFLAGS="$SLKCFLAGS" \ +./configure \ + --prefix=/usr \ + --libdir=/usr/lib${LIBDIRSUFFIX} \ + --mandir=/usr/man \ + --enable-shared + +make +make install DESTDIR=$PKG + +( 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 +) + +# No manpages are installed +rm -rf $PKG/usr/man + +mkdir -p $PKG/usr/doc/$PRGNAM-$VERSION/ +cp -a $DOCFILES $PKG/usr/doc/$PRGNAM-$VERSION +cat $CWD/fltk2.SlackBuild > $PKG/usr/doc/$PRGNAM-$VERSION/fltk2.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} |