freebsd-ports/www/firefox-devel/pkg-deinstall.in
Joe Marcus Clarke 854b5eebc7 Update to 0.9.3 to fix a few security issues:
http://bugzilla.mozilla.org/buglist.cgi?bug_id=251381,249004,250906,253121

Also, add a pkg-deinstall script to remove the auto-generated registry files.

PR:		70031
2004-08-05 19:53:30 +00:00

23 lines
413 B
Bash

#!/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