openbsd-ports/graphics/gif2png/files/web2png
2000-07-23 22:11:30 +00:00

19 lines
426 B
Bash

#!/bin/sh
#
# Wrapper for the real web2png. Checks whether Python is installed,
# and runs the real web2png or alerts the user, as appropriate.
#
PREFIX=@PREFIX@
if [ -x $PREFIX/bin/python ]; then
exec $PREFIX/libexec/web2png.bin
else
cat <<EOF
The web2png program requires Python, which does not appear to be
installed on this system. Python can be found in the OpenBSD Ports
Collection under lang/python.
EOF
exit 1
fi