mirror of
https://git.FreeBSD.org/ports.git
synced 2024-11-01 22:05:08 +00:00
bbe8ef209a
PR: 21703 Submitted by: Jing-Tang Keith Jang <keith@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/6.01/lib/Fontmap.GS ]; then
|
|
echo ===
|
|
echo You do not have Ghostscript 6.01 installed!
|
|
echo
|
|
echo This port is specifically for version 6.01 or later, for
|
|
echo it fixes many bugs wrt. CIDFonts.
|
|
echo ===
|
|
fi
|