mirror of
git://slackware.nl/current.git
synced 2025-01-03 23:03:22 +01:00
5a12e7c134
Wed Aug 26 10:00:38 CDT 2009 Slackware 13.0 x86_64 is released as stable! Thanks to everyone who helped make this release possible -- see the RELEASE_NOTES for the credits. The ISOs are off to the replicator. This time it will be a 6 CD-ROM 32-bit set and a dual-sided 32-bit/64-bit x86/x86_64 DVD. We're taking pre-orders now at store.slackware.com. Please consider picking up a copy to help support the project. Once again, thanks to the entire Slackware community for all the help testing and fixing things and offering suggestions during this development cycle. As always, have fun and enjoy! -P.
23 lines
1,012 B
Bash
23 lines
1,012 B
Bash
#!/bin/sh
|
|
#BLURB="Run mkfontdir and mkfontscale in font directories."
|
|
# Just in case.
|
|
chroot . /sbin/ldconfig 1> /dev/null 2> /dev/null
|
|
if [ -x usr/bin/fc-cache ]; then
|
|
if [ "$COLOR" = "on" -o -r $TMP/SeTcolor ]; then
|
|
dialog --title "MKFONTDIR AND MKFONTSCALE UPDATE" --infobox \
|
|
"Please wait while we run mkfontscale and mkfontdir in \
|
|
your font directories." 4 68
|
|
else
|
|
echo "Please wait while we run mkfontscale and mkfontdir in your font directories."
|
|
fi
|
|
for fontdir in 100dpi 75dpi OTF Speedo TTF Type1 cyrillic ; do
|
|
if [ -d usr/share/fonts/$fontdir ]; then
|
|
chroot . mkfontscale /usr/share/fonts/$fontdir 1> /dev/null 2> /dev/null
|
|
chroot . mkfontdir /usr/share/fonts/$fontdir 1> /dev/null 2> /dev/null
|
|
fi
|
|
done
|
|
if [ -d usr/share/fonts/misc ]; then
|
|
chroot . mkfontscale /usr/share/fonts/misc 1> /dev/null 2> /dev/null
|
|
chroot . mkfontdir -e /usr/share/fonts/encodings -e /usr/share/fonts/encodings/large /usr/share/fonts/misc 1> /dev/null 2> /dev/null
|
|
fi
|
|
fi
|