summaryrefslogtreecommitdiff
path: root/audio/gqmpeg/DEINSTALL
diff options
context:
space:
mode:
Diffstat (limited to 'audio/gqmpeg/DEINSTALL')
-rw-r--r--audio/gqmpeg/DEINSTALL27
1 files changed, 27 insertions, 0 deletions
diff --git a/audio/gqmpeg/DEINSTALL b/audio/gqmpeg/DEINSTALL
new file mode 100644
index 00000000000..757ac795d37
--- /dev/null
+++ b/audio/gqmpeg/DEINSTALL
@@ -0,0 +1,27 @@
+#!/bin/sh
+#
+# $NetBSD: DEINSTALL,v 1.1 2001/11/01 00:16:43 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
+any skins that were installed in ${PKG_PREFIX}/share/gqmpeg/skins.
+=============================================================================
+EOF
+ ;;
+
+*)
+ echo "Unexpected argument: ${STAGE}"
+ exit 1
+ ;;
+esac
+exit 0