dcee03616e
PR: ports/39683 Submitted by: Statue <statue@freebsd.sinica.edu.tw>
15 lines
310 B
Bash
15 lines
310 B
Bash
#!/bin/sh
|
|
|
|
if [ "$2" != "INSTALL" ]; then
|
|
exit 0
|
|
fi
|
|
|
|
if [ ! -f /usr/local/share/ghostscript/7.05/lib/Fontmap.GS ]; then
|
|
echo ===
|
|
echo You do not have Ghostscript 7.05 installed!
|
|
echo
|
|
echo This port is specifically for version 7.05 or later, for
|
|
echo it fixes many bugs wrt. CIDFonts.
|
|
echo ===
|
|
fi
|