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