business/ledger: Fix conflict with utfcpp.

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-03-01 14:24:48 -05:00 committed by Willy Sudiarto Raharjo
parent 9b1f8da2b0
commit 80e9be6722
No known key found for this signature in database
GPG key ID: 3F617144D7238786
2 changed files with 21 additions and 23 deletions

View file

@ -1,7 +1,2 @@
Ledger is a powerful, double-entry accounting system that is accessed Ledger is a powerful, double-entry accounting system that is accessed
from the UNIX command-line. from the UNIX command-line.
* IMPORTANT NOTE *
seems like utfcpp actually breaks compilation in current so be sure
to remove that package if you have installed before trying to build
ledger

View file

@ -3,11 +3,17 @@
# Written by Lionel Young (redtricycle at gmail dot com) # Written by Lionel Young (redtricycle at gmail dot com)
# Updated by simotrone (simotrone at gmail dot com) # Updated by simotrone (simotrone at gmail dot com)
# 20220301 bkw: Modified by SlackBuilds.org, BUILD=2:
# - fix conflict with utfcpp.
# - don't include tools/ in the doc dir, it's upstream dev stuff.
# - don't include empty /usr/share in package.
# - include GLOSSARY.md in package, it looks useful.
cd $(dirname $0) ; CWD=$(pwd) cd $(dirname $0) ; CWD=$(pwd)
PRGNAM=ledger PRGNAM=ledger
VERSION=${VERSION:-3.2.1} VERSION=${VERSION:-3.2.1}
BUILD=${BUILD:-1} BUILD=${BUILD:-2}
TAG=${TAG:-_SBo} TAG=${TAG:-_SBo}
PKGTYPE=${PKGTYPE:-tgz} PKGTYPE=${PKGTYPE:-tgz}
@ -19,14 +25,13 @@ if [ -z "$ARCH" ]; then
esac esac
fi 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 if [ ! -z "${PRINT_PACKAGE_NAME}" ]; then
echo "$PRGNAM-$VERSION-$ARCH-$BUILD$TAG.$PKGTYPE" echo "$PRGNAM-$VERSION-$ARCH-$BUILD$TAG.$PKGTYPE"
exit 0 exit 0
fi fi
# 20220301 bkw: no SLKCFLAGS here. cmake defaults to -O3 -fPIC, which is fine.
TMP=${TMP:-/tmp/SBo} TMP=${TMP:-/tmp/SBo}
PKG=$TMP/package-$PRGNAM PKG=$TMP/package-$PRGNAM
OUTPUT=${OUTPUT:-/tmp} OUTPUT=${OUTPUT:-/tmp}
@ -42,36 +47,34 @@ cd $PRGNAM-$VERSION
chown -R root:root . chown -R root:root .
find -L . \ find -L . \
\( -perm 777 -o -perm 775 -o -perm 750 -o -perm 711 -o -perm 555 \ \( -perm 777 -o -perm 775 -o -perm 750 -o -perm 711 -o -perm 555 \
-o -perm 511 \) -exec chmod 755 {} \; -o \ -o -perm 511 \) -exec chmod 755 {} \+ -o \
\( -perm 666 -o -perm 664 -o -perm 640 -o -perm 600 -o -perm 444 \ \( -perm 666 -o -perm 664 -o -perm 640 -o -perm 600 -o -perm 444 \
-o -perm 440 -o -perm 400 \) -exec chmod 644 {} \; -o -perm 440 -o -perm 400 \) -exec chmod 644 {} \+
patch -p1 < $CWD/CMakeLists.txt.patch patch -p1 < $CWD/CMakeLists.txt.patch
patch -p1 < $CWD/boost-176.patch patch -p1 < $CWD/boost-176.patch
# 20220301 bkw: do not look for utfcpp's headers in /usr/include, use
# only the bundled copy (otherwise the build breaks if utfcpp is installed).
sed -i '/find_path(/s,$, NO_DEFAULT_PATH,' cmake/FindUtfcpp.cmake
mkdir -p build mkdir -p build
cd build cd build
cmake \ cmake \
-DCMAKE_INSTALL_PREFIX=/usr \ -DCMAKE_INSTALL_PREFIX=/usr \
.. ..
make make # VERBOSE=1 # uncomment if needed
make install DESTDIR=$PKG make install/strip DESTDIR=$PKG
cd .. cd ..
find $PKG -print0 | xargs -0 file | grep -e "executable" -e "shared object" | grep ELF \
| cut -f 1 -d : | xargs strip --strip-unneeded 2> /dev/null || true
mv $PKG/usr/share/man $PKG/usr mv $PKG/usr/share/man $PKG/usr
find $PKG/usr/man -type f -exec gzip -9 {} \; rmdir $PKG/usr/share
for i in $( find $PKG/usr/man -type l ) ; do ln -s $( readlink $i ).gz $i.gz ; rm $i ; done gzip -9 $PKG/usr/man/man*/*
mkdir -p $PKG/usr/doc/$PRGNAM-$VERSION/ mkdir -p $PKG/usr/doc/$PRGNAM-$VERSION/
cat $CWD/$PRGNAM.SlackBuild > $PKG/usr/doc/$PRGNAM-$VERSION/$PRGNAM.SlackBuild cat $CWD/$PRGNAM.SlackBuild > $PKG/usr/doc/$PRGNAM-$VERSION/$PRGNAM.SlackBuild
cp -a README.md doc/NEWS.md $PKG/usr/doc/$PRGNAM-$VERSION/ cp -a README.md doc/*.md contrib test/input/* \
$PKG/usr/doc/$PRGNAM-$VERSION/
cp -ra contrib $PKG/usr/doc/$PRGNAM-$VERSION
cp -ra test/input/* $PKG/usr/doc/$PRGNAM-$VERSION
cp -ra tools $PKG/usr/doc/$PRGNAM-$VERSION
mkdir -p $PKG/install mkdir -p $PKG/install
cat $CWD/slack-desc > $PKG/install/slack-desc cat $CWD/slack-desc > $PKG/install/slack-desc