1999-08-24 01:06:48 +00:00
|
|
|
#!/bin/sh
|
|
|
|
##############################################################################
|
2000-07-03 09:24:12 +00:00
|
|
|
# Copyright (c) 1998,2000 Free Software Foundation, Inc. #
|
1999-08-24 01:06:48 +00:00
|
|
|
# #
|
|
|
|
# Permission is hereby granted, free of charge, to any person obtaining a #
|
|
|
|
# copy of this software and associated documentation files (the "Software"), #
|
|
|
|
# to deal in the Software without restriction, including without limitation #
|
|
|
|
# the rights to use, copy, modify, merge, publish, distribute, distribute #
|
|
|
|
# with modifications, sublicense, and/or sell copies of the Software, and to #
|
|
|
|
# permit persons to whom the Software is furnished to do so, subject to the #
|
|
|
|
# following conditions: #
|
|
|
|
# #
|
|
|
|
# The above copyright notice and this permission notice shall be included in #
|
|
|
|
# all copies or substantial portions of the Software. #
|
|
|
|
# #
|
|
|
|
# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR #
|
|
|
|
# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, #
|
|
|
|
# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL #
|
|
|
|
# THE ABOVE COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER #
|
|
|
|
# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING #
|
|
|
|
# FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER #
|
|
|
|
# DEALINGS IN THE SOFTWARE. #
|
|
|
|
# #
|
|
|
|
# Except as contained in this notice, the name(s) of the above copyright #
|
|
|
|
# holders shall not be used in advertising or otherwise to promote the sale, #
|
|
|
|
# use or other dealings in this Software without prior written #
|
|
|
|
# authorization. #
|
|
|
|
##############################################################################
|
|
|
|
#
|
|
|
|
# Author: Thomas E. Dickey <dickey@clark.net> 1996
|
|
|
|
#
|
2000-07-03 09:24:12 +00:00
|
|
|
# $Id: run_tic.sh,v 1.12 2000/07/01 19:25:13 tom Exp $
|
1999-08-24 01:06:48 +00:00
|
|
|
# This script is used to install terminfo.src using tic. We use a script
|
|
|
|
# because the path checking is too awkward to do in a makefile.
|
|
|
|
#
|
|
|
|
# Parameters:
|
|
|
|
# $1 = nominal directory in which to find 'tic', i.e., $(bindir).
|
|
|
|
# $2 = source-directory, i.e., $(srcdir)
|
|
|
|
# $3 = destination-directory path, i.e., $(ticdir)
|
|
|
|
# $4 = install-prefix, if any
|
|
|
|
#
|
|
|
|
# Assumes:
|
|
|
|
# The leaf directory names (bin, lib, shared, tabset, terminfo)
|
|
|
|
#
|
|
|
|
echo '** Building terminfo database, please wait...'
|
|
|
|
#
|
|
|
|
# Parameter parsing is primarily for debugging. The script is designed to
|
|
|
|
# be run from the misc/Makefile as
|
|
|
|
# make install.data
|
|
|
|
prefix=/usr/local
|
|
|
|
if test $# != 0 ; then
|
|
|
|
bindir=$1
|
|
|
|
shift
|
|
|
|
PREFIX=`echo $bindir | sed -e 's/\/bin$//'`
|
|
|
|
test -n "$PREFIX" && test "x$PREFIX" != "x$bindir" && prefix=$PREFIX
|
|
|
|
else
|
|
|
|
bindir=$prefix/bin
|
|
|
|
fi
|
|
|
|
|
|
|
|
if test $# != 0 ; then
|
|
|
|
srcdir=$1
|
|
|
|
shift
|
|
|
|
else
|
|
|
|
srcdir=.
|
|
|
|
fi
|
|
|
|
|
|
|
|
if test $# != 0 ; then
|
|
|
|
ticdir=$1
|
|
|
|
shift
|
|
|
|
else
|
|
|
|
ticdir=$prefix/share/terminfo
|
|
|
|
fi
|
|
|
|
|
|
|
|
if test $# != 0 ; then
|
|
|
|
IP=$1
|
|
|
|
shift
|
|
|
|
else
|
|
|
|
IP=""
|
|
|
|
fi
|
|
|
|
|
|
|
|
# Allow tic to run either from the install-path, or from the build-directory
|
|
|
|
case "$PATH" in
|
|
|
|
:*) PATH=../progs:$IP$bindir$PATH ;;
|
|
|
|
*) PATH=../progs:$IP$bindir:$PATH ;;
|
|
|
|
esac
|
|
|
|
export PATH
|
|
|
|
|
|
|
|
#
|
|
|
|
# set another env var that doesn't get reset when `shlib' runs, so `shlib' uses
|
|
|
|
# the PATH we just set.
|
|
|
|
#
|
|
|
|
NEWPATH=$PATH
|
|
|
|
export NEWPATH
|
|
|
|
PROG_BIN_DIR=$IP$bindir
|
|
|
|
export PROG_BIN_DIR
|
|
|
|
|
|
|
|
TERMINFO=$IP$ticdir ; export TERMINFO
|
|
|
|
umask 022
|
|
|
|
|
|
|
|
# Construct the name of the old (obsolete) pathname, e.g., /usr/lib/terminfo.
|
|
|
|
TICDIR=`echo $TERMINFO | sed -e 's/\/share\//\/lib\//'`
|
|
|
|
|
|
|
|
# Remove the old terminfo stuff; we don't care if it existed before, and it
|
|
|
|
# would generate a lot of confusing error messages if we tried to overwrite it.
|
|
|
|
# We explicitly remove its contents rather than the directory itself, in case
|
|
|
|
# the directory is actually a symbolic link.
|
|
|
|
( rm -fr $TERMINFO/[0-9A-Za-z] 2>/dev/null )
|
|
|
|
|
|
|
|
# If we're not installing into /usr/share/, we'll have to adjust the location
|
|
|
|
# of the tabset files in terminfo.src (which are in a parallel directory).
|
|
|
|
TABSET=`echo $ticdir | sed -e 's/\/terminfo$/\/tabset/'`
|
|
|
|
SRC=$srcdir/terminfo.src
|
|
|
|
if test "x$TABSET" != "x/usr/share/tabset" ; then
|
|
|
|
echo '** adjusting tabset paths'
|
|
|
|
TMP=${TMPDIR-/tmp}/$$
|
|
|
|
sed -e s:/usr/share/tabset:$TABSET:g $SRC >$TMP
|
|
|
|
trap "rm -f $TMP" 0 1 2 5 15
|
|
|
|
SRC=$TMP
|
|
|
|
fi
|
|
|
|
|
2000-07-03 09:24:12 +00:00
|
|
|
cat <<EOF
|
|
|
|
Running tic to install $TERMINFO ...
|
|
|
|
|
|
|
|
You may see messages regarding unknown capabilities, e.g., AX.
|
|
|
|
These are extended terminal capabilities which can be compiled
|
|
|
|
using
|
|
|
|
tic -x
|
|
|
|
Read the INSTALL document before doing this - it can cause
|
|
|
|
problems for older ncurses applications.
|
|
|
|
|
|
|
|
EOF
|
1999-08-24 01:06:48 +00:00
|
|
|
if ( $srcdir/shlib tic -s $SRC )
|
|
|
|
then
|
|
|
|
echo '** built new '$TERMINFO
|
|
|
|
else
|
|
|
|
echo '? tic could not build '$TERMINFO
|
|
|
|
exit 1
|
|
|
|
fi
|
|
|
|
|
|
|
|
# Make a symbolic link to provide compatibility with applications that expect
|
|
|
|
# to find terminfo under /usr/lib. That is, we'll _try_ to do that. Not
|
|
|
|
# all systems support symbolic links, and those that do provide a variety
|
|
|
|
# of options for 'test'.
|
|
|
|
if test "$TICDIR" != "$TERMINFO" ; then
|
|
|
|
( rm -f $TICDIR 2>/dev/null )
|
|
|
|
if ( cd $TICDIR 2>/dev/null )
|
|
|
|
then
|
|
|
|
cd $TICDIR
|
|
|
|
TICDIR=`pwd`
|
|
|
|
if test $TICDIR != $TERMINFO ; then
|
|
|
|
# Well, we tried. Some systems lie to us, so the
|
|
|
|
# installer will have to double-check.
|
|
|
|
echo "Verify if $TICDIR and $TERMINFO are the same."
|
|
|
|
echo "The new terminfo is in $TERMINFO; the other should be a link to it."
|
|
|
|
echo "Otherwise, remove $TICDIR and link it to $TERMINFO."
|
|
|
|
fi
|
|
|
|
else
|
|
|
|
cd $IP$prefix
|
|
|
|
# Construct a symbolic link that only assumes $ticdir has the
|
|
|
|
# same $prefix as the other installed directories.
|
|
|
|
RELATIVE=`echo $ticdir|sed -e 's:^'$prefix'/::'`
|
|
|
|
if test "$RELATIVE" != "$ticdir" ; then
|
|
|
|
RELATIVE=../`echo $ticdir|sed -e 's:^'$prefix'/::' -e 's:^/::'`
|
|
|
|
fi
|
|
|
|
if ( ln -s $RELATIVE $TICDIR )
|
|
|
|
then
|
|
|
|
echo '** linked '$TICDIR' for compatibility'
|
|
|
|
fi
|
|
|
|
fi
|
|
|
|
fi
|