xref: /dragonfly/contrib/ncurses/misc/run_tic.in (revision e0eb7cf0)
1#!@SHELL@
2# $Id: run_tic.in,v 1.37 2020/02/02 23:34:34 tom Exp $
3##############################################################################
4# Copyright 2019,2020 Thomas E. Dickey                                       #
5# Copyright 2000-2012,2017 Free Software Foundation, Inc.                    #
6#                                                                            #
7# Permission is hereby granted, free of charge, to any person obtaining a    #
8# copy of this software and associated documentation files (the "Software"), #
9# to deal in the Software without restriction, including without limitation  #
10# the rights to use, copy, modify, merge, publish, distribute, distribute    #
11# with modifications, sublicense, and/or sell copies of the Software, and to #
12# permit persons to whom the Software is furnished to do so, subject to the  #
13# following conditions:                                                      #
14#                                                                            #
15# The above copyright notice and this permission notice shall be included in #
16# all copies or substantial portions of the Software.                        #
17#                                                                            #
18# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR #
19# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,   #
20# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL    #
21# THE ABOVE COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER      #
22# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING    #
23# FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER        #
24# DEALINGS IN THE SOFTWARE.                                                  #
25#                                                                            #
26# Except as contained in this notice, the name(s) of the above copyright     #
27# holders shall not be used in advertising or otherwise to promote the sale, #
28# use or other dealings in this Software without prior written               #
29# authorization.                                                             #
30##############################################################################
31#
32# Author: Thomas E. Dickey 1996-on
33#
34# This script is used to install terminfo.src using tic.  We use a script
35# because the path checking is too awkward to do in a makefile.
36#
37# Assumes:
38#	The leaf directory names (lib, tabset, terminfo)
39#
40echo "** Building terminfo database, please wait..."
41#
42# The script is designed to be run from the misc/Makefile as
43#	make install.data
44
45: ${suffix:=@EXEEXT@}
46: ${DESTDIR:=@DESTDIR@}
47: ${prefix:=@prefix@}
48: ${exec_prefix:=@exec_prefix@}
49: ${bindir:=@bindir@}
50: ${top_srcdir:=@top_srcdir@}
51: ${srcdir:=@srcdir@}
52: ${datarootdir:=@datarootdir@}
53: ${datadir:=@datadir@}
54: ${TIC_PATH:=@TIC@}
55: ${ticdir:=@TERMINFO@}
56: ${source:=@TERMINFO_SRC@}
57: ${LN_S:="@LN_S@"}
58: ${cross_compiling:=no}
59: ${ext_funcs:=@NCURSES_EXT_FUNCS@}
60
61test -z "${DESTDIR}" && DESTDIR=
62
63# Allow tic to run either from the install-path, or from the build-directory.
64# Do not do this if we appear to be cross-compiling.  In that case, we rely
65# on the host's copy of tic to compile the terminfo database.
66if test "x$cross_compiling" = "xno"
67then
68	if test -f ../progs/tic$suffix
69	then
70		case "$PATH" in
71		\@PATH_SEPARATOR@*)
72			PATH="../progs@PATH_SEPARATOR@../lib@PATH_SEPARATOR@${DESTDIR}$bindir$PATH"
73			;;
74		*)
75			PATH="../progs@PATH_SEPARATOR@../lib@PATH_SEPARATOR@${DESTDIR}$bindir@PATH_SEPARATOR@$PATH"
76			;;
77		esac
78		export PATH
79		if test @DFT_LWR_MODEL@ = shared
80		then
81			SHLIB="sh $srcdir/shlib"
82			TIC_PATH="$SHLIB tic"
83		else
84			TIC_PATH="tic"
85		fi
86	elif test "$TIC_PATH" = unknown
87	then
88		echo "? no tic program found"
89		exit 1
90	fi
91else
92	# Cross-compiling, so don't set PATH or run shlib.
93	SHLIB=
94	# reset $suffix, since it applies to the target, not the build platform.
95	suffix=
96fi
97
98
99# set another env var that doesn't get reset when `shlib' runs, so `shlib' uses
100# the PATH we just set.
101SHLIB_PATH=$PATH
102export SHLIB_PATH
103
104# set a variable to simplify environment update in shlib
105SHLIB_HOST=@host_os@
106export SHLIB_HOST
107
108# don't use user's TERMINFO variable
109unset TERMINFO_DIRS
110TERMINFO="${DESTDIR}$ticdir" ; export TERMINFO
111umask 022
112
113# Construct the name of the old (obsolete) pathname, e.g., /usr/lib/terminfo.
114TICDIR=`echo "$TERMINFO" | sed -e 's%/share/\([^/]*\)$%/lib/\1%'`
115
116# Parent directory may not exist, which would confuse the install for hashed
117# database.  Fix.
118PARENT=`echo "$TERMINFO" | sed -e 's%/[^/]*$%%'`
119if test -n "$PARENT"
120then
121	test -d $PARENT || mkdir -p $PARENT
122fi
123
124# Remove the old terminfo stuff; we don't care if it existed before, and it
125# would generate a lot of confusing error messages if we tried to overwrite it.
126# We explicitly remove its contents rather than the directory itself, in case
127# the directory is actually a symbolic link.
128if test -d "$TERMINFO"
129then
130	( cd "$TERMINFO" && rm -fr ? 2>/dev/null )
131elif test -f "$TERMINFO.db"
132then
133	( rm -f "$TERMINFO.db" 2>/dev/null )
134fi
135
136if test "$ext_funcs" = 1 ; then
137cat <<EOF
138Running $TIC_PATH to install $TERMINFO ...
139
140	You may see messages regarding extended capabilities, e.g., AX.
141	These are extended terminal capabilities which are compiled
142	using
143		tic -x
144	If you have ncurses 4.2 applications, you should read the INSTALL
145	document, and install the terminfo without the -x option.
146
147EOF
148if ( $TIC_PATH -x -s -o "$TERMINFO" $source )
149then
150	echo "** built new $TERMINFO"
151else
152	echo "? tic could not build $TERMINFO"
153	exit 1
154fi
155else
156cat <<EOF
157Running $TIC_PATH to install $TERMINFO ...
158
159	You may see messages regarding unknown capabilities, e.g., AX.
160	These are extended terminal capabilities which may be compiled
161	using
162		tic -x
163	If you have ncurses 4.2 applications, you should read the INSTALL
164	document, and install the terminfo without the -x option.
165
166EOF
167if ( $TIC_PATH -s -o "$TERMINFO" $source )
168then
169	echo "** built new $TERMINFO"
170else
171	echo "? tic could not build $TERMINFO"
172	exit 1
173fi
174fi
175
176# Make a symbolic link to provide compatibility with applications that expect
177# to find terminfo under /usr/lib.  That is, we'll _try_ to do that.  Not
178# all systems support symbolic links, and those that do provide a variety
179# of options for 'test'.
180if test "$TICDIR" != "$TERMINFO" ; then
181	( rm -f "$TICDIR" 2>/dev/null )
182	if ( cd "$TICDIR" 2>/dev/null )
183	then
184		cd "$TICDIR"
185		TICDIR=`pwd`
186		if test "$TICDIR "!= "$TERMINFO "; then
187			# Well, we tried.  Some systems lie to us, so the
188			# installer will have to double-check.
189			echo "Verify if $TICDIR and $TERMINFO are the same."
190			echo "The new terminfo is in $TERMINFO; the other should be a link to it."
191			echo "Otherwise, remove $TICDIR and link it to $TERMINFO."
192		fi
193	else
194		cd ${DESTDIR}$prefix
195		# Construct a symbolic link that only assumes $ticdir has the
196		# same $prefix as the other installed directories.
197		RELATIVE=`echo $ticdir|sed -e 's%^'$prefix'/%%'`
198		if test "$RELATIVE" != "$ticdir" ; then
199			RELATIVE=../`echo $ticdir|sed -e 's%^'$prefix'/%%' -e 's%^/%%'`
200		fi
201		if ( @LN_S@ "$RELATIVE" "$TICDIR" )
202		then
203			echo "** sym-linked $TICDIR for compatibility"
204		else
205			echo "** could not sym-link $TICDIR for compatibility"
206		fi
207	fi
208fi
209# vile:shmode
210