move the blurb about running wmaker.inst to DESCR

This commit is contained in:
wilfried 2001-11-12 10:29:51 +00:00
parent a9a3d26241
commit 1fa9804f34
2 changed files with 2 additions and 42 deletions

View File

@ -3,6 +3,8 @@ integration support for GNUstep applications. It tries to emulate
the elegant look and feel of the NEXTSTEP(tm) GUI. It is relatively
fast, feature rich, and easy to configure and use.
Each user must run wmaker.inst before running Window Maker.
The i18n flavor enables locale support and installs locale files.
To select a particular locale at runtime you must set the LANG
environment variable to the locale you want. If your language uses

View File

@ -1,42 +0,0 @@
#! /bin/sh
# $OpenBSD: INSTALL,v 1.2 2000/08/18 21:46:00 brad Exp $
#
# Pre/port-installation setup of WindowMaker
# exit on errors, use a sane path and install prefix
#
set -e
PATH=/bin:/usr/bin:/sbin:/usr/sbin
PREFIX=${PKG_PREFIX:-/usr/local}
do_notice()
{
echo
echo "***"
echo "Each user must run $PREFIX/bin/wmaker.inst before running Window Maker."
echo "***"
echo
if [ -d /etc/WindowMaker ]; then
echo "***"
echo "The directory /etc/WindowMaker may be removed."
echo "***"
echo
fi
}
# Verify/process the command
#
case $2 in
PRE-INSTALL)
: nothing to pre-install for this port
;;
POST-INSTALL)
do_notice $1
;;
*)
echo "usage: $0 distname { PRE-INSTALL | POST-INSTALL }" >&2
exit 1
;;
esac
exit 0