mirror of
https://git.FreeBSD.org/ports.git
synced 2024-10-31 21:57:12 +00:00
7d93c4a8f5
A PostScript and PDF previewer that uses the Motif widget set. PR: 5915 Submitted by: Brian Handy <handy@physics.montana.edu>
10 lines
258 B
Bash
10 lines
258 B
Bash
#!/bin/sh
|
|
if [ "$2" != "POST-INSTALL" ]; then
|
|
exit 0
|
|
fi
|
|
if ! which gs >/dev/null; then
|
|
echo "I can't find ghostscript (gs) in your search path."
|
|
echo "Please install your favorite version of ghostscript,"
|
|
echo "otherwise this program is useless."
|
|
fi
|