bye INSTALL;

This commit is contained in:
xsa 2004-10-01 09:32:07 +00:00
parent 9c72605082
commit a5aa39dec3
3 changed files with 8 additions and 75 deletions

View File

@ -1,25 +0,0 @@
#!/bin/sh
# $OpenBSD: DEINSTALL,v 1.2 2004/04/13 10:19:59 xsa Exp $
#
# moria de-installation
set -e
PATH=/bin:/usr/bin:/sbin:/usr/sbin
PREFIX=${PKG_PREFIX:-/usr/local}
SCORE_DIR=/var/games/moria
if [ ${PKG_DELETE_EXTRA} != Yes -a -d $SCORE_DIR ]; 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

View File

@ -1,48 +0,0 @@
#!/bin/sh
# $OpenBSD: INSTALL,v 1.2 2003/04/14 15:02:09 wilfried 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

View File

@ -1,4 +1,4 @@
@comment $OpenBSD: PLIST,v 1.4 2004/09/15 00:46:10 espie Exp $
@comment $OpenBSD: PLIST,v 1.5 2004/10/01 09:32:07 xsa Exp $
bin/moria
share/moria/
share/moria/hours
@ -8,6 +8,12 @@ share/moria/owizcmds.hlp
share/moria/roglcmds.hlp
share/moria/rwizcmds.hlp
share/moria/scores
@mode 775
@group games
@sample /var/games/moria/
@mode 664
@sample /var/games/moria/scores
@mode
@group
share/moria/version.hlp
share/moria/welcome.hlp
@extraunexec rm -rf /var/games/moria