openbsd-ports/emulators/redhat/base/pkg/INSTALL
naddy 610d28033b - Somewhat updated redhat_base port by jasoni@ that goes into
emulators/redhat/base.  Also gets rid of RPM database.
- Add emulators/redhat/motif.
- Factor out common definitions into Makefile.inc.
2001-09-16 16:47:32 +00:00

73 lines
1.4 KiB
Plaintext

#!/bin/sh
# $OpenBSD: INSTALL,v 1.1.1.1 2001/09/16 16:47:32 naddy Exp $
#
# Pre/post-installation setup of redhat_base
# exit on errors, use a sane path and install prefix
#
set -e
PATH=/bin:/usr/bin:/sbin:/usr/sbin
PREFIX=${PKG_PREFIX:-/usr/local/emul/redhat}
# Function: tell the user what s/he needs to do to use the port just installed
#
do_notice_top()
{
echo
echo "+---------------"
echo "|"
}
do_notice_link()
{
echo "| /emul/linux already exists but it's not a symlink to $PREFIX."
echo "|"
echo "| To make this port active you must make /emul/linux a symlink to"
echo "| $PREFIX."
echo "|"
}
do_notice_bottom()
{
echo "| Installation of $1 complete. See compat_linux(8)"
echo "| for more information."
echo "|"
echo "+---------------"
echo
}
# 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)
install -d -o root -g bin -m 755 /emul
install -d -o root -g bin -m 755 $PREFIX
;;
POST-INSTALL)
do_notice_top
if [ -e /emul/linux ]; then
if [ x`readlink /emul/linux` != x"$PREFIX" ]; then
do_notice_link
fi
else
ln -sf $PREFIX /emul/linux
fi
do_notice_bottom $1
;;
*)
echo "usage: $0 distname { PRE-INSTALL | POST-INSTALL }" >&2
exit 1
;;
esac
exit 0