MKterminfo.sh 4.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111
  1. #!/bin/sh
  2. # $Id: MKterminfo.sh,v 1.12 2003/01/11 21:42:12 tom Exp $
  3. #
  4. # MKterminfo.sh -- generate terminfo.5 from Caps tabular data
  5. #
  6. #***************************************************************************
  7. # Copyright (c) 1998,2002,2003 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 s in this script really are control characters. It translates
  40. #  to \n because I couldn't get used to inserting linefeeds directly. There
  41. # had better be no s 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. head=$1
  52. caps=$2
  53. tail=$3
  54. cat <<'EOF'
  55. '\" t
  56. .\" DO NOT EDIT THIS FILE BY HAND!
  57. .\" It is generated from terminfo.head, Caps, and terminfo.tail.
  58. .\"
  59. .\" Note: this must be run through tbl before nroff.
  60. .\" The magic cookie on the first line triggers this under some man programs.
  61. EOF
  62. cat $head
  63. temp=temp$$
  64. sorted=sorted$$
  65. unsorted=unsorted$$
  66. trap "rm -f $sorted $temp $unsorted; exit 99" 1 2 5 15
  67. sed -n <$caps "\
  68. /%%-STOP-HERE-%%/q
  69. /^#%/s/#%//p
  70. /^#/d
  71. s/[ ][ ]*/ /g
  72. s/$/T}/
  73. s/ [A-Z0-9_()\-][A-Z0-9_()\-]* [0-9\-][0-9\-]* [Y\-][B\-][C\-][G\-][EK\-]\** / T{/
  74. s/ bool / /p
  75. s/ num / /p
  76. s/ str / /p
  77. " |sed -e 's/^$/../' | tr "\134" "\006" >$unsorted
  78. rm -f $sorted
  79. rm -f $temp
  80. saved=no
  81. while true
  82. do
  83. data=
  84. read data
  85. test -z "$data" && break
  86. case "$data" in #(vi
  87. **) #(vi
  88. echo "$data" >>$temp
  89. saved=yes
  90. ;;
  91. *)
  92. if test $saved = yes ; then
  93. saved=no
  94. sort $temp >>$sorted
  95. rm -f $temp
  96. fi
  97. echo "$data" >>$sorted
  98. ;;
  99. esac
  100. done <$unsorted
  101. test $saved = yes && sort $temp >>$sorted
  102. sed -e 's/^\.\.$//' $sorted | tr "\005\006" "\012\134"
  103. cat $tail
  104. rm -f $sorted $temp $unsorted