blob: 950873d7f15e87194937bd12356d9d60eb031c15 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
# $NetBSD: DEINSTALL,v 1.2 2006/06/19 23:16:33 jlam Exp $
case "${STAGE}" in
DEINSTALL)
INPUT_MESA_SCRIPTDIR="${PKG_PREFIX}/lib/xmms/Input/Meta"
${RMDIR} -p ${INPUT_MESA_SCRIPTDIR} 2>/dev/null || ${TRUE}
if ${TEST} -d ${INPUT_MESA_SCRIPTDIR}; then
${CAT} << EOF
======================================================================
The xmms-meta-input player scripts were not wiped out by this deletion
process. If you don't want them around, then please remove the
following directory:
${INPUT_MESA_SCRIPTDIR}
======================================================================
EOF
fi
;;
esac
|