aboutsummaryrefslogtreecommitdiff
path: root/www/firefox3-devel/pkg-deinstall.in
blob: 3fe1644fc054d662c061531df3031248b0b2038c (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
#!/bin/sh
#
# $FreeBSD$
#
# 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

MOZDIR=%%MOZDIR%%

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

exit 0