52ed0baa26
. By default, install things in a location that won't conflict with the other nethack ports. . Build and install the recover utility so that users can recover their game if it crashes (bump PORTREVISION for this). . Sync with the nethack34 port: . Use PKGNAMESUFFIX to select the graphics type. . Remove the COMMENT in the slave ports. . Take maintainership of nethack33 and nethack33-nox11. . Unbreak the nethack33-qt port.
16 lines
348 B
Bash
16 lines
348 B
Bash
#!/bin/sh
|
|
#
|
|
# $FreeBSD$
|
|
|
|
if [ "${2}" = "POST-DEINSTALL" ]; then
|
|
if [ -d "${PKG_PREFIX}/%%HACKDIR%%" ]; then
|
|
echo
|
|
echo "The ${1} save files have not been removed."
|
|
echo
|
|
echo "If you are deleting ${1} permanently then you can "
|
|
echo "remove the save files with the command:"
|
|
echo
|
|
echo " rm -rf ${PKG_PREFIX}/%%HACKDIR%%"
|
|
echo
|
|
fi
|
|
fi
|