]> ncurses.scripts.mit.edu Git - ncurses.git/blob - ncurses/tinfo/MKkeys_list.sh
ncurses 5.6 - patch 20080412
[ncurses.git] / ncurses / tinfo / MKkeys_list.sh
1 #! /bin/sh
2 # $Id: MKkeys_list.sh,v 1.4 2003/10/25 16:19:54 tom Exp $
3 ##############################################################################
4 # Copyright (c) 2001,2003 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 # MKkey_defs.sh -- generate list of function-keys for terminfo database
32 #
33 # Author: Thomas E. Dickey 2001
34 #
35 # Extract function-key names from the Caps file
36 #
37 : ${AWK-awk}
38 DATA=${1-../../include/Caps}
39
40 data=data$$
41 trap 'rm -f $data' 0 1 2 5 15
42 sed -e 's/[     ][      ]*/     /g' < $DATA >$data
43
44 cat <<EOF
45 # These definitions were generated by $0 $DATA
46 KEY_BREAK
47 KEY_SRESET
48 KEY_RESET
49 KEY_RESIZE
50 EOF
51
52 ${AWK-awk} <$data '
53 /^#/            {next;}
54 /^capalias/     {next;}
55 /^infoalias/    {next;}
56
57 $5 != "-" {
58                 if (substr($5, 1, 4) == "KEY_" ) {
59                         printf "%s      %s\n", $5, $1
60         }
61 }
62 '