mirror of
https://git.FreeBSD.org/ports.git
synced 2025-01-11 07:22:22 +00:00
15b6544926
plugins support one of web browsers and can take care of plist (depend on how you use it) at the same time. I have written a complete document and even show how it works in the www/firefox/Makefile.webplugins so be sure to read in there. If there is anything that isn't clear in the document, please feel free to ask and I will try my best to improvement it. FYI: GNOME 2.24 depends on this, so it's coming. BTW: It's based on www/linux-mplayer-plugin/Makefile.npapi with heavy modified. Approved by: portmgr
39 lines
963 B
Bash
39 lines
963 B
Bash
#!/bin/sh
|
|
#
|
|
# $MCom: ports-stable/www/mozilla/pkg-install.in,v 1.15 2008/08/04 05:01:00 mezz Exp $
|
|
#
|
|
# 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%%
|
|
MOZBIN=${MOZDIR}/%%MOZILLA_BIN%%
|
|
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
|
|
if [ -f ${REGXPCOM} ]; then
|
|
./run-mozilla.sh ${REGXPCOM} || true
|
|
fi
|
|
if [ -f ${REGCHROME} ]; then
|
|
./run-mozilla.sh ${REGCHROME} || true
|
|
fi
|
|
if [ -f ${MOZBIN} -a "${1%-*}" = "nvu" ]; then
|
|
./run-mozilla.sh ${MOZBIN} -register > /dev/null 2>&1
|
|
fi
|
|
cp -R %%LOCALBASE%%/lib/xpi/symlinks/%%MOZILLA%%/ %%MOZDIR%%/extensions/ > /dev/null 2>&1
|
|
|
|
exit 0
|