summaryrefslogtreecommitdiffstats
path: root/system/man-pages-ru/man-pages-ru.SlackBuild
diff options
context:
space:
mode:
Diffstat (limited to 'system/man-pages-ru/man-pages-ru.SlackBuild')
-rw-r--r--system/man-pages-ru/man-pages-ru.SlackBuild23
1 files changed, 17 insertions, 6 deletions
diff --git a/system/man-pages-ru/man-pages-ru.SlackBuild b/system/man-pages-ru/man-pages-ru.SlackBuild
index ad1a76d094..a19e2acc25 100644
--- a/system/man-pages-ru/man-pages-ru.SlackBuild
+++ b/system/man-pages-ru/man-pages-ru.SlackBuild
@@ -1,4 +1,4 @@
-#!/bin/sh
+#!/bin/bash
# Slackware build script for man-pages-ru
@@ -22,21 +22,32 @@
# OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF
# ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
+# 20210829 bkw: Install man pages in /usr/share/ru, not
+# /usr/share/ru.UTF-8. man-db will look in both places. Changed this
+# to make it match the other man-pages-* builds.
+
# 20201105 bkw: This hasn't been updated in 7+ years, and I'm not sure
# it ever worked properly with 14.2's man command. Update to latest
# version and document how to get this stuff to work with man-db and a
# utf-8 capable terminal.
+cd $(dirname $0) ; CWD=$(pwd)
+
PRGNAM=man-pages-ru
VERSION=${VERSION:-5.03_20191017} # Set the version to something sane.
-BUILD=${BUILD:-1}
+BUILD=${BUILD:-2}
TAG=${TAG:-_SBo}
+PKGTYPE=${PKGTYPE:-tgz}
SRCVERSION="$(echo $PRGNAM_*.tar.bz2 | rev | cut -f 3- -d . | cut -f 1 -d _ | rev)"
ARCH=noarch
-CWD=$(pwd)
+if [ ! -z "${PRINT_PACKAGE_NAME}" ]; then
+ echo "$PRGNAM-$VERSION-$ARCH-$BUILD$TAG.$PKGTYPE"
+ exit 0
+fi
+
TMP=${TMP:-/tmp/SBo}
PKG=$TMP/package-$PRGNAM
OUTPUT=${OUTPUT:-/tmp}
@@ -56,9 +67,9 @@ find -L . -perm /111 -a \! -perm 755 -a -exec chmod 755 {} \+ -o \
# This one is included in Slackware.
rm man5/passwd.5
-mkdir -p $PKG/usr/man/ru.UTF-8
+mkdir -p $PKG/usr/man/ru
for section in 1 2 3 4 5 6 7 8 ; do
- mv man$section $PKG/usr/man/ru.UTF-8
+ mv man$section $PKG/usr/man/ru
done
find $PKG/usr/man -type f -exec gzip -9 {} \+
@@ -71,4 +82,4 @@ mkdir -p $PKG/install
cat $CWD/slack-desc > $PKG/install/slack-desc
cd $PKG
-/sbin/makepkg -l y -c n $OUTPUT/$PRGNAM-$VERSION-$ARCH-$BUILD$TAG.${PKGTYPE:-tgz}
+/sbin/makepkg -l y -c n $OUTPUT/$PRGNAM-$VERSION-$ARCH-$BUILD$TAG.$PKGTYPE