summaryrefslogtreecommitdiff
path: root/x11/xterm/INSTALL.openwin
blob: cb237abc52a83c5a8771b45fd39fc6cd8ca0794d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
#!/bin/sh
#
# $NetBSD: INSTALL.openwin,v 1.1 2005/06/12 05:06:11 jlam 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