#!/bin/sh # # $FreeBSD$ # $MCom: ports/deskutils/sunbird/pkg-install.in,v 1.4 2005/06/28 05:39:59 adamw Exp $ # # Date created: Mon Nov 29, 2003 # Whom: Thierry Thomas () # Fix the chrome registry. umask 022 PATH=/bin:/usr/bin:/usr/local/bin [ "x$1" = "x" ] && exit 1 [ "x$2" != "xPOST-INSTALL" ] && exit 0 MOZDIR=%%MOZDIR%% REGXPCOM=${MOZDIR}/regxpcom SUNBIRD=${MOZDIR}/sunbird-bin echo "===> Building Chrome's registry..." cd ${MOZDIR} || exit 1 ./run-mozilla.sh ${REGXPCOM} || true ./run-mozilla.sh ${SUNBIRD} -register > /dev/null 2>&1 touch -f ${MOZDIR}/chrome/user-skins.rdf ${MOZDIR}/chrome/user-locales.rdf exit 0