network/ncp: Fix for recent libowfat.

Signed-off-by: B. Watson <yalhcru@gmail.com>

Signed-off-by: Willy Sudiarto Raharjo <willysr@slackbuilds.org>
This commit is contained in:
B. Watson 2022-02-07 12:24:28 -05:00 committed by Willy Sudiarto Raharjo
parent 5e9f8b8017
commit 93b5cbed79
No known key found for this signature in database
GPG key ID: 3F617144D7238786

View file

@ -6,11 +6,13 @@
# Licensed under the WTFPL. See http://www.wtfpl.net/txt/copying/ for details.
# 20220207 bkw: BUILD=2, libowfat changed its dir structure.
cd $(dirname $0) ; CWD=$(pwd)
PRGNAM=ncp
VERSION=${VERSION:-1.2.4}
BUILD=${BUILD:-1}
BUILD=${BUILD:-2}
TAG=${TAG:-_SBo}
PKGTYPE=${PKGTYPE:-tgz}
@ -31,13 +33,20 @@ TMP=${TMP:-/tmp/SBo}
PKG=$TMP/package-$PRGNAM
OUTPUT=${OUTPUT:-/tmp}
# 20220207 bkw: libowfat doesn't use standard lib or lib64 in its dir,
# which is annoying.
L=/opt/diet/lib-i386
if [ "$ARCH" = "i586" ]; then
SLKCFLAGS="-O2 -march=i586 -mtune=i686"
elif [ "$ARCH" = "i686" ]; then
SLKCFLAGS="-O2 -march=i686 -mtune=i686"
elif [ "$ARCH" = "x86_64" ]; then
L=/opt/diet/lib-x86_64
SLKCFLAGS="-O2 -fPIC"
else
# this will fail, would someone who uses arm or aarch64 please add
# them here?
SLKCFLAGS="-O2"
fi
@ -56,7 +65,8 @@ chmod 644 *
sed -i 's,ln -f,ln -s,' GNUmakefile
# The libowfat detection stuff needs a little help...
make PREFIX=/usr CFLAGS="$SLKCFLAGS -Wl,-s -I/opt/diet/include/libowfat"
make PREFIX=/usr CFLAGS="$SLKCFLAGS -Wl,-s -I/opt/diet/include/libowfat -L$L"
make install PREFIX=$PKG/usr
gzip $PKG/usr/man/man1/*.1
ln -s npush.1.gz $PKG/usr/man/man1/npoll.1.gz