2018-05-28 21:12:29 +02:00
|
|
|
#!/bin/bash
|
2009-08-26 17:00:38 +02:00
|
|
|
|
2022-04-21 21:11:10 +02:00
|
|
|
# Copyright 2008, 2009, 2010, 2012, 2018, 2021, 2022 Patrick J. Volkerding, Sebeka, MN, USA
|
2009-08-26 17:00:38 +02:00
|
|
|
# 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.
|
|
|
|
|
2018-05-28 21:12:29 +02:00
|
|
|
cd $(dirname $0) ; CWD=$(pwd)
|
2009-08-26 17:00:38 +02:00
|
|
|
|
2011-04-25 15:37:00 +02:00
|
|
|
PKGNAM=fribidi
|
2022-04-21 21:11:10 +02:00
|
|
|
VERSION=${VERSION:-$(echo $PKGNAM-*.tar.?z | rev | cut -f 3- -d . | cut -f 1 -d - | rev)}
|
2021-09-25 03:05:55 +02:00
|
|
|
BUILD=${BUILD:-1}
|
2009-08-26 17:00:38 +02:00
|
|
|
|
2011-04-25 15:37:00 +02:00
|
|
|
# Automatically determine the architecture we're building on:
|
|
|
|
if [ -z "$ARCH" ]; then
|
|
|
|
case "$( uname -m )" in
|
2024-09-26 20:28:55 +02:00
|
|
|
i?86) export ARCH=i686 ;;
|
2011-04-25 15:37:00 +02:00
|
|
|
arm*) export ARCH=arm ;;
|
|
|
|
# Unless $ARCH is already set, use uname -m for all other archs:
|
|
|
|
*) export ARCH=$( uname -m ) ;;
|
|
|
|
esac
|
|
|
|
fi
|
|
|
|
|
2018-05-28 21:12:29 +02: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 "$PKGNAM-$VERSION-$ARCH-$BUILD.txz"
|
|
|
|
exit 0
|
|
|
|
fi
|
|
|
|
|
2018-09-21 20:51:07 +02:00
|
|
|
NUMJOBS=${NUMJOBS:-" -j$(expr $(nproc) + 1) "}
|
2011-04-25 15:37:00 +02:00
|
|
|
|
2024-09-26 20:28:55 +02:00
|
|
|
if [ "$ARCH" = "i686" ]; then
|
|
|
|
SLKCFLAGS="-O2 -march=pentium4 -mtune=generic"
|
2009-08-26 17:00:38 +02:00
|
|
|
LIBDIRSUFFIX=""
|
|
|
|
elif [ "$ARCH" = "x86_64" ]; then
|
2024-09-26 20:28:55 +02:00
|
|
|
SLKCFLAGS="-O2 -march=x86-64 -mtune=generic -fPIC"
|
2009-08-26 17:00:38 +02:00
|
|
|
LIBDIRSUFFIX="64"
|
2011-04-25 15:37:00 +02:00
|
|
|
else
|
|
|
|
SLKCFLAGS="-O2"
|
|
|
|
LIBDIRSUFFIX=""
|
2009-08-26 17:00:38 +02:00
|
|
|
fi
|
|
|
|
|
|
|
|
TMP=${TMP:-/tmp}
|
|
|
|
PKG=/tmp/package-fribidi
|
|
|
|
rm -rf $PKG
|
|
|
|
mkdir -p $TMP $PKG
|
|
|
|
|
|
|
|
cd $TMP
|
|
|
|
rm -rf fribidi-$VERSION
|
2022-04-21 21:11:10 +02:00
|
|
|
tar xvf $CWD/fribidi-$VERSION.tar.?z || exit 1
|
2018-05-28 21:12:29 +02:00
|
|
|
cd fribidi-$VERSION || exit 1
|
2012-09-26 03:10:42 +02:00
|
|
|
|
2019-09-30 23:08:32 +02:00
|
|
|
find . -perm 777 -exec chmod 755 {} \+
|
|
|
|
find . -perm 775 -exec chmod 755 {} \+
|
|
|
|
find . -perm 664 -exec chmod 644 {} \+
|
2009-08-26 17:00:38 +02:00
|
|
|
chown -R root:root .
|
2016-06-30 22:26:57 +02:00
|
|
|
|
2021-09-25 03:05:55 +02:00
|
|
|
if [ ! -r configure ]; then
|
|
|
|
if [ -x ./autogen.sh ]; then
|
|
|
|
NOCONFIGURE=1 ./autogen.sh
|
|
|
|
else
|
|
|
|
autoreconf -vif
|
|
|
|
fi
|
|
|
|
fi
|
2009-08-26 17:00:38 +02:00
|
|
|
CFLAGS="$SLKCFLAGS" \
|
|
|
|
./configure --prefix=/usr \
|
|
|
|
--libdir=/usr/lib${LIBDIRSUFFIX} \
|
2012-09-26 03:10:42 +02:00
|
|
|
--mandir=/usr/man \
|
|
|
|
--disable-static \
|
2016-06-30 22:26:57 +02:00
|
|
|
--with-pic \
|
|
|
|
--docdir=/usr/doc/fribidi-$VERSION \
|
2018-05-28 21:12:29 +02:00
|
|
|
--build=$ARCH-slackware-linux || exit 1
|
2016-06-30 22:26:57 +02:00
|
|
|
|
2009-08-26 17:00:38 +02:00
|
|
|
make $NUMJOBS || exit 1
|
2018-05-28 21:12:29 +02:00
|
|
|
make install DESTDIR=$PKG || exit 1
|
|
|
|
|
|
|
|
# Don't ship .la files:
|
|
|
|
rm -f $PKG/{,usr/}lib${LIBDIRSUFFIX}/*.la
|
2012-09-26 03:10:42 +02:00
|
|
|
|
2009-08-26 17:00:38 +02:00
|
|
|
( 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
|
|
|
|
)
|
2012-09-26 03:10:42 +02:00
|
|
|
|
|
|
|
# Remove any zero length man pages:
|
|
|
|
find $PKG/usr/man/ -type f -empty -delete
|
|
|
|
|
|
|
|
# Compress and if needed symlink the man pages:
|
|
|
|
if [ -d $PKG/usr/man ]; then
|
|
|
|
( cd $PKG/usr/man
|
|
|
|
for manpagedir in $(find . -type d -name "man*") ; do
|
|
|
|
( cd $manpagedir
|
|
|
|
for eachpage in $( find . -type l -maxdepth 1) ; do
|
|
|
|
ln -s $( readlink $eachpage ).gz $eachpage.gz
|
|
|
|
rm $eachpage
|
|
|
|
done
|
|
|
|
gzip -9 *.?
|
|
|
|
)
|
|
|
|
done
|
|
|
|
)
|
|
|
|
fi
|
|
|
|
|
2009-08-26 17:00:38 +02:00
|
|
|
mkdir -p $PKG/usr/doc/fribidi-$VERSION
|
|
|
|
cp -a \
|
2011-04-25 15:37:00 +02:00
|
|
|
AUTHORS COPYING* NEWS README* THANKS TODO \
|
2009-08-26 17:00:38 +02:00
|
|
|
$PKG/usr/doc/fribidi-$VERSION
|
|
|
|
mkdir -p $PKG/install
|
|
|
|
cat $CWD/slack-desc > $PKG/install/slack-desc
|
|
|
|
|
|
|
|
cd $PKG
|
|
|
|
makepkg -l y -c n $TMP/fribidi-$VERSION-$ARCH-$BUILD.txz
|
|
|
|
|