bf3fff33fe
shows up. Tested by: Tom McLaughlin <tmclaugh@sdf.lonestar.org>
37 lines
900 B
Bash
37 lines
900 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" != "xPOST-INSTALL" ] && exit 0
|
|
|
|
MOZDIR=%%MOZDIR%%
|
|
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
|
|
rm -rf ${MOZDIR}/extensions
|
|
|
|
cd ${MOZDIR} || exit 1
|
|
./run-mozilla.sh ${REGXPCOM} || true
|
|
./run-mozilla.sh ${REGCHROME} || true
|
|
mkdir -p ${MOZDIR}/extensions
|
|
cp -rp ${MOZDIR}/defaults/profile/extensions/* ${MOZDIR}/extensions
|
|
mv -f ${MOZDIR}/extensions/installed-extensions.txt \
|
|
${MOZDIR}/extensions/installed-extensions-processed.txt
|
|
cp -p ${MOZDIR}/extensions.port/Extensions.rdf \
|
|
${MOZDIR}/extensions
|
|
|
|
exit 0
|