blob: 48e3883260571c6c2baedaa115df2a2f8c11ea51 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
|
#!/bin/sh
#
# $NetBSD: DEINSTALL,v 1.3 2002/10/08 11:50:04 jlam Exp $
#
XMCDDIR=${PKG_PREFIX}/lib/X11/xmcd
case ${STAGE} in
POST-DEINSTALL)
${CAT} << EOF
=============================================================================
If you won't be using ${PKGNAME} any longer, you may want to remove
any cached CD information in
${XMCDDIR}/cdinfo
any local discography collection in
${XMCDDIR}/discog
and any drive information in
${XMCDDIR}/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
;;
esac
|