2baa7640f4
represents work in progress towards Firefox 1.5. See http://www.mozilla.org/products/firefox/releases/1.5.html for more details. Most of this work was done by ahze and mnag.
29 lines
662 B
Bash
29 lines
662 B
Bash
#!/bin/sh
|
|
#
|
|
# $FreeBSD$
|
|
# $MCom: ports/www/firefox-devel/pkg-deinstall.in,v 1.8 2005/09/10 04:56:53 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 -rf ${MOZDIR}/chrome/icons
|
|
rm -f ${MOZDIR}/chrome/app-chrome.manifest
|
|
rm -f ${MOZDIR}/chrome/*.rdf
|
|
rm -f ${MOZDIR}/component.reg
|
|
rm -f ${MOZDIR}/components.ini
|
|
rm -f ${MOZDIR}/defaults.ini
|
|
rm -f ${MOZDIR}/components/*.dat
|
|
rm -rf ${MOZDIR}/extensions
|
|
rm -rf ${MOZDIR}/updates
|
|
|
|
exit 0
|