2000-10-03 11:43:11 -04:00
|
|
|
#!/bin/sh
|
|
|
|
|
2002-05-15 13:49:01 -04:00
|
|
|
GSVER=7.05
|
2000-10-03 11:43:11 -04:00
|
|
|
GSDIR=${PKG_PREFIX}/share/ghostscript
|
|
|
|
FONTMAP=${GSDIR}/${GSVER}/lib/Fontmap.GS
|
|
|
|
|
|
|
|
# Run just once.
|
|
|
|
if [ "x$2" != "xPOST-INSTALL" ]; then
|
|
|
|
exit 0
|
|
|
|
fi
|
|
|
|
|
|
|
|
echo "/MOEKai-Regular-ETen-B5-H (MOEKai-Regular-ETen-B5-H.gsf) ;" >> ${FONTMAP}
|
|
|
|
echo "/MOEKai-Regular-ETen-B5-V (MOEKai-Regular-ETen-B5-V.gsf) ;" >> ${FONTMAP}
|
|
|
|
echo "/MOESung-Regular-ETen-B5-H (MOESung-Regular-ETen-B5-H.gsf) ;" >> ${FONTMAP}
|
|
|
|
echo "/MOESung-Regular-ETen-B5-V (MOESung-Regular-ETen-B5-V.gsf) ;" >> ${FONTMAP}
|