summaryrefslogtreecommitdiff
path: root/games/xpat2/DEINSTALL
diff options
context:
space:
mode:
Diffstat (limited to 'games/xpat2/DEINSTALL')
-rw-r--r--games/xpat2/DEINSTALL26
1 files changed, 26 insertions, 0 deletions
diff --git a/games/xpat2/DEINSTALL b/games/xpat2/DEINSTALL
new file mode 100644
index 00000000000..4222bccb223
--- /dev/null
+++ b/games/xpat2/DEINSTALL
@@ -0,0 +1,26 @@
+#!/bin/sh
+#
+# $NetBSD: DEINSTALL,v 1.1 2001/11/01 00:57:16 zuntum Exp $
+
+PKGNAME=$1
+STAGE=$2
+
+case ${STAGE} in
+DEINSTALL)
+ ;;
+POST-DEINSTALL)
+ cat << EOF
+===========================================================================
+If you won't be using ${PKGNAME} any longer, you may want to remove the
+following files:
+
+ /var/games/xpat.log
+===========================================================================
+EOF
+ ;;
+*)
+ echo "Unexpected argument: ${STAGE}"
+ exit 1
+ ;;
+esac
+exit 0