freebsd-ports/x11-fonts/bitmap-fonts/files/DEINSTALL.tmpl
Shigeyuki Fukushima fe1f7ae281 Add INSTALL and DEINSTALL scripts.
Fix mkfontdir problem (Port's 'make install' doesn't execute mkfontdir).
Auto-execute 'xset fp rehash' in INSTALL/DEINSTALL script.
Submitted by:	TAOKA Satoshi <taoka@infonets.hiroshima-u.ac.jp>
1999-08-19 12:28:51 +00:00

13 lines
392 B
Bash

#!/bin/sh
if [ "x$2" = "xPOST-DEINSTALL" ]; then
cd ${PKG_PREFIX}/%%FONTSDIR%%; ${PKG_PREFIX}/bin/mkfontdir
${PKG_PREFIX}/bin/xset fp rehash ||
(
echo "**********************************************************"
echo "You should restart X server or do 'xset fp rehash' command"
echo "to enable this update."
echo "**********************************************************"
)
fi