]> ncurses.scripts.mit.edu Git - ncurses.git/blob - misc/run_tic.sh
ncurses 5.0
[ncurses.git] / misc / run_tic.sh
1 #!/bin/sh
2 ##############################################################################
3 # Copyright (c) 1998 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 <dickey@clark.net> 1996
31 #
32 # $Id: run_tic.sh,v 1.10 1998/05/31 00:29:34 mooney 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 # Parameters:
37 #       $1 = nominal directory in which to find 'tic', i.e., $(bindir).
38 #       $2 = source-directory, i.e., $(srcdir)
39 #       $3 = destination-directory path, i.e., $(ticdir)
40 #       $4 = install-prefix, if any
41 #
42 # Assumes:
43 #       The leaf directory names (bin, lib, shared, tabset, terminfo)
44 #
45 echo '** Building terminfo database, please wait...'
46 #
47 # Parameter parsing is primarily for debugging.  The script is designed to
48 # be run from the misc/Makefile as
49 #       make install.data
50 prefix=/usr/local
51 if test $# != 0 ; then
52         bindir=$1
53         shift
54         PREFIX=`echo $bindir | sed -e 's/\/bin$//'`
55         test -n "$PREFIX" && test "x$PREFIX" != "x$bindir" && prefix=$PREFIX
56 else
57         bindir=$prefix/bin
58 fi
59
60 if test $# != 0 ; then
61         srcdir=$1
62         shift
63 else
64         srcdir=.
65 fi
66
67 if test $# != 0 ; then
68         ticdir=$1
69         shift
70 else
71         ticdir=$prefix/share/terminfo
72 fi
73
74 if test $# != 0 ; then
75         IP=$1
76         shift
77 else
78         IP=""
79 fi
80
81 # Allow tic to run either from the install-path, or from the build-directory
82 case "$PATH" in
83 :*) PATH=../progs:$IP$bindir$PATH ;;
84 *) PATH=../progs:$IP$bindir:$PATH ;;
85 esac
86 export PATH
87
88 #
89 # set another env var that doesn't get reset when `shlib' runs, so `shlib' uses
90 # the PATH we just set.
91 #
92 NEWPATH=$PATH
93 export NEWPATH
94 PROG_BIN_DIR=$IP$bindir
95 export PROG_BIN_DIR
96
97 TERMINFO=$IP$ticdir ; export TERMINFO
98 umask 022
99
100 # Construct the name of the old (obsolete) pathname, e.g., /usr/lib/terminfo.
101 TICDIR=`echo $TERMINFO | sed -e 's/\/share\//\/lib\//'`
102
103 # Remove the old terminfo stuff; we don't care if it existed before, and it
104 # would generate a lot of confusing error messages if we tried to overwrite it.
105 # We explicitly remove its contents rather than the directory itself, in case
106 # the directory is actually a symbolic link.
107 ( rm -fr $TERMINFO/[0-9A-Za-z] 2>/dev/null )
108
109 # If we're not installing into /usr/share/, we'll have to adjust the location
110 # of the tabset files in terminfo.src (which are in a parallel directory).
111 TABSET=`echo $ticdir | sed -e 's/\/terminfo$/\/tabset/'`
112 SRC=$srcdir/terminfo.src
113 if test "x$TABSET" != "x/usr/share/tabset" ; then
114         echo '** adjusting tabset paths'
115         TMP=${TMPDIR-/tmp}/$$
116         sed -e s:/usr/share/tabset:$TABSET:g $SRC >$TMP
117         trap "rm -f $TMP" 0 1 2 5 15
118         SRC=$TMP
119 fi
120
121 if ( $srcdir/shlib tic -s $SRC )
122 then
123         echo '** built new '$TERMINFO
124 else
125         echo '? tic could not build '$TERMINFO
126         exit 1
127 fi
128
129 # Make a symbolic link to provide compatibility with applications that expect
130 # to find terminfo under /usr/lib.  That is, we'll _try_ to do that.  Not
131 # all systems support symbolic links, and those that do provide a variety
132 # of options for 'test'.
133 if test "$TICDIR" != "$TERMINFO" ; then
134         ( rm -f $TICDIR 2>/dev/null )
135         if ( cd $TICDIR 2>/dev/null )
136         then
137                 cd $TICDIR
138                 TICDIR=`pwd`
139                 if test $TICDIR != $TERMINFO ; then
140                         # Well, we tried.  Some systems lie to us, so the
141                         # installer will have to double-check.
142                         echo "Verify if $TICDIR and $TERMINFO are the same."
143                         echo "The new terminfo is in $TERMINFO; the other should be a link to it."
144                         echo "Otherwise, remove $TICDIR and link it to $TERMINFO."
145                 fi
146         else
147                 cd $IP$prefix
148                 # Construct a symbolic link that only assumes $ticdir has the
149                 # same $prefix as the other installed directories.
150                 RELATIVE=`echo $ticdir|sed -e 's:^'$prefix'/::'`
151                 if test "$RELATIVE" != "$ticdir" ; then
152                         RELATIVE=../`echo $ticdir|sed -e 's:^'$prefix'/::' -e 's:^/::'`
153                 fi
154                 if ( ln -s $RELATIVE $TICDIR )
155                 then
156                         echo '** linked '$TICDIR' for compatibility'
157                 fi
158         fi
159 fi