diff options
Diffstat (limited to 'libraries/ftgl/ftgl.SlackBuild')
-rw-r--r-- | libraries/ftgl/ftgl.SlackBuild | 66 |
1 files changed, 29 insertions, 37 deletions
diff --git a/libraries/ftgl/ftgl.SlackBuild b/libraries/ftgl/ftgl.SlackBuild index 30886a3bfc99..deb648f8989c 100644 --- a/libraries/ftgl/ftgl.SlackBuild +++ b/libraries/ftgl/ftgl.SlackBuild @@ -1,33 +1,24 @@ #!/bin/bash # Slackware build script for ftgl -# -# Copyright 2020 Johannes Schoepfer, Germany -# Copyright 2007 Niklas "Nille" Åkerström -# 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. + +# Originally written by Niklas "Nille" Åkerström, formerly maintained +# by Johannes Schoepfer. + +# Licensed under the WTFPL. See http://www.wtfpl.net/txt/copying/ for details. + +# 20220207 bkw: BUILD=2. +# - take over maintenance. +# - relicense as WTFPL with permission. +# - add option to build the docs, now that we have texlive. +# - do not install useless INSTALL in doc dir. +# - remove .la file. cd $(dirname $0) ; CWD=$(pwd) PRGNAM=ftgl VERSION=${VERSION:-2.4.0} -BUILD=${BUILD:-1} +BUILD=${BUILD:-2} TAG=${TAG:-_SBo} PKGTYPE=${PKGTYPE:-tgz} @@ -39,9 +30,6 @@ if [ -z "$ARCH" ]; then esac fi -# If the variable PRINT_PACKAGE_NAME is set, then this script will report what -# the name of the created package would be, and then exit. This information -# could be useful to other scripts. if [ ! -z "${PRINT_PACKAGE_NAME}" ]; then echo "$PRGNAM-$VERSION-$ARCH-$BUILD$TAG.$PKGTYPE" exit 0 @@ -75,34 +63,38 @@ rm -rf $PRGNAM-$VERSION tar xvf $CWD/$PRGNAM-$VERSION.tar.gz cd $PRGNAM-$VERSION chown -R root:root . -find -L . \ - \( -perm 777 -o -perm 775 -o -perm 750 -o -perm 711 -o -perm 555 \ - -o -perm 511 \) -exec chmod 755 {} \; -o \ - \( -perm 666 -o -perm 664 -o -perm 640 -o -perm 600 -o -perm 444 \ - -o -perm 440 -o -perm 400 \) -exec chmod 644 {} \; +find -L . -perm /111 -a \! -perm 755 -a -exec chmod 755 {} \+ -o \ + \! -perm /111 -a \! -perm 644 -a -exec chmod 644 {} \+ ./autogen.sh -# docs requires texlive, tetex is not sufficient +# docs require texlive, tetex is not sufficient. we have texlive in +# 15.0, so we can build the docs, but don't by default (most users +# won't need them). +DOCOPT="--disable-doc" +[ "${DOCS:-no}" = "yes" ] && DOCOPT="--enable-doc" + CFLAGS="$SLKCFLAGS" \ CXXFLAGS="$SLKCFLAGS -std=gnu++11" \ ./configure \ --prefix=/usr \ --libdir=/usr/lib${LIBDIRSUFFIX} \ --disable-static \ - --disable-doc + $DOCOPT make GLUT_LIBS="-lglut -lGLU -lGL -lm" make install-strip DESTDIR=$PKG +rm -f $PKG/usr/lib*/*.la + cp src/FT{Face,Size}.h $PKG/usr/include/FTGL -mkdir -p $PKG/usr/doc/$PRGNAM-$VERSION -cp AUTHORS BUGS COPYING ChangeLog INSTALL NEWS README TODO \ - $PKG/usr/doc/$PRGNAM-$VERSION -mv $PKG/usr/share/doc/$PRGNAM/* $PKG/usr/doc/$PRGNAM-$VERSION +PKGDOC=$PKG/usr/doc/$PRGNAM-$VERSION +mkdir -p $PKGDOC +cp AUTHORS BUGS COPYING ChangeLog NEWS README TODO $PKGDOC +mv $PKG/usr/share/doc/$PRGNAM/* $PKGDOC rm -rf $PKG/usr/share -cat $CWD/$PRGNAM.SlackBuild > $PKG/usr/doc/$PRGNAM-$VERSION/$PRGNAM.SlackBuild +cat $CWD/$PRGNAM.SlackBuild > $PKGDOC/$PRGNAM.SlackBuild mkdir -p $PKG/install cat $CWD/slack-desc > $PKG/install/slack-desc |