freebsd-ports/www/mozilla/pkg-deinstall.in
Joe Marcus Clarke 1f8833e5e7 * Chase the glib20 shared lib version
* Disable cairo support as the new cairo API does not work with mozilla
2005-11-05 06:21:04 +00:00

24 lines
469 B
Bash

#!/bin/sh
#
# $FreeBSD$
# $MCom: ports/www/mozilla/pkg-deinstall.in,v 1.7 2005/07/13 08:45:47 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
exit 0