summaryrefslogblamecommitdiffstats
path: root/www/mozilla/pkg-install.in
blob: 057d80bf594b0d69c7205fdf1a3bfacae85602d5 (plain) (tree)

































                                                                                 
#!/bin/sh
#
# $FreeBSD$
#    $MCom: ports/www/mozilla/pkg-install.in,v 1.9 2005/11/13 19:07:58 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%%
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
./run-mozilla.sh ${REGXPCOM} || true
./run-mozilla.sh ${REGCHROME} || true

if [ ! -d %%PREFIX%%/lib/browser_plugins ]; then
    mkdir -p %%PREFIX%%/lib/browser_plugins
fi

exit 0