ae52bc8089
http://library.gnome.org/misc/release-notes/2.26/ for a list of what's new. On the FreeBSD front, we introduced a port of libxul 1.9 as an alternative for Firefox 2.0 as a Gecko provider. Almost all of the Gecko consumers can make use of this provider by setting: WITH_GECKO=libxul The GNOME 2.26 port was done by ahze, kwm, marcus, and mezz with contributions by Joseph S. Atkinson, Peter Wemm, Eric L. Chen, Martin Matuska, Craig Butler, and Pawel Worach.
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
|