mirror of
https://git.FreeBSD.org/ports.git
synced 2024-10-31 21:57:12 +00:00
13 lines
390 B
Cheetah
13 lines
390 B
Cheetah
|
#!/bin/sh
|
||
|
|
||
|
if [ "x$2" = "xPOST-INSTALL" ]; 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
|