mirror of
https://git.FreeBSD.org/ports.git
synced 2024-12-14 03:10:47 +00:00
67b5465482
* Install a GNOME desktop icon [1] * Correct installation when root's shell is non-standard (e.g. /usr/local/bin/bash) [2] Submitted by: ahze [1] Clemens Fischer <ino-qc@spotteswoode.de.eu.org> [2]
36 lines
1.0 KiB
Bash
36 lines
1.0 KiB
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:/usr/local/bin
|
|
|
|
[ "x$1" = "x" ] && exit 1
|
|
[ "x$2" != "xPOST-INSTALL" ] && exit 0
|
|
|
|
MOZDIR=%%MOZDIR%%
|
|
REGXPCOM=${MOZDIR}/regxpcom
|
|
REGCHROME=${MOZDIR}/regchrome
|
|
THUNDERBIRD=${MOZDIR}/thunderbird-bin
|
|
|
|
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
|
|
|
|
# Instantiate the extension space as root.
|
|
su - root -c "env PATH=${PATH} %%X11BASE%%/bin/xinit %%MOZDIR%%/run-mozilla.sh ${THUNDERBIRD} -install-global-extension -- %%X11BASE%%/bin/Xvfb :1001" > /dev/null 2>&1
|
|
su - root -c "env PATH=${PATH} %%X11BASE%%/bin/xinit %%MOZDIR%%/run-mozilla.sh ${THUNDERBIRD} -install-global-theme -- %%X11BASE%%/bin/Xvfb :1001" > /dev/null 2>&1
|
|
|
|
exit 0
|