diff options
Diffstat (limited to 'www/seamonkey/pkg-deinstall.in')
-rw-r--r-- | www/seamonkey/pkg-deinstall.in | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/www/seamonkey/pkg-deinstall.in b/www/seamonkey/pkg-deinstall.in new file mode 100644 index 000000000..05ebb05e9 --- /dev/null +++ b/www/seamonkey/pkg-deinstall.in @@ -0,0 +1,22 @@ +#!/bin/sh +# +# $FreeBSD: ports/www/mozilla/pkg-deinstall.in,v 1.2 2004/11/07 22:24:21 marcus Exp $ +# +# 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 + +exit 0 |