diff options
author | marcus <marcus@df743ca5-7f9a-e211-a948-0013205c9059> | 2005-03-10 08:44:08 +0800 |
---|---|---|
committer | marcus <marcus@df743ca5-7f9a-e211-a948-0013205c9059> | 2005-03-10 08:44:08 +0800 |
commit | e94d50b816875628428577d6a01717dc794dba18 (patch) | |
tree | b49e0cb118c4aab51229a0b0f036067fb459648a /mail/thunderbird-devel/pkg-install.in | |
parent | 7c7642157586a0f2ee4eabff72d7ef7372e8f8b7 (diff) | |
download | marcuscom-ports-e94d50b816875628428577d6a01717dc794dba18.tar marcuscom-ports-e94d50b816875628428577d6a01717dc794dba18.tar.gz marcuscom-ports-e94d50b816875628428577d6a01717dc794dba18.tar.bz2 marcuscom-ports-e94d50b816875628428577d6a01717dc794dba18.tar.lz marcuscom-ports-e94d50b816875628428577d6a01717dc794dba18.tar.xz marcuscom-ports-e94d50b816875628428577d6a01717dc794dba18.tar.zst marcuscom-ports-e94d50b816875628428577d6a01717dc794dba18.zip |
Remove these ports now that the updates have been merged into the ports
tree.
git-svn-id: svn://creme-brulee.marcuscom.com/ports/trunk@3913 df743ca5-7f9a-e211-a948-0013205c9059
Diffstat (limited to 'mail/thunderbird-devel/pkg-install.in')
-rw-r--r-- | mail/thunderbird-devel/pkg-install.in | 32 |
1 files changed, 0 insertions, 32 deletions
diff --git a/mail/thunderbird-devel/pkg-install.in b/mail/thunderbird-devel/pkg-install.in deleted file mode 100644 index 041348623..000000000 --- a/mail/thunderbird-devel/pkg-install.in +++ /dev/null @@ -1,32 +0,0 @@ -#!/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 -./run-mozilla.sh ${THUNDERBIRD} -register > /dev/null 2>&1 - -exit 0 |