diff --git a/x11/windowmaker/pkg/DESCR b/x11/windowmaker/pkg/DESCR index 61078ee3e1e..841c6ca6d5e 100644 --- a/x11/windowmaker/pkg/DESCR +++ b/x11/windowmaker/pkg/DESCR @@ -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 diff --git a/x11/windowmaker/pkg/INSTALL b/x11/windowmaker/pkg/INSTALL deleted file mode 100644 index bf5c9604cd3..00000000000 --- a/x11/windowmaker/pkg/INSTALL +++ /dev/null @@ -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