summaryrefslogtreecommitdiffstats
path: root/deskutils/sunbird/pkg-install.in
blob: 88bd2fcc48270b8e208948ba229ab4b38d4b5c1e (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
#!/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 (<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

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