diff options
author | Satoshi Asami <asami@FreeBSD.org> | 1997-01-14 09:13:16 +0000 |
---|---|---|
committer | Satoshi Asami <asami@FreeBSD.org> | 1997-01-14 09:13:16 +0000 |
commit | 75a9e1beaa12bbf61f88db9a68ae4abb619967ed (patch) | |
tree | 5be6284597bc58f7874ab9d784cd27f5c080c829 /print/ghostview/pkg-install | |
parent | 6c5c6833f120e0c5809e92697461ecdf4e10db84 (diff) | |
download | freebsd-ports-75a9e1beaa12bbf61f88db9a68ae4abb619967ed.zip |
Remove RUN_DEPENDS to gs, there are too many versions around (3
English and 3 Japanese) and we don't want the package to have a
@pkgdep on a particular version.
Diffstat (limited to 'print/ghostview/pkg-install')
-rw-r--r-- | print/ghostview/pkg-install | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/print/ghostview/pkg-install b/print/ghostview/pkg-install new file mode 100644 index 000000000000..2d7c72fb0528 --- /dev/null +++ b/print/ghostview/pkg-install @@ -0,0 +1,9 @@ +#!/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 |