mirror of
https://git.FreeBSD.org/ports.git
synced 2024-12-12 03:00:28 +00:00
fbfa560ad9
Release notes: http://www.mozilla.com/en-US/firefox/2.0/releasenotes/ Special thanks to marcus and many others for helping test and fixing bugs!
29 lines
729 B
Bash
29 lines
729 B
Bash
#!/bin/sh
|
|
#
|
|
# $MCom: ports-stable/www/mozilla/pkg-deinstall.in,v 1.9 2006/10/18 17:29:07 ahze 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
|
|
rm -f ${MOZDIR}/components.ini
|
|
rm -f ${MOZDIR}/defaults.ini
|
|
rm -f ${MOZDIR}/chrome/app-chrome.manifest
|
|
rm -rf ${MOZDIR}/updates
|
|
find %%MOZDIR%%/plugins/ -depth 1 -type l -delete > /dev/null 2>&1
|
|
find %%MOZDIR%%/extensions/ -depth 1 -type l -delete > /dev/null 2>&1
|
|
|
|
exit 0
|