From b115294f4f2719765e1dfca0f4a72438fcb9be17 Mon Sep 17 00:00:00 2001 From: lebel Date: Sat, 11 Aug 2001 03:23:46 +0000 Subject: [PATCH] remember to always 'add' files to cvs before commiting... gee. --- games/moria/pkg/DEINSTALL | 25 ++++++++++++++++++++ games/moria/pkg/INSTALL | 48 +++++++++++++++++++++++++++++++++++++++ 2 files changed, 73 insertions(+) create mode 100644 games/moria/pkg/DEINSTALL create mode 100644 games/moria/pkg/INSTALL diff --git a/games/moria/pkg/DEINSTALL b/games/moria/pkg/DEINSTALL new file mode 100644 index 00000000000..f9526f8464a --- /dev/null +++ b/games/moria/pkg/DEINSTALL @@ -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 diff --git a/games/moria/pkg/INSTALL b/games/moria/pkg/INSTALL new file mode 100644 index 00000000000..ac36662a8e4 --- /dev/null +++ b/games/moria/pkg/INSTALL @@ -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