summaryrefslogtreecommitdiff
path: root/audio/xmcd/DEINSTALL
diff options
context:
space:
mode:
authorzuntum <zuntum@pkgsrc.org>2001-11-01 00:17:43 +0000
committerzuntum <zuntum@pkgsrc.org>2001-11-01 00:17:43 +0000
commit4bd6ecc9c5f9c2701cc486c58e3cba832ea80948 (patch)
treed4386dbce28f01eeb55f8ca8a2aa60ffd8c64648 /audio/xmcd/DEINSTALL
parent43f305596211d2331adc78af0e8f41194fa8ab10 (diff)
downloadpkgsrc-4bd6ecc9c5f9c2701cc486c58e3cba832ea80948.tar.gz
Move pkg/ files into package's toplevel directory
Diffstat (limited to 'audio/xmcd/DEINSTALL')
-rw-r--r--audio/xmcd/DEINSTALL32
1 files changed, 32 insertions, 0 deletions
diff --git a/audio/xmcd/DEINSTALL b/audio/xmcd/DEINSTALL
new file mode 100644
index 00000000000..f4982ac2612
--- /dev/null
+++ b/audio/xmcd/DEINSTALL
@@ -0,0 +1,32 @@
+#!/bin/sh
+#
+# $NetBSD: DEINSTALL,v 1.1 2001/11/01 00:18:18 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 cached CD informations in
+ @PREFIX@/lib/X11/xmcd/cddb
+and any drive informations in
+ @PREFIX@/lib/X11/xmcd/config
+e.g. by deleting the corresponding directory. Please note that config
+files will get overwritten on re-install if you don't save them manually.
+=============================================================================
+EOF
+ ;;
+
+*)
+ echo "Unexpected argument: ${STAGE}"
+ exit 1
+ ;;
+esac
+exit 0