mirror of
https://git.FreeBSD.org/ports.git
synced 2024-11-30 01:15:52 +00:00
403955523c
ports (e.g. www/ump) depend on this directory being there. Reported by: pointyhat via kris
34 lines
689 B
Bash
34 lines
689 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
|
|
|
|
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
|