freebsd-ports/www/kompozer/pkg-deinstall.in
Michael Johnson ec5eae1574 - Update to 0.70, now based upon firefox 1.0 codebase.
Patches & PKG[DE]INSTALL scripts obtained from: www/mozilla or www/firefox
2005-01-10 07:24:49 +00:00

25 lines
473 B
Bash

#!/bin/sh
#
# $FreeBSD$
#
# 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
NVUDIR=%%NVUDIR%%
rm -rf ${NVUDIR}/chrome/overlayinfo
rm -f ${NVUDIR}/chrome/*.rdf
rm -f ${NVUDIR}/component.reg
rm -f ${NVUDIR}/components.ini
rm -f ${NVUDIR}/defaults.ini
rm -f ${NVUDIR}/components/*.dat
rm -rf ${NVUDIR}/extensions
exit 0