summaryrefslogtreecommitdiffstats
path: root/www/mozilla/pkg-install.in
diff options
context:
space:
mode:
authorahze <ahze@df743ca5-7f9a-e211-a948-0013205c9059>2007-09-20 07:51:38 +0800
committerahze <ahze@df743ca5-7f9a-e211-a948-0013205c9059>2007-09-20 07:51:38 +0800
commita2b49fab6c35874c47dadae1d3a2a68f4ef86b3d (patch)
tree99f12488384e2f82b7cc4f795caad91d90022c15 /www/mozilla/pkg-install.in
parent3f736810f8d63c4369e83d93695e6dec7a46307d (diff)
downloadmarcuscom-ports-a2b49fab6c35874c47dadae1d3a2a68f4ef86b3d.tar
marcuscom-ports-a2b49fab6c35874c47dadae1d3a2a68f4ef86b3d.tar.gz
marcuscom-ports-a2b49fab6c35874c47dadae1d3a2a68f4ef86b3d.tar.bz2
marcuscom-ports-a2b49fab6c35874c47dadae1d3a2a68f4ef86b3d.tar.lz
marcuscom-ports-a2b49fab6c35874c47dadae1d3a2a68f4ef86b3d.tar.xz
marcuscom-ports-a2b49fab6c35874c47dadae1d3a2a68f4ef86b3d.tar.zst
marcuscom-ports-a2b49fab6c35874c47dadae1d3a2a68f4ef86b3d.zip
Moved to ports-experimental
git-svn-id: svn://creme-brulee.marcuscom.com/ports/trunk@9690 df743ca5-7f9a-e211-a948-0013205c9059
Diffstat (limited to 'www/mozilla/pkg-install.in')
-rw-r--r--www/mozilla/pkg-install.in42
1 files changed, 0 insertions, 42 deletions
diff --git a/www/mozilla/pkg-install.in b/www/mozilla/pkg-install.in
deleted file mode 100644
index 8fcc2b0ea..000000000
--- a/www/mozilla/pkg-install.in
+++ /dev/null
@@ -1,42 +0,0 @@
-#!/bin/sh
-#
-# $MCom: ports/www/mozilla/pkg-install.in,v 1.19 2006/12/09 15:32:06 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" != "xPOST-INSTALL" ] && exit 0
-
-MOZDIR=%%MOZDIR%%
-MOZBIN=${MOZDIR}/%%MOZILLA_BIN%%
-REGXPCOM=${MOZDIR}/regxpcom
-REGCHROME=${MOZDIR}/regchrome
-
-echo "===> Building Chrome's registry..."
-rm -rf ${MOZDIR}/chrome/overlayinfo
-rm -f ${MOZDIR}/chrome/*.rdf
-mkdir -p ${MOZDIR}/chrome/overlayinfo
-rm -f ${MOZDIR}/component.reg
-
-cd ${MOZDIR} || exit 1
-if [ -f ${REGXPCOM} ]; then
- ./run-mozilla.sh ${REGXPCOM} || true
-fi
-if [ -f ${REGCHROME} ]; then
- ./run-mozilla.sh ${REGCHROME} || true
-fi
-if [ -f ${MOZBIN} -a "${1%-*}" = "nvu" ]; then
- ./run-mozilla.sh ${MOZBIN} -register > /dev/null 2>&1
-fi
-if [ ! -d %%PREFIX%%/lib/browser_plugins ]; then
- mkdir -p %%PREFIX%%/lib/browser_plugins
-fi
-cp -R %%LOCALBASE%%/lib/npapi/symlinks/%%MOZILLA%%/ %%MOZDIR%%/plugins/ > /dev/null 2>&1
-cp -R %%LOCALBASE%%/lib/xpi/symlinks/%%MOZILLA%%/ %%MOZDIR%%/extensions/ > /dev/null 2>&1
-
-exit 0