xref: /dragonfly/contrib/ncurses/misc/run_tic.in (revision fdd4e1e0)
1#!@SHELL@
2##############################################################################
3# Copyright (c) 1998-2002,2003 Free Software Foundation, Inc.                #
4#                                                                            #
5# Permission is hereby granted, free of charge, to any person obtaining a    #
6# copy of this software and associated documentation files (the "Software"), #
7# to deal in the Software without restriction, including without limitation  #
8# the rights to use, copy, modify, merge, publish, distribute, distribute    #
9# with modifications, sublicense, and/or sell copies of the Software, and to #
10# permit persons to whom the Software is furnished to do so, subject to the  #
11# following conditions:                                                      #
12#                                                                            #
13# The above copyright notice and this permission notice shall be included in #
14# all copies or substantial portions of the Software.                        #
15#                                                                            #
16# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR #
17# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,   #
18# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL    #
19# THE ABOVE COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER      #
20# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING    #
21# FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER        #
22# DEALINGS IN THE SOFTWARE.                                                  #
23#                                                                            #
24# Except as contained in this notice, the name(s) of the above copyright     #
25# holders shall not be used in advertising or otherwise to promote the sale, #
26# use or other dealings in this Software without prior written               #
27# authorization.                                                             #
28##############################################################################
29#
30# Author: Thomas E. Dickey 1996,2000
31#
32# $Id: run_tic.in,v 1.15 2003/09/06 22:31:44 Dan.Kegel Exp $
33# This script is used to install terminfo.src using tic.  We use a script
34# because the path checking is too awkward to do in a makefile.
35#
36# Assumes:
37#	The leaf directory names (lib, tabset, terminfo)
38#
39echo '** Building terminfo database, please wait...'
40#
41# The script is designed to be run from the misc/Makefile as
42#	make install.data
43
44: ${suffix=@PROG_EXT@}
45: ${DESTDIR=@DESTDIR@}
46: ${prefix=@prefix@}
47: ${exec_prefix=@exec_prefix@}
48: ${bindir=@bindir@}
49: ${top_srcdir=@top_srcdir@}
50: ${srcdir=@srcdir@}
51: ${datadir=@datadir@}
52: ${ticdir=@TERMINFO@}
53: ${source=@TERMINFO_SRC@}
54: ${LN_S="@LN_S@"}
55: ${THAT_CC=cc}
56: ${THIS_CC=cc}
57
58test -z "${DESTDIR}" && DESTDIR=
59
60# Allow tic to run either from the install-path, or from the build-directory.
61# Do not do this if we appear to be cross-compiling.  In that case, we rely
62# on the host's copy of tic to compile the terminfo database.
63if test "$THAT_CC" = "$THIS_CC" ; then
64case "$PATH" in
65:*) PATH=../progs:../lib:${DESTDIR}$bindir$PATH ;;
66*) PATH=../progs:../lib:${DESTDIR}$bindir:$PATH ;;
67esac
68export PATH
69SHLIB="sh $srcdir/shlib"
70else
71# Cross-compiling, so don't set PATH or run shlib.
72SHLIB=
73fi
74
75#
76# set another env var that doesn't get reset when `shlib' runs, so `shlib' uses
77# the PATH we just set.
78#
79NEWPATH=$PATH
80export NEWPATH
81PROG_BIN_DIR=${DESTDIR}$bindir
82export PROG_BIN_DIR
83
84TERMINFO=${DESTDIR}$ticdir ; export TERMINFO
85umask 022
86
87# Construct the name of the old (obsolete) pathname, e.g., /usr/lib/terminfo.
88TICDIR=`echo $TERMINFO | sed -e 's%/share/%/lib/%'`
89
90# Remove the old terminfo stuff; we don't care if it existed before, and it
91# would generate a lot of confusing error messages if we tried to overwrite it.
92# We explicitly remove its contents rather than the directory itself, in case
93# the directory is actually a symbolic link.
94( cd $TERMINFO && rm -fr ? 2>/dev/null )
95
96# If we're not installing into /usr/share/, we'll have to adjust the location
97# of the tabset files in terminfo.src (which are in a parallel directory).
98TABSET=`echo $ticdir | sed -e 's%/terminfo$%/tabset%'`
99if test "x$TABSET" != "x/usr/share/tabset" ; then
100	echo '** adjusting tabset paths'
101	TMP=${TMPDIR-/tmp}/$$
102	sed -e s%/usr/share/tabset%$TABSET%g $source >$TMP
103	trap "rm -f $TMP" 0 1 2 5 15
104	source=$TMP
105fi
106
107cat <<EOF
108Running tic to install $TERMINFO ...
109
110	You may see messages regarding unknown capabilities, e.g., AX.
111	These are extended terminal capabilities which can be compiled
112	using
113		tic -x
114	Read the INSTALL document before doing this - it can cause
115	problems for older ncurses applications.
116
117EOF
118if ( $SHLIB tic$suffix -s -o $TERMINFO $source )
119then
120	echo '** built new '$TERMINFO
121else
122	echo '? tic could not build '$TERMINFO
123	exit 1
124fi
125
126# Make a symbolic link to provide compatibility with applications that expect
127# to find terminfo under /usr/lib.  That is, we'll _try_ to do that.  Not
128# all systems support symbolic links, and those that do provide a variety
129# of options for 'test'.
130if test "$TICDIR" != "$TERMINFO" ; then
131	( rm -f $TICDIR 2>/dev/null )
132	if ( cd $TICDIR 2>/dev/null )
133	then
134		cd $TICDIR
135		TICDIR=`pwd`
136		if test $TICDIR != $TERMINFO ; then
137			# Well, we tried.  Some systems lie to us, so the
138			# installer will have to double-check.
139			echo "Verify if $TICDIR and $TERMINFO are the same."
140			echo "The new terminfo is in $TERMINFO; the other should be a link to it."
141			echo "Otherwise, remove $TICDIR and link it to $TERMINFO."
142		fi
143	else
144		cd ${DESTDIR}$prefix
145		# Construct a symbolic link that only assumes $ticdir has the
146		# same $prefix as the other installed directories.
147		RELATIVE=`echo $ticdir|sed -e 's%^'$prefix'/%%'`
148		if test "$RELATIVE" != "$ticdir" ; then
149			RELATIVE=../`echo $ticdir|sed -e 's%^'$prefix'/%%' -e 's%^/%%'`
150		fi
151		if ( @LN_S@ $RELATIVE $TICDIR )
152		then
153			echo '** sym-linked '$TICDIR' for compatibility'
154		else
155			echo '** could not sym-link '$TICDIR' for compatibility'
156		fi
157	fi
158fi
159