mirror of
https://git.FreeBSD.org/ports.git
synced 2024-12-13 03:03:15 +00:00
e7b81852c3
- Improve highscore file handling - Pass maintainership to games@ - Fix insallation from user - Strip binary
17 lines
288 B
Bash
17 lines
288 B
Bash
#!/bin/sh
|
|
#
|
|
# $FreeBSD$
|
|
|
|
[ "$2" != "POST-DEINSTALL" ] && exit 0
|
|
|
|
if [ -s "%%SCOREFILE%%" ]; then
|
|
echo
|
|
echo "To completely remove the port, please remove the following"
|
|
echo "file manually, if it's no longer needed:"
|
|
echo
|
|
echo " %%SCOREFILE%%"
|
|
echo
|
|
else
|
|
rm -f "%%SCOREFILE%%"
|
|
fi
|