freebsd-ports/japanese/nethack34/files/pkg-deinstall.in
John Marino f715aadad7 Stage japanese/nethack34 and unbreak
* Update to the latest jnethack patch
 * Remove BROKEN flag
 * Add staging support (inspired by games/nethack)
 * Use base compiler instead of gcc
 * Quick fix for bug 192743 (chown and chmod)
 * marino: Use SUB_FILES instead of roll-your-own pkg-deinstall
 * marino: Remove unnecessary loop for REINPLACE_CMD
 * marino: Simplify docs installation, remove two loops
 * marino: Unmask configure commands
 * marino: Use parentheses and "&&" instead of just ";" on compounds
 * marino: Beef up pkg-descr for those unfamiliar with NetHack

PR:		193206
Submitted by:	WATANABE Kazuhiro
2014-09-06 17:19:47 +00:00

14 lines
334 B
Bash

#!/bin/sh
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