diff options
author | asami <asami@FreeBSD.org> | 1997-01-14 17:13:16 +0800 |
---|---|---|
committer | asami <asami@FreeBSD.org> | 1997-01-14 17:13:16 +0800 |
commit | f13d94e747f5b4c8dd2c99dfe6c269f3860a889b (patch) | |
tree | e00b705613ff044b3ed77f5129ea816d34918146 /print/gv/pkg-install | |
parent | 8e3ead4e2a247e63adddfd5b5f513c6a3ae8912d (diff) | |
download | freebsd-ports-gnome-f13d94e747f5b4c8dd2c99dfe6c269f3860a889b.tar.gz freebsd-ports-gnome-f13d94e747f5b4c8dd2c99dfe6c269f3860a889b.tar.zst freebsd-ports-gnome-f13d94e747f5b4c8dd2c99dfe6c269f3860a889b.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/gv/pkg-install')
-rw-r--r-- | print/gv/pkg-install | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/print/gv/pkg-install b/print/gv/pkg-install new file mode 100644 index 000000000000..2d7c72fb0528 --- /dev/null +++ b/print/gv/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 |