1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-12-14 03:10:47 +00:00
freebsd-ports/www/nvu/pkg-install.in
Michael Johnson ec5eae1574 - Update to 0.70, now based upon firefox 1.0 codebase.
Patches & PKG[DE]INSTALL scripts obtained from: www/mozilla or www/firefox
2005-01-10 07:24:49 +00:00

33 lines
714 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:/usr/local/bin
[ "x$1" = "x" ] && exit 1
[ "x$2" != "xPOST-INSTALL" ] && exit 0
NVUDIR=%%NVUDIR%%
REGXPCOM=${NVUDIR}/regxpcom
REGCHROME=${NVUDIR}/regchrome
NVUBIN=${NVUDIR}/nvu-bin
echo "===> Building Chrome's registry..."
rm -rf ${NVUDIR}/chrome/overlayinfo
rm -f ${NVUDIR}/chrome/*.rdf
mkdir -p ${NVUDIR}/chrome/overlayinfo
rm -f ${NVUDIR}/component.reg
rm -rf ${NVUDIR}/extensions
cd ${NVUDIR} || exit 1
./run-mozilla.sh ${REGXPCOM} || true
./run-mozilla.sh ${REGCHROME} || true
./run-mozilla.sh ${NVUBIN} -register > /dev/null 2>&1
exit 0