diff options
author | reed <reed@pkgsrc.org> | 2008-01-12 04:01:31 +0000 |
---|---|---|
committer | reed <reed@pkgsrc.org> | 2008-01-12 04:01:31 +0000 |
commit | d583488e1037dadd16acb4af8164a79fefb1561a (patch) | |
tree | 936ede66ec9de94e2bc93d31352f33382f082a02 /x11/xterm | |
parent | c345933fd4901042825e02c8f55591e55898072d (diff) | |
download | pkgsrc-d583488e1037dadd16acb4af8164a79fefb1561a.tar.gz |
Remove the MESSAGE.Solaris and INSTALL.openwin.
The INSTALL.openwin is broken.
I reported on December 1 that it create a broken INSTALL script.
The SunOS check was commented out in pkgsrc/x11/xterm/Makefile revision
1.37. It looks like it was accidently committed as it has nothing to do
with the log message.
This caused the INSTALL.openwin stuff to be used on non-SunOS systems.
That INSTALL.openwin support is broken anyways. The sed changed @PREFIX@
but that was not used.
Diffstat (limited to 'x11/xterm')
-rw-r--r-- | x11/xterm/INSTALL.openwin | 43 | ||||
-rw-r--r-- | x11/xterm/MESSAGE.Solaris | 7 |
2 files changed, 0 insertions, 50 deletions
diff --git a/x11/xterm/INSTALL.openwin b/x11/xterm/INSTALL.openwin deleted file mode 100644 index 8234e4427e5..00000000000 --- a/x11/xterm/INSTALL.openwin +++ /dev/null @@ -1,43 +0,0 @@ -#!/bin/sh -# -# $NetBSD: INSTALL.openwin,v 1.2 2007/10/09 19:19:17 martti Exp $ - -PKGNAME=$1 -STAGE=$2 - -CONFLICTS="bin/resize bin/xterm lib/app-defaults/XTerm man/man1/resize.1 man/man1/xterm.1" - -case ${STAGE} in -PRE-INSTALL) - cd ${PKG_PREFIX} - for FILE in $CONFLICTS - do - if [ -f $FILE ] - then - @MV@ $FILE ${FILE}.openwin - fi - done - ;; - -POST-INSTALL) - cd ${PKG_PREFIX}/lib/X11/etc - TERMINFO=@LOCALBASE@/share/lib/terminfo - export TERMINFO - /usr/5bin/tic xterm.terminfo - ;; - -DEINSTALL) - ;; - -POST-DEINSTALL) - cd ${PKG_PREFIX} - for FILE in $CONFLICTS - do - if [ -f ${FILE}.openwin ] - then - @MV@ ${FILE}.openwin $FILE - fi - done - ;; -esac -exit 0 diff --git a/x11/xterm/MESSAGE.Solaris b/x11/xterm/MESSAGE.Solaris deleted file mode 100644 index 97d5898648b..00000000000 --- a/x11/xterm/MESSAGE.Solaris +++ /dev/null @@ -1,7 +0,0 @@ -=========================================================================== -$NetBSD: MESSAGE.Solaris,v 1.1 2005/02/16 22:05:36 reed Exp $ - -This package should be deinstalled before you update to a newer Solaris -or OpenWindows version. - -=========================================================================== |