blob: aa99426101cc584293267b235ea5390df85b5c04 (
plain)
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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
|
#!/bin/sh
#/*
# * generates ucs2fontmap.c and headers/*_.h
# *
# * Author: Jean-Marc Lienher ( http://oksid.ch )
# * Copyright 2000-2003 by O'ksi'D.
# *
# * This library is free software. Distribution and use rights are outlined in
# * the file "COPYING" which should have been included with this file. If this
# * file is missing or damaged, see the license at:
# *
# * https://www.fltk.org/COPYING.php
# *
# * Please see the following page on how to report bugs and issues:
# *
# * https://www.fltk.org/bugs.php
# */
#
# iso10646-1
encode="iso8859-1 iso8859-2 iso8859-3 \
iso8859-4 iso8859-5 iso8859-6 iso8859-7 iso8859-8 iso8859-9 \
iso8859-10 iso8859-13 iso8859-14 iso8859-15 \
koi8-1 big5-0 ksc5601.1987-0 gb2312.1980-0 jisx0201.1976-0 \
jisx0208.1983-0 jisx0212.1990-0 symbol dingbats"
mkdir -p ../headers/
rm -f ../headers/* ucs2fontmap
for enc in ${encode}
do
echo ${enc}
case ${enc} in
ksc5601.1987-0)
# cat ../MAPPINGS/EASTASIA/KSC/KSC5601.TXT | \
cat ../MAPPINGS/EASTASIA/KSC/KSX1001.TXT | \
./convert_map "${enc}" > ${enc}.txt
;;
koi8-1)
cat ../MAPPINGS/VENDORS/MISC/KOI8-R.TXT | \
./convert_map "${enc}" > ${enc}.txt
;;
iso8859-14)
cat ../MAPPINGS/ISO8859/8859-14.TXT | \
./convert_map "${enc}" > ${enc}.txt
;;
iso8859-13)
cat ../MAPPINGS/ISO8859/8859-13.TXT | \
./convert_map "${enc}" > ${enc}.txt
;;
iso8859-5)
cat ../MAPPINGS/ISO8859/8859-5.TXT | \
./convert_map "${enc}" > ${enc}.txt
;;
iso8859-6)
cat ../MAPPINGS/ISO8859/8859-6.TXT | \
./convert_map "${enc}" > ${enc}.txt
;;
iso8859-1)
cat ../MAPPINGS/ISO8859/8859-1.TXT | \
./convert_map "${enc}" > ${enc}.txt
;;
iso8859-10)
cat ../MAPPINGS/ISO8859/8859-10.TXT | \
./convert_map "${enc}" > ${enc}.txt
;;
iso8859-15)
cat ../MAPPINGS/ISO8859/8859-15.TXT | \
./convert_map "${enc}" > ${enc}.txt
;;
iso8859-2)
cat ../MAPPINGS/ISO8859/8859-2.TXT | \
./convert_map "${enc}" > ${enc}.txt
;;
iso8859-3)
cat ../MAPPINGS/ISO8859/8859-3.TXT | \
./convert_map "${enc}" > ${enc}.txt
;;
iso8859-4)
cat ../MAPPINGS/ISO8859/8859-4.TXT | \
./convert_map "${enc}" > ${enc}.txt
;;
iso8859-7)
cat ../MAPPINGS/ISO8859/8859-7.TXT | \
./convert_map "${enc}" > ${enc}.txt
;;
iso8859-8)
cat ../MAPPINGS/ISO8859/8859-8.TXT | \
./convert_map "${enc}" > ${enc}.txt
;;
iso8859-9)
cat ../MAPPINGS/ISO8859/8859-9.TXT | \
./convert_map "${enc}" > ${enc}.txt
;;
dingbats)
cat ../MAPPINGS/VENDORS/ADOBE/zdingbat.txt | \
./convert_map "${enc}" > ${enc}.txt
;;
symbol)
cat ../MAPPINGS/VENDORS/ADOBE/symbol.txt | \
./convert_map "${enc}" > ${enc}.txt
;;
big5-0)
cat ../MAPPINGS/EASTASIA/OTHER/BIG5.TXT | \
./convert_map "${enc}" > ${enc}.txt
;;
gb2312.1980-0)
cat ../MAPPINGS/EASTASIA/GB/GB2312.TXT | \
./convert_map "${enc}" > ${enc}.txt
;;
jisx0212.1990-0)
cat ../MAPPINGS/EASTASIA/JIS/JIS0212.TXT | \
./convert_map "${enc}" > ${enc}.txt
;;
jisx0208.1983-0)
cat ../MAPPINGS/EASTASIA/JIS/JIS0208.TXT | \
./convert_map "${enc}" > ${enc}.txt
;;
jisx0201.1976-0)
cat ../MAPPINGS/EASTASIA/JIS/JIS0201.TXT | \
./convert_map "${enc}" > ${enc}.txt
;;
esac
nm=`echo ${enc} |tr '.' '_' | tr '-' '_'`
cat ${enc}.txt | sort | uniq | \
./create_table "${nm}" >> ../headers/${nm}_.h 2>> ../headers/tbl.txt
rm -f ${enc}.txt
enc=" "
done
cat > ../ucs2fontmap.c << ENDOFTEXT
/*
* Author: Jean-Marc Lienher ( http://oksid.ch )
* Copyright 2000-2003 by O'ksi'D.
*
* This library is free software. Distribution and use rights are outlined in
* the file "COPYING" which should have been included with this file. If this
* file is missing or damaged, see the license at:
*
* https://www.fltk.org/COPYING.php
*
* Please see the following page on how to report bugs and issues:
*
* https://www.fltk.org/bugs.php
*/
ENDOFTEXT
he=`cd ..; ls headers/*.h`
for hea in ${he}
do
echo "#include \"${hea}\"" >> ../ucs2fontmap.c
done
cat ../headers/tbl.txt | ./conv_gen >> ../ucs2fontmap.c
|