1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50
|
EXTRA_DIST = 5250.tcap\
5250.terminfo\
README\
uk5250.map\
us5250.map
pkgdata_DATA = uk5250.map\
us5250.map
#
# Here we automagically run tic if we can determine that the system
# is Linux and we can find the tic command (and make install was
# run as root).
#
install-data-local:
@( good=no ; \
if [ "$$(uname -s)" = "Linux" ]; then \
if which tic >/dev/null 2>&1 ; then \
if [ "`whoami`" = "root" ]; then \
rm -f /usr/share/terminfo/x/xterm-5250 ; \
rm -f /usr/share/terminfo/5/5250 ; \
rm -f /usr/lib/terminfo/x/xterm-5250 ; \
rm -f /usr/lib/terminfo/5/5250 ; \
good=yes ; \
tic $(srcdir)/5250.terminfo || good=no ; \
else \
mkdir -p ~/.terminfo || exit $$? ; \
rm -f ~/.terminfo/x/xterm-5250 ; \
rm -f ~/.terminfo/5/5250 ; \
good=yes ; \
tic $(srcdir)/5250.terminfo || good=no ; \
fi ; \
fi ; \
else \
good=yes ; \
fi ; \
if [ x$$good = xno ] ; then \
echo "**" >&2 ; \
echo "** Could not install terminfo entry automatically. Possible" >&2 ; \
echo "** reasons for this include:" >&2 ; \
echo "** - Could not find 'tic' command." >&2 ; \
echo "** - 'make install' was not run as root." >&2 ; \
echo "**" >&2 ; \
echo "** Some keys may not work until this is installed, please read" >&2 ; \
echo "** the linux/README file for instructions on how to install" >&2 ; \
echo "** this manually." >&2 ; \
echo "**" >&2 ; \
fi )
|