The Sunbird Project is a redesign of the Mozilla Calendar component. The goal is to produce a cross platform standalone calendar application based on Mozilla's XUL user interface language. WWW: http://www.mozilla.org/projects/calendar/sunbird.html Note: This is still in the beta stages and you will probably run in to a few bugs.
26 lines
571 B
Bash
26 lines
571 B
Bash
#!/bin/sh
|
|
#
|
|
# $FreeBSD$
|
|
# $MCom: ports/deskutils/sunbird/pkg-deinstall.in,v 1.4 2005/11/22 21:29:13 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 -rf ${MOZDIR}/extensions
|
|
rm -rf ${MOZDIR}/updates
|
|
rm -f ${MOZDIR}/chrome/app-chrome.manifest
|
|
rm -f ${MOZDIR}/chrome/*.rdf
|
|
rm -f ${MOZDIR}/component.reg
|
|
rm -f ${MOZDIR}/components/*.dat
|
|
|
|
exit 0
|