2cd503bcdb
- update firefox-esr to 24.1.0 - update thunderbird to 24.1.0 - update seamonkey to 22.0 - update libxul to 24.1.0 - don't remove/add share/applications directory - remove checks for older gecko releases from bsd.gecko.mk - drop support for FreeBSD 9.0 Not staged yet. I started working on it, but didn't finish it in time for this release. I'll try to make the next one in 6 weeks. In collaboration with: Jan Beich
28 lines
723 B
Bash
28 lines
723 B
Bash
#!/bin/sh
|
|
#
|
|
# $MCom: ports/www/mozilla/pkg-deinstall.in,v 1.25 2008/07/26 19:07: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
|