2021-07-04 01:48:15 +08:00
|
|
|
#!/bin/bash
|
2010-05-13 06:59:20 +08:00
|
|
|
|
|
|
|
# Slackware build script for xforms
|
|
|
|
|
2014-01-06 21:31:59 +08:00
|
|
|
# Copyright 2009-2014 LukenShiro, Italy
|
2010-05-13 06:59:20 +08:00
|
|
|
# All rights reserved.
|
2021-03-01 08:32:53 +08:00
|
|
|
# Copyright 2019-2021 Christoph Willing, Brisbane/Australia
|
2019-11-08 19:38:00 +08:00
|
|
|
# All rights reserved.
|
2010-05-13 06:59:20 +08:00
|
|
|
#
|
|
|
|
# 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.
|
|
|
|
|
2021-07-04 17:41:06 +08:00
|
|
|
cd $(dirname $0) ; CWD=$(pwd)
|
|
|
|
|
2010-05-13 06:59:20 +08:00
|
|
|
PRGNAM=xforms
|
2014-10-15 22:22:28 +08:00
|
|
|
VERSION=${VERSION:-1.2.4}
|
2022-02-15 01:19:02 +08:00
|
|
|
BUILD=${BUILD:-3}
|
2010-05-13 06:59:20 +08:00
|
|
|
TAG=${TAG:-_SBo}
|
2021-07-04 18:23:38 +08:00
|
|
|
PKGTYPE=${PKGTYPE:-tgz}
|
2010-05-13 06:59:20 +08:00
|
|
|
|
2010-06-04 13:10:40 +08:00
|
|
|
if [ -z "$ARCH" ]; then
|
|
|
|
case "$( uname -m )" in
|
2019-11-08 19:38:00 +08:00
|
|
|
i?86) ARCH=i586 ;;
|
2010-06-04 13:10:40 +08:00
|
|
|
arm*) ARCH=arm ;;
|
|
|
|
*) ARCH=$( uname -m ) ;;
|
|
|
|
esac
|
|
|
|
fi
|
|
|
|
|
2021-07-04 18:23:38 +08:00
|
|
|
# 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
|
|
|
|
fi
|
|
|
|
|
2010-05-13 06:59:20 +08:00
|
|
|
TMP=${TMP:-/tmp/SBo}
|
|
|
|
PKG=$TMP/package-$PRGNAM
|
|
|
|
OUTPUT=${OUTPUT:-/tmp}
|
|
|
|
|
2014-01-06 21:31:59 +08:00
|
|
|
DOCFILES="ChangeLog COPYING.LIB Copyright INSTALL* README"
|
2010-05-13 06:59:20 +08:00
|
|
|
# sources with data examples, and pre-built ones
|
2014-01-06 21:31:59 +08:00
|
|
|
DEMOFILES="*.h *.c *.xbm *.xpm *.menu .libs/*"
|
2010-05-13 06:59:20 +08:00
|
|
|
DEMOFDFILES="*.h *.c *.fd *.xpm"
|
|
|
|
|
2019-11-08 19:38:00 +08:00
|
|
|
if [ "$ARCH" = "i586" ]; then
|
|
|
|
SLKCFLAGS="-O2 -march=i586 -mtune=i686"
|
2010-05-13 06:59:20 +08:00
|
|
|
LIBDIRSUFFIX=""
|
|
|
|
elif [ "$ARCH" = "i686" ]; then
|
|
|
|
SLKCFLAGS="-O2 -march=i686 -mtune=i686"
|
|
|
|
LIBDIRSUFFIX=""
|
|
|
|
elif [ "$ARCH" = "x86_64" ]; then
|
|
|
|
SLKCFLAGS="-O2 -fPIC"
|
|
|
|
LIBDIRSUFFIX="64"
|
2010-06-04 13:10:40 +08:00
|
|
|
else
|
|
|
|
SLKCFLAGS="-O2"
|
|
|
|
LIBDIRSUFFIX=""
|
2010-05-13 06:59:20 +08:00
|
|
|
fi
|
|
|
|
|
2014-01-06 21:31:59 +08:00
|
|
|
set -e
|
2010-05-13 06:59:20 +08:00
|
|
|
|
|
|
|
rm -rf $PKG
|
|
|
|
mkdir -p $TMP $PKG $OUTPUT
|
|
|
|
cd $TMP
|
|
|
|
rm -rf $PRGNAM-$VERSION
|
|
|
|
tar xvf $CWD/$PRGNAM-$VERSION.tar.gz
|
|
|
|
cd $PRGNAM-$VERSION
|
2021-03-01 08:32:53 +08:00
|
|
|
patch -p1 < $CWD/xforms-1.2.4-fno-common.patch
|
2010-05-13 06:59:20 +08:00
|
|
|
chown -R root:root .
|
2013-11-11 23:13:05 +08:00
|
|
|
find -L . \
|
2014-01-06 21:31:59 +08:00
|
|
|
\( -perm 777 -o -perm 775 -o -perm 750 -o -perm 711 -o -perm 555 \
|
|
|
|
-o -perm 511 \) -exec chmod 755 {} \; -o \
|
2013-11-11 23:13:05 +08:00
|
|
|
\( -perm 666 -o -perm 664 -o -perm 640 -o -perm 600 -o -perm 444 \
|
|
|
|
-o -perm 440 -o -perm 400 \) -exec chmod 644 {} \;
|
2010-05-13 06:59:20 +08:00
|
|
|
|
|
|
|
CFLAGS="$SLKCFLAGS" \
|
|
|
|
CXXFLAGS="$SLKCFLAGS" \
|
|
|
|
./configure \
|
|
|
|
--prefix=/usr \
|
|
|
|
--libdir=/usr/lib${LIBDIRSUFFIX} \
|
|
|
|
--docdir=/usr/doc/$PRGNAM-$VERSION \
|
|
|
|
--datadir=/usr/share/$PRGNAM-$VERSION \
|
|
|
|
--mandir=/usr/man \
|
|
|
|
--infodir=/usr/info \
|
|
|
|
--enable-demos \
|
|
|
|
--enable-docs \
|
2014-10-15 22:22:28 +08:00
|
|
|
--enable-static=no \
|
2010-05-13 06:59:20 +08:00
|
|
|
--build=$ARCH-slackware-linux
|
|
|
|
|
|
|
|
make all
|
|
|
|
make install DESTDIR=$PKG
|
|
|
|
|
2014-01-06 21:31:59 +08:00
|
|
|
find $PKG -print0 | xargs -0 file | grep -e "executable" -e "shared object" | grep ELF \
|
2010-05-19 14:39:40 +08:00
|
|
|
| cut -f 1 -d : | xargs strip --strip-unneeded 2> /dev/null || true
|
2010-05-13 06:59:20 +08:00
|
|
|
|
2010-06-18 01:44:37 +08:00
|
|
|
find $PKG/usr/man -type f -exec gzip -9 {} \;
|
|
|
|
for i in $(find $PKG/usr/man -type l) ; do ln -s $(readlink $i).gz $i.gz ; rm $i ; done
|
2010-05-13 06:59:20 +08:00
|
|
|
|
|
|
|
rm -f $PKG/usr/info/dir
|
2014-01-06 21:31:59 +08:00
|
|
|
gzip -9 $PKG/usr/info/*.info*
|
|
|
|
# images do not belong here
|
|
|
|
rm -rf $PKG/usr/info/xforms_images
|
2010-05-13 06:59:20 +08:00
|
|
|
|
2014-01-06 21:31:59 +08:00
|
|
|
# demo executable and source files
|
2010-05-13 06:59:20 +08:00
|
|
|
mkdir -p $PKG/usr/share/$PRGNAM-$VERSION/demos/fd
|
2010-06-18 01:44:37 +08:00
|
|
|
cd demos ; cp -a $DEMOFILES $PKG/usr/share/$PRGNAM-$VERSION/demos
|
|
|
|
cd fd ; cp -a $DEMOFDFILES $PKG/usr/share/$PRGNAM-$VERSION/demos/fd
|
2010-05-13 06:59:20 +08:00
|
|
|
cd ../..
|
|
|
|
|
|
|
|
mkdir -p $PKG/usr/doc/$PRGNAM-$VERSION/
|
|
|
|
cp -a $DOCFILES $PKG/usr/doc/$PRGNAM-$VERSION
|
|
|
|
cat $CWD/$PRGNAM.SlackBuild > $PKG/usr/doc/$PRGNAM-$VERSION/$PRGNAM.SlackBuild
|
|
|
|
|
2022-02-15 01:19:02 +08:00
|
|
|
rm -f $PKG/usr/lib*/*.la
|
|
|
|
|
2010-05-13 06:59:20 +08:00
|
|
|
mkdir -p $PKG/install
|
|
|
|
cat $CWD/slack-desc > $PKG/install/slack-desc
|
|
|
|
|
|
|
|
cd $PKG
|
2021-07-04 18:23:38 +08:00
|
|
|
/sbin/makepkg -l y -c n $OUTPUT/$PRGNAM-$VERSION-$ARCH-$BUILD$TAG.$PKGTYPE
|