aboutsummaryrefslogtreecommitdiff
path: root/www/kompozer/pkg-install.in
diff options
context:
space:
mode:
Diffstat (limited to 'www/kompozer/pkg-install.in')
-rw-r--r--www/kompozer/pkg-install.in33
1 files changed, 0 insertions, 33 deletions
diff --git a/www/kompozer/pkg-install.in b/www/kompozer/pkg-install.in
deleted file mode 100644
index c3c37df29cac..000000000000
--- a/www/kompozer/pkg-install.in
+++ /dev/null
@@ -1,33 +0,0 @@
-#!/bin/sh
-#
-# $FreeBSD$
-# $MCom: ports/www/nvu/pkg-install.in,v 1.1 2005/11/14 04:12:09 ahze Exp $
-#
-# Date created: Mon Nov 29, 2003
-# Whom: Thierry Thomas (<thierry@pompo.net>)
-# Fix the chrome registry.
-
-umask 022
-PATH=/bin:/usr/bin:/usr/local/bin
-
-[ "x$1" = "x" ] && exit 1
-[ "x$2" != "xPOST-INSTALL" ] && exit 0
-
-NVUDIR=%%MOZDIR%%
-REGXPCOM=${NVUDIR}/regxpcom
-REGCHROME=${NVUDIR}/regchrome
-NVUBIN=${NVUDIR}/nvu-bin
-
-echo "===> Building Chrome's registry..."
-rm -rf ${NVUDIR}/chrome/overlayinfo
-rm -f ${NVUDIR}/chrome/*.rdf
-mkdir -p ${NVUDIR}/chrome/overlayinfo
-rm -f ${NVUDIR}/component.reg
-rm -rf ${NVUDIR}/extensions
-
-cd ${NVUDIR} || exit 1
-./run-mozilla.sh ${REGXPCOM} || true
-./run-mozilla.sh ${REGCHROME} || true
-./run-mozilla.sh ${NVUBIN} -register > /dev/null 2>&1
-
-exit 0