40 lines
771 B
Plaintext
40 lines
771 B
Plaintext
#!/bin/sh
|
|
# $OpenBSD: INSTALL,v 1.3 2004/02/15 19:44:01 wilfried Exp $
|
|
#
|
|
# Pre/post-installation setup of mozilla
|
|
|
|
# exit on errors, use a sane path and install prefix
|
|
#
|
|
set -e
|
|
PATH=/bin:/usr/bin:/sbin:/usr/sbin
|
|
PREFIX=${PKG_PREFIX:-/usr/local}
|
|
MOZ=${PREFIX}/mozilla
|
|
|
|
# Verify proper execution
|
|
#
|
|
if [ $# -ne 2 ]; then
|
|
echo "usage: $0 distname { PRE-INSTALL | POST-INSTALL }" >&2
|
|
exit 1
|
|
fi
|
|
|
|
# Verify/process the command
|
|
#
|
|
case $2 in
|
|
PRE-INSTALL)
|
|
: nothing to pre-install for this port
|
|
;;
|
|
POST-INSTALL)
|
|
cd ${MOZ}
|
|
rm -rf /tmp/.mozilla
|
|
env HOME=/tmp LD_LIBRARY_PATH=${MOZ} ./regxpcom
|
|
env HOME=/tmp LD_LIBRARY_PATH=${MOZ} ./regchrome
|
|
rm -rf /tmp/.mozilla
|
|
;;
|
|
*)
|
|
echo "usage: $0 distname { PRE-INSTALL | POST-INSTALL }" >&2
|
|
exit 1
|
|
;;
|
|
esac
|
|
|
|
exit 0
|