diff options
Diffstat (limited to 'www/firefox3-devel/pkg-deinstall.in')
-rw-r--r-- | www/firefox3-devel/pkg-deinstall.in | 29 |
1 files changed, 0 insertions, 29 deletions
diff --git a/www/firefox3-devel/pkg-deinstall.in b/www/firefox3-devel/pkg-deinstall.in deleted file mode 100644 index 3e4923596f08..000000000000 --- a/www/firefox3-devel/pkg-deinstall.in +++ /dev/null @@ -1,29 +0,0 @@ -#!/bin/sh -# -# $FreeBSD$ -# $MCom: ports/www/firefox-devel/pkg-deinstall.in,v 1.8 2005/09/10 04:56:53 marcus 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}/chrome/icons -rm -f ${MOZDIR}/chrome/app-chrome.manifest -rm -f ${MOZDIR}/chrome/*.rdf -rm -f ${MOZDIR}/component.reg -rm -f ${MOZDIR}/components.ini -rm -f ${MOZDIR}/defaults.ini -rm -f ${MOZDIR}/components/*.dat -rm -rf ${MOZDIR}/extensions -rm -rf ${MOZDIR}/updates - -exit 0 |