summaryrefslogtreecommitdiffstats
path: root/www/nvu/pkg-deinstall.in
blob: ce4cc2906f5e18c87901f9ef3793e443d81f0bff (plain) (blame)
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
#!/bin/sh
#
# $FreeBSD$
#    $MCom$
#
# Date created:         Mon Nov 29, 2003
# Whom:             Thierry Thomas (<thierry@pompo.net>)
# Fix the chrome registry.

umask 022
PATH=/bin:/usr/bin

[ "x$1" = "x" ] && exit 1
[ "x$2" != "xDEINSTALL" ] && exit 0

NVUDIR=%%MOZDIR%%

rm -rf ${NVUDIR}/chrome/overlayinfo
rm -f ${NVUDIR}/chrome/*.rdf
rm -f ${NVUDIR}/component.reg
rm -f ${NVUDIR}/components.ini
rm -f ${NVUDIR}/defaults.ini
rm -f ${NVUDIR}/components/*.dat
rm -rf ${NVUDIR}/extensions

exit 0