remember to always 'add' files to cvs before commiting... gee.

This commit is contained in:
lebel 2001-08-11 03:23:46 +00:00
parent 2fd6a8a77d
commit b115294f4f
2 changed files with 73 additions and 0 deletions

25
games/moria/pkg/DEINSTALL Normal file
View File

@ -0,0 +1,25 @@
#!/bin/sh
# $OpenBSD: DEINSTALL,v 1.1 2001/08/11 03:23:46 lebel Exp $
#
# dopewars de-installation
set -e
PATH=/bin:/usr/bin:/sbin:/usr/sbin
PREFIX=${PKG_PREFIX:-/usr/local}
SCORE_DIR=/var/games/moria
if [ -f $SCORE_FILE ]; then
echo
echo "+---------------"
echo "| To completely deinstall the $1 package you need to perform"
echo "| this step as root:"
echo "|"
echo "| rm -rf $SCORE_DIR"
echo "|"
echo "| Do not do this if you plan on re-installing $1"
echo "| at some future time."
echo "+---------------"
echo
fi
exit 0

48
games/moria/pkg/INSTALL Normal file
View File

@ -0,0 +1,48 @@
#!/bin/sh
# $OpenBSD: INSTALL,v 1.1 2001/08/11 03:23:46 lebel Exp $
#
# Pre/post-installation setup of moria
# exit on errors, use a sane path and install prefix
#
set -e
PATH=/bin:/usr/bin:/sbin:/usr/sbin
PREFIX=${PKG_PREFIX:-/usr/local}
SCORE_DIR=/var/games/moria
SCORE_FILE=${SCORE_DIR}/scores
# Function: install a blank file to be used as the moria score file
#
do_install()
{
install -m 775 -d $SCORE_DIR
touch $SCORE_FILE
chown root.games $SCORE_FILE
chmod 664 $SCORE_FILE
}
# 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)
if [ ! -f $SCORE_FILE ]; then
do_install $1
fi
;;
*)
echo "usage: $0 distname { PRE-INSTALL | POST-INSTALL }" >&2
exit 1
;;
esac
exit 0