]> ncurses.scripts.mit.edu Git - ncurses.git/blob - man/MKterminfo.sh
ncurses 6.1 - patch 20180901
[ncurses.git] / man / MKterminfo.sh
1 #!/bin/sh
2 # $Id: MKterminfo.sh,v 1.16 2018/03/17 18:03:51 Kir.Kolyshkin Exp $
3 #
4 # MKterminfo.sh -- generate terminfo.5 from Caps tabular data
5 #
6 #***************************************************************************
7 # Copyright (c) 1998-2017,2018 Free Software Foundation, Inc.              *
8 #                                                                          *
9 # Permission is hereby granted, free of charge, to any person obtaining a  *
10 # copy of this software and associated documentation files (the            *
11 # "Software"), to deal in the Software without restriction, including      *
12 # without limitation the rights to use, copy, modify, merge, publish,      *
13 # distribute, distribute with modifications, sublicense, and/or sell       *
14 # copies of the Software, and to permit persons to whom the Software is    *
15 # furnished to do so, subject to the following conditions:                 *
16 #                                                                          *
17 # The above copyright notice and this permission notice shall be included  *
18 # in all copies or substantial portions of the Software.                   *
19 #                                                                          *
20 # THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS  *
21 # OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF               *
22 # MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.   *
23 # IN NO EVENT SHALL THE ABOVE COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM,   *
24 # DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR    *
25 # OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR    *
26 # THE USE OR OTHER DEALINGS IN THE SOFTWARE.                               *
27 #                                                                          *
28 # Except as contained in this notice, the name(s) of the above copyright   *
29 # holders shall not be used in advertising or otherwise to promote the     *
30 # sale, use or other dealings in this Software without prior written       *
31 # authorization.                                                           *
32 #***************************************************************************
33 #
34 # This script takes terminfo.head and terminfo.tail and splices in between
35 # them a table derived from the Caps data file.  Besides avoiding having
36 # the docs fall out of sync with the table, this also lets us set up tbl
37 # commands for better formatting of the table.
38 #
39 # NOTE: The \ 5s in this script really are control characters.  It translates
40\ 5 to \n because I couldn't get used to inserting linefeeds directly.  There
41 # had better be no \ 5s in the table source text.
42 #
43 # keep the order independent of locale:
44 if test "${LANGUAGE+set}"    = set; then LANGUAGE=C;    export LANGUAGE;    fi
45 if test "${LANG+set}"        = set; then LANG=C;        export LANG;        fi
46 if test "${LC_ALL+set}"      = set; then LC_ALL=C;      export LC_ALL;      fi
47 if test "${LC_MESSAGES+set}" = set; then LC_MESSAGES=C; export LC_MESSAGES; fi
48 if test "${LC_CTYPE+set}"    = set; then LC_CTYPE=C;    export LC_CTYPE;    fi
49 if test "${LC_COLLATE+set}"  = set; then LC_COLLATE=C;  export LC_COLLATE;  fi
50
51 #
52 head=$1
53 caps=$2
54 tail=$3
55 cat <<'EOF'
56 '\" t
57 .\" DO NOT EDIT THIS FILE BY HAND!
58 .\" It is generated from terminfo.head, Caps, and terminfo.tail.
59 .\"
60 .\" Note: this must be run through tbl before nroff.
61 .\" The magic cookie on the first line triggers this under some man programs.
62 EOF
63 cat $head
64
65 temp=temp$$
66 sorted=sorted$$
67 unsorted=unsorted$$
68 trap "code=\$?; rm -f $sorted $temp $unsorted; exit \$code" EXIT HUP INT QUIT TERM
69 rm -f $sorted $temp $unsorted
70
71 sed -n <$caps "\
72 /%%-STOP-HERE-%%/q
73 /^#%center/s, expand,,
74 /^#%lw25/s, lw6 , lw7 ,
75 /^#%/s/#%//p
76 /^#/d
77 s/[     ][      ]*/     /g
78 s/$/\ 5T}/
79 s/      [A-Z0-9_()\-][A-Z0-9_()\-]*     [0-9\-][0-9\-]* [Y\-][B\-][C\-][G\-][EK\-]\**   /       T{\ 5/
80 s/      bool    /       /p
81 s/      num     /       /p
82 s/      str     /       /p
83 " |sed -e 's/^$/../' | tr "\134" "\006" >$unsorted
84
85 rm -f $sorted
86 rm -f $temp
87 saved=no
88 while true
89 do
90         data=
91         read data
92         test -z "$data" && break
93         case "$data" in #(vi
94         *\ 5*) #(vi
95                 echo "$data" >>$temp
96                 saved=yes
97                 ;;
98         *)
99                 if test $saved = yes ; then
100                         saved=no
101                         sort $temp >>$sorted
102                         rm -f $temp
103                 fi
104                 echo "$data" >>$sorted
105                 ;;
106         esac
107 done <$unsorted
108 test $saved = yes && sort $temp >>$sorted
109
110 sed -e 's/^\.\.$//' $sorted | tr "\005\006" "\012\134"
111
112 sed     -e '/^center expand;/s, expand,,' \
113         -e '/^\.TS/,/^\\/s, lw[1-9][0-9]*\., l.,' \
114         $tail