bc7a1fddcc
- change maintainer's email PR: ports/102182 Submitted by: Oleksandr Bezpalko (maintainer)
14 lines
232 B
Bash
14 lines
232 B
Bash
#!/bin/sh
|
|
# $FreeBSD$
|
|
#
|
|
|
|
if [ "$2" != "PRE-INSTALL" ]; then
|
|
exit 0
|
|
fi
|
|
|
|
if [ ! -x "/usr/games/strfile" ]; then
|
|
echo ""
|
|
echo "You must have the ``games'' distribution installed to use this port."
|
|
echo ""
|
|
exit 1
|
|
fi
|