summaryrefslogtreecommitdiffstats
path: root/libraries/Botan
diff options
context:
space:
mode:
Diffstat (limited to 'libraries/Botan')
-rw-r--r--libraries/Botan/Botan.SlackBuild58
-rw-r--r--libraries/Botan/Botan.info10
-rw-r--r--libraries/Botan/README15
3 files changed, 50 insertions, 33 deletions
diff --git a/libraries/Botan/Botan.SlackBuild b/libraries/Botan/Botan.SlackBuild
index 5b9273a9ed..ab19b92a6a 100644
--- a/libraries/Botan/Botan.SlackBuild
+++ b/libraries/Botan/Botan.SlackBuild
@@ -2,7 +2,8 @@
# Slackware build script for Botan
-# Copyright (c) 2010-2021 Markus Reichelt, Aachen, DE
+# Copyright (c) 2010-2022 Markus Reichelt, Aachen, DE
+# Copyright (c) 2023 Gregory J. L. Tourte <artourter@gmail.com>
# All rights reserved.
#
# Permission to use, copy, modify, and distribute this software for
@@ -23,13 +24,15 @@
# OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
# SUCH DAMAGE.
#
-# Markus Reichelt, slackbuilds@mareichelt.de, 0xCCEEF115
+
+# 20220416 bkw: Modified by SlackBuilds.org, BUILD=2:
+# - use correct doc dir (usr/doc/$PRGNAM-$VERSION).
cd $(dirname $0) ; CWD=$(pwd)
PRGNAM=Botan
-VERSION=${VERSION:-2.17.3}
-BUILD=${BUILD:-1}
+VERSION=${VERSION:-2.19.3}
+BUILD=${BUILD:-2}
TAG=${TAG:-_SBo}
PKGTYPE=${PKGTYPE:-tgz}
@@ -43,9 +46,6 @@ fi
PRGNAMI=botan
-# 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
@@ -79,40 +79,52 @@ tar xvf $CWD/$PRGNAM-$VERSION.tar.xz
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 {} \;
+ \( -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 {} \;
+
+TPMFLAG=""
+if [ "${TPM:-NO}" = 'YES' ]; then
+ TPMFLAG="--with-tpm"
+fi
LDFLAGS="$LDFLAGS" \
CFLAGS="$SLKCFLAGS" \
CXXFLAGS="$SLKCFLAGS" \
-python configure.py \
+python3 configure.py \
--prefix=/usr \
--docdir=doc \
--libdir=lib$LIBDIRSUFFIX \
--mandir=/usr/man \
--disable-static \
- --with-doxygen
+ --with-rst2man \
+ --with-bzip2 \
+ --with-zlib \
+ --with-lzma \
+ --with-boost \
+ --with-sqlite3 \
+ --with-commoncrypto \
+ $TPMFLAG
make
-make check
-#in addition to running 'make check' as an alternative way to invoke the testsuite
-#is to uncomment the following line
+#make check
+#as an alternative way to invoke the testsuite uncomment the following
#LD_LIBRARY_PATH=. ./botan-test
+
make install DESTDIR=$PKG
+gzip -9 $PKG/usr/man/man*/*
+
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
-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
-
-cp -a *.rst *.txt doc/ $PKG/usr/doc/$PRGNAMI-$VERSION/
-
-rm -rf $PKG/usr/doc/$PRGNAMI-$VERSION/doc
+# 20220416 bkw: 'make install' uses the wrong name for the doc dir,
+# lowercase "botan". our doc dir must match the SlackBuild's name.
+mv $PKG/usr/doc/$PRGNAMI-$VERSION $PKG/usr/doc/$PRGNAM-$VERSION
+cp -a license.txt $PKG/usr/doc/$PRGNAM-$VERSION/
-cat $CWD/$PRGNAM.SlackBuild > $PKG/usr/doc/$PRGNAMI-$VERSION/$PRGNAM.SlackBuild
+cat $CWD/$PRGNAM.SlackBuild > $PKG/usr/doc/$PRGNAM-$VERSION/$PRGNAM.SlackBuild
mkdir -p $PKG/install
cat $CWD/slack-desc > $PKG/install/slack-desc
diff --git a/libraries/Botan/Botan.info b/libraries/Botan/Botan.info
index a7ab7f4c1c..863dbea52d 100644
--- a/libraries/Botan/Botan.info
+++ b/libraries/Botan/Botan.info
@@ -1,10 +1,10 @@
PRGNAM="Botan"
-VERSION="2.17.3"
+VERSION="2.19.3"
HOMEPAGE="https://botan.randombit.net/"
-DOWNLOAD="https://botan.randombit.net/releases/Botan-2.17.3.tar.xz"
-MD5SUM="ada7bc7dc7451f356e1e80433c675f6b"
+DOWNLOAD="https://botan.randombit.net/releases/Botan-2.19.3.tar.xz"
+MD5SUM="6875d4a802db81646d80ed43ebcf9b27"
DOWNLOAD_x86_64=""
MD5SUM_x86_64=""
REQUIRES=""
-MAINTAINER="Markus Reichelt"
-EMAIL="slackbuilds@mareichelt.de"
+MAINTAINER="ArTourter"
+EMAIL="artourter@gmail.com"
diff --git a/libraries/Botan/README b/libraries/Botan/README
index df7215a24c..7f18ea762a 100644
--- a/libraries/Botan/README
+++ b/libraries/Botan/README
@@ -1,5 +1,10 @@
-Botan is a BSD-licensed crypto library for C++. It provides
-applications with the ability to use a number of cryptographic
-algorithms, as well as SSL/TLS, X.509 certificates and CRLs, PKCS
-#10 certificate requests, a filter/pipe message processing system,
-and a wide variety of other features.
+Botan is a BSD-licensed crypto library for C++. It provides applications
+with the ability to use a number of cryptographic algorithms, as well as
+SSL/TLS, X.509 certificates and CRLs, PKCS #10 certificate requests, a
+filter/pipe message processing system, and a wide variety of other
+features.
+
+Botan relies on Python3 for its compilation configuration.
+
+To build TPM support, use `TPM=YES`. This option adds a dependency on
+`system/trousers`.