localize it

Submitted by: "Alexey Zelkin" <phantom@crimea.edu>
This commit is contained in:
Andrey A. Chernov 1999-09-11 18:55:02 +00:00
parent 39aca5c05e
commit 77adc291c6
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=51173
2 changed files with 47 additions and 3 deletions

View File

@ -3,7 +3,7 @@
# $FreeBSD$
#
if [ -x /usr/libexec/makewhatis.local -a -x /usr/bin/manpath ] ; then
if [ -x /usr/libexec/makewhatis.local -a -x /usr/bin/manpath ]; then
echo ""
echo "Rebuilding whatis database:"
@ -13,7 +13,24 @@ if [ -x /usr/libexec/makewhatis.local -a -x /usr/bin/manpath ] ; then
if [ "x${MANPATH}" = "x" ]; then
echo "manpath failed to find any manpage directories"
else
# If possible, check global system configuration file
# for additional man(1) locales installed
if [ -r /etc/defaults/rc.conf ]; then
. /etc/defaults/rc.conf
elif [ -r /etc/rc.conf ]; then
. /etc/rc.conf
fi
# Build whatis(1) database(s) for original, non-localized manpages.
/usr/libexec/makewhatis.local "${MANPATH}"
# Build whatis(1) database(s) for localized manpages.
if [ "x${man_locales}" != "x" -a "${man_locales}" != "NO" ]; then
for i in ${man_locales}
do
LC_CTYPE=$i /usr/libexec/makewhatis.local -a -L "${MANPATH}"
done
fi
fi
fi
fi

View File

@ -5,9 +5,36 @@
exit 0 # do not run by default
if [ -x /usr/libexec/catman.local -a -d /usr/share/man/cat1 ] ; then
if [ -x /usr/libexec/catman.local \
-a -d /usr/share/man/cat1 \
-a -x /usr/bin/manpath ]; then
echo ""
echo "Reformatting manual pages:"
echo /usr/libexec/catman.local "${MANPATH}" | su -fm man
MANPATH=`/usr/bin/manpath -q`
if [ $? = 0 ]; then
if [ "x${MANPATH}" = "x" ]; then
echo "manpath failed to find any manpath directories"
else
# If possible, check global system configuration file
# for additional man(1) locales installed
if [ -r /etc/defaults/rc.conf ]; then
. /etc/defaults/rc.conf
elif [ -r /etc/rc.conf ]; then
. /etc/rc.conf
fi
# Preformat original, non-localized manpages
echo /usr/libexec/catman.local "${MANPATH}" | su -fm man
# Preformat localized manpages.
if [ "x${man_locales}" != "x" -a "${man_locales}" != "NO" ]; then
for i in ${man_locales}
do
LC_CTYPE=$i echo /usr/libexec/catman.local -L "${MANPATH}" | \
su -fm man
done
fi
fi
fi
fi