diff options
author | Patrick J Volkerding <volkerdi@slackware.com> | 2022-09-27 21:19:17 +0000 |
---|---|---|
committer | Eric Hameleers <alien@slackware.com> | 2022-09-28 07:00:19 +0200 |
commit | 527f0eecafdf3ecdb6e6495cc0b147d533998e56 (patch) | |
tree | 1462a39d2559dcc21da9063e9c0d25b5e073f278 /source/n | |
parent | 98175558d7a0dcd6e001ae887a44c05cf7955d63 (diff) | |
download | current-527f0eecafdf3ecdb6e6495cc0b147d533998e56.tar.gz |
Tue Sep 27 21:19:17 UTC 202220220927211917
a/kernel-firmware-20220927_0958301-noarch-1.txz: Upgraded.
n/pinentry-1.2.1-x86_64-2.txz: Rebuilt.
Build pinentry-tty. Thanks to pek.
Build pinentry-emacs.
x/fcitx5-gtk-5.0.19-x86_64-1.txz: Upgraded.
x/libXtst-1.2.4-x86_64-1.txz: Upgraded.
x/libXxf86vm-1.1.5-x86_64-1.txz: Upgraded.
x/mesa-22.2.0-x86_64-1.txz: Upgraded.
Diffstat (limited to 'source/n')
-rwxr-xr-x | source/n/pinentry/pinentry.SlackBuild | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/source/n/pinentry/pinentry.SlackBuild b/source/n/pinentry/pinentry.SlackBuild index db1d18a8..9d3e6236 100755 --- a/source/n/pinentry/pinentry.SlackBuild +++ b/source/n/pinentry/pinentry.SlackBuild @@ -1,7 +1,7 @@ #!/bin/bash # Copyright 2006, 2014 Robby Workman, Tuscaloosa, AL, USA -# Copyright 2007, 2008, 2009, 2010, 2018 Patrick J. Volkerding, Sebeka, MN, USA +# Copyright 2007, 2008, 2009, 2010, 2018, 2022 Patrick J. Volkerding, Sebeka, MN, USA # All rights reserved. # # Redistribution and use of this script, with or without modification, is @@ -25,7 +25,7 @@ cd $(dirname $0) ; CWD=$(pwd) PKGNAM=pinentry VERSION=${VERSION:-$(echo $PKGNAM-*.tar.?z | rev | cut -f 3- -d . | cut -f 1 -d - | rev)} -BUILD=${BUILD:-1} +BUILD=${BUILD:-2} # Automatically determine the architecture we're building on: if [ -z "$ARCH" ]; then @@ -96,7 +96,10 @@ CXXFLAGS="$SLKCFLAGS" \ --infodir=/usr/info \ --enable-pinentry-curses \ --enable-fallback-curses \ + --enable-pinentry-emacs \ --enable-pinentry-gtk2 \ + --enable-pinentry-qt \ + --enable-pinentry-tty \ --build=$ARCH-slackware-linux$ARCHQUADLET \ --host=$ARCH-slackware-linux$ARCHQUADLET || exit 1 @@ -106,9 +109,6 @@ make install DESTDIR=$PKG || exit 1 find $PKG | xargs file | grep -e "executable" -e "shared object" \ | grep ELF | cut -f 1 -d : | xargs strip --strip-unneeded 2> /dev/null -# Just in case: a compat link -ln -s pinentry-qt $PKG/usr/bin/pinentry-qt4 - find $PKG/usr/man -type f -exec gzip -9 {} \+ rm $PKG/usr/info/dir |