diff options
author | Joe Marcus Clarke <marcus@FreeBSD.org> | 2004-08-05 19:53:30 +0000 |
---|---|---|
committer | Joe Marcus Clarke <marcus@FreeBSD.org> | 2004-08-05 19:53:30 +0000 |
commit | 854b5eebc761bf5ad3bc99b744ad7b523def6d55 (patch) | |
tree | fffa1645c1350c17e8db2404d29f836b2c0233bb /www/firefox36/pkg-deinstall.in | |
parent | 3765ddf2bb4b48a58c3642ae6ee6bc7366a1986c (diff) |
Notes
Diffstat (limited to 'www/firefox36/pkg-deinstall.in')
-rw-r--r-- | www/firefox36/pkg-deinstall.in | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/www/firefox36/pkg-deinstall.in b/www/firefox36/pkg-deinstall.in new file mode 100644 index 000000000000..3fe1644fc054 --- /dev/null +++ b/www/firefox36/pkg-deinstall.in @@ -0,0 +1,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 |