freebsd-ports/www/firefox/files/pkg-deinstall.in
Dmitry Marakasov 063341fe36 - Remove leftover empty directories, providing clean deinstallation and fixing stage-qa
PR:		203496
Submitted by:	amdmi3
Approved by:	maintainer timeout (gecko, 3 weeks)
2015-10-23 17:29:39 +00:00

30 lines
762 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
rmdir ${MOZDIR}/chrome
rmdir ${MOZDIR}
exit 0