mirror of
https://git.FreeBSD.org/ports.git
synced 2024-12-04 01:48:54 +00:00
b895aa0bf9
- Remove thunderbird-devel - Remove thunderbird from supported geckos for 4.x Release notes: http://www.mozilla.com/thunderbird/releases/1.5.html
27 lines
595 B
Bash
27 lines
595 B
Bash
#!/bin/sh
|
|
#
|
|
# $FreeBSD$
|
|
# $MCom: ports/mail/thunderbird-devel/pkg-install.in,v 1.7 2005/11/18 10:05:25 ahze 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
|
|
THUNDERBIRD=${MOZDIR}/thunderbird-bin
|
|
|
|
echo "===> Building Chrome's registry..."
|
|
|
|
cd ${MOZDIR} || exit 1
|
|
./run-mozilla.sh ${REGXPCOM} || true
|
|
./run-mozilla.sh ${THUNDERBIRD} -register > /dev/null 2>&1
|
|
|
|
exit 0
|