![]() ![]() | ![]() |
File: [cvs.NetBSD.org] / pkgsrc / x11 / xterm / Attic / INSTALL.openwin (download)
Revision 1.2, Tue Oct 9 19:19:17 2007 UTC (15 years, 3 months ago) by martti
Remove trailing spaces. |
#!/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