mirror of
https://git.FreeBSD.org/ports.git
synced 2024-11-23 00:43:28 +00:00
bc7a1fddcc
- change maintainer's email PR: ports/102182 Submitted by: Oleksandr Bezpalko (maintainer)
15 lines
232 B
Bash
15 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
|