localize it
Submitted by: "Alexey Zelkin" <phantom@crimea.edu>
This commit is contained in:
parent
39aca5c05e
commit
77adc291c6
@ -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
|
||||
|
@ -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
|
||||
|
Loading…
x
Reference in New Issue
Block a user