summaryrefslogtreecommitdiff
path: root/Master/texmf-dist/source/ptex-fontmaps/tools/mkmap.lua
blob: 03ab2710f731aa9d22959bf45bf7fe66d6620515 (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
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
#! /usr/bin/env texlua

-- 90 字形と 04 字形が別ファイルに分かれているフォントセットの場合は
--   * ml, mr, ... に 90 字形フォント
--   * mln, mrn, ... に 04 字形フォント
-- を登録し,separate = true とする.それ以外のフォントは ml, mr, ... のほうに登録しておけばよい.
-- PSName がファイル名と異なる場合は %!PS も必要.
-- CID フォントでない場合は noncid = true とする.
-- '?' は 'Pro' 等に置換される
local foundry = {
   ['noEmbed']   = {
      ml='!Ryumin-Light',
      mr='!Ryumin-Light',
      mb='!Ryumin-Light,Bold',
      gr='!GothicBBB-Medium',
      gru='!GothicBBB-Medium',
      gb='!GothicBBB-Medium,Bold',
      ge='!GothicBBB-Medium,Bold',
      mgr='!GothicBBB-Medium',
      {'n'},
   },
   ['ms']   = {
      noncid = true,
      ml=':0:msmincho.ttc %!PS MS-Mincho',
      mr=':0:msmincho.ttc %!PS MS-Mincho',
      mb=':0:msmincho.ttc %!PS MS-Mincho',
      gr=':0:msgothic.ttc %!PS MS-Gothic',
      gru=':0:msgothic.ttc %!PS MS-Gothic',
      gb=':0:msgothic.ttc %!PS MS-Gothic',
      ge=':0:msgothic.ttc %!PS MS-Gothic',
      mgr=':0:msgothic.ttc %!PS MS-Gothic',
      {''},
   },
   ['ms-osx']   = {
      noncid = true,
      ml='MS-Mincho.ttf',
      mr='MS-Mincho.ttf',
      mb='MS-Mincho.ttf',
      gr='MS-Gothic.ttf',
      gru='MS-Gothic.ttf',
      gb='MS-Gothic.ttf',
      ge='MS-Gothic.ttf',
      mgr='MS-Gothic.ttf',
      {''},
   },
   ['yu-win']   = {
      noncid = true,
      ml='yuminl.ttf %!PS YuMincho-Light',
      mr='yumin.ttf %!PS YuMincho-Regular',
      mb='yumindb.ttf %!PS YuMincho-DemiBold',
      gr='yugothic.ttf %!PS YuGothic-Regular',
      gru='yugothic.ttf %!PS YuGothic-Regular',
      gb='yugothib.ttf %!PS YuGothic-Bold',
      ge='yugothib.ttf %!PS YuGothic-Bold',
      mgr='yugothib.ttf %!PS YuGothic-Bold',
      {''},
   },
   ['yu-win10']   = {
      noncid = true,
      ml='yuminl.ttf %!PS YuMincho-Light',
      mr='yumin.ttf %!PS YuMincho-Regular',
      mb='yumindb.ttf %!PS YuMincho-DemiBold',
      gr=':0:YuGothR.ttc %!PS YuGothic-Regular',
      gru=':0:YuGothM.ttc %!PS YuGothic-Medium',
      gb=':0:YuGothB.ttc %!PS YuGothic-Bold',
      ge=':0:YuGothB.ttc %!PS YuGothic-Bold',
      mgr=':0:YuGothB.ttc %!PS YuGothic-Bold',
      {''},
   },
   ['yu-osx']   = {
      noncid = false,
      ml='YuMin-Medium.otf',
      mr='YuMin-Medium.otf',
      mb='YuMin-Demibold.otf',
      gr='YuGo-Medium.otf',
      gru='YuGo-Medium.otf',
      gb='YuGo-Bold.otf',
      ge='YuGo-Bold.otf',
      mgr='YuGo-Bold.otf',
      {''},
   },
   ['ipa']   = {
      noncid = true,
      ml='ipam.ttf %!PS IPAMincho',
      mr='ipam.ttf %!PS IPAMincho',
      mb='ipam.ttf %!PS IPAMincho',
      gr='ipag.ttf %!PS IPAGothic',
      gru='ipag.ttf %!PS IPAGothic',
      gb='ipag.ttf %!PS IPAGothic',
      ge='ipag.ttf %!PS IPAGothic',
      mgr='ipag.ttf %!PS IPAGothic',
      {''},
   },
   ['ipaex']   = {
      noncid = true,
      ml='ipaexm.ttf %!PS IPAexMincho',
      mr='ipaexm.ttf %!PS IPAexMincho',
      mb='ipaexm.ttf %!PS IPAexMincho',
      gr='ipaexg.ttf %!PS IPAexGothic',
      gru='ipaexg.ttf %!PS IPAexGothic',
      gb='ipaexg.ttf %!PS IPAexGothic',
      ge='ipaexg.ttf %!PS IPAexGothic',
      mgr='ipaexg.ttf %!PS IPAexGothic',
      {''},
   },
   ['moga-mobo']   = {
      noncid = true,
      separate = true,
      ml=':3:mogam.ttc %!PS Moga90Mincho-Regular',
      mr=':3:mogam.ttc %!PS Moga90Mincho-Regular',
      mb=':2:mogamb.ttc %!PS Moga90Mincho-Bold',
      gr=':2:mogag.ttc %!PS Moga90Gothic-Regular',
      gru=':2:mogag.ttc %!PS Moga90Gothic-Regular',
      gb=':2:mogagb.ttc %!PS Moga90Gothic-Bold',
      ge=':2:mogagb.ttc %!PS Moga90Gothic-Bold',
      mgr=':2:mobog.ttc %!PS Mobo90Gothic-Regular',
      mln=':0:mogam.ttc %!PS MogaMincho-Regular',
      mrn=':0:mogam.ttc %!PS MogaMincho-Regular',
      mbn=':0:mogamb.ttc %!PS MogaMincho-Bold',
      grn=':0:mogag.ttc %!PS MogaGothic-Regular',
      grun=':0:mogag.ttc %!PS MogaGothic-Regular',
      gbn=':0:mogagb.ttc %!PS MogaGothic-Bold',
      gen=':0:mogagb.ttc %!PS MogaGothic-Bold',
      mgrn=':0:mobog.ttc %!PS MoboGothic-Regular',
      {''},
   },
   ['moga-mobo-ex']   = {
      noncid = true,
      separate = true,
      ml=':4:mogam.ttc %!PS MogaEx90Mincho-Regular',
      mr=':4:mogam.ttc %!PS MogaEx90Mincho-Regular',
      mb=':3:mogamb.ttc %!PS MogaEx90Mincho-Bold',
      gr=':3:mogag.ttc %!PS MogaEx90Gothic-Regular',
      gru=':3:mogag.ttc %!PS MogaEx90Gothic-Regular',
      gb=':3:mogagb.ttc %!PS MogaEx90Gothic-Bold',
      ge=':3:mogagb.ttc %!PS MogaEx90Gothic-Bold',
      mgr=':3:mobog.ttc %!PS MoboEx90Gothic-Regular',
      mln=':1:mogam.ttc %!PS MogaExMincho-Regular',
      mrn=':1:mogam.ttc %!PS MogaExMincho-Regular',
      mbn=':1:mogamb.ttc %!PS MogaExMincho-Bold',
      grn=':1:mogag.ttc %!PS MogaExGothic-Regular',
      grun=':1:mogag.ttc %!PS MogaExGothic-Regular',
      gbn=':1:mogagb.ttc %!PS MogaExGothic-Bold',
      gen=':1:mogagb.ttc %!PS MogaExGothic-Bold',
      mgrn=':1:mobog.ttc %!PS MoboExGothic-Regular',
      {''},
   },
   ['ume']   = {
      noncid = true,
      ml='ume-tmo3.ttf %!PS Ume-Mincho',
      mr='ume-tmo3.ttf %!PS Ume-Mincho',
      mb='ume-tmo3.ttf %!PS Ume-Mincho',
      gr='ume-tgo4.ttf %!PS Ume-Gothic',
      gru='ume-tgo5.ttf %!PS Ume-Gothic-O5',
      gb='ume-tgo5.ttf %!PS Ume-Gothic-O5',
      ge='ume-tgo5.ttf %!PS Ume-Gothic-O5',
      mgr='ume-tgo4.ttf %!PS Ume-Gothic',
      {''},
   },
   ['canon']   = {
      noncid = true,
      ml=':0:FGCCHMW3.TTC %!PS FGHeiseiMincho-W3',
      mr=':0:FGCCHMW3.TTC %!PS FGHeiseiMincho-W3',
      mb=':0:FGCCHMW5.TTC %!PS FGHeiseiMincho-W5',
      gr=':0:FGCCHGW5.TTC %!PS FGHeiseiKakuGothic-W5',
      gru=':0:FGCCHGW7.TTC %!PS FGHeiseiKakuGothic-W7',
      gb=':0:FGCCHGW7.TTC %!PS FGHeiseiKakuGothic-W7',
      ge=':0:FGCCHGW9.TTC %!PS FGHeiseiKakuGothic-W9',
      mgr=':0:FGCCARGM.TTC %!PS FGMaruGothicCa-M',
      {''},
   },
   ['kozuka']   = {
      ml='KozMin?-Light.otf',
      mr='KozMin?-Regular.otf',
      mb='KozMin?-Bold.otf',
      gr='KozGo?-Regular.otf',
      gru='KozGo?-Medium.otf',
      gb='KozGo?-Bold.otf',
      ge='KozGo?-Heavy.otf',
      mgr='KozGo?-Heavy.otf',
      {'4','6','6n'}, -- Pro, Pr6 and  Pr6N
   },
   ['morisawa'] = {
      ml='A-OTF-Ryumin?-Light.otf %!PS Ryumin?-Light',
      mr='A-OTF-Ryumin?-Light.otf %!PS Ryumin?-Light',
      mb='A-OTF-FutoMinA101?-Bold.otf %!PS FutoMinA101?-Bold',
      gr='A-OTF-GothicBBB?-Medium.otf %!PS GothicBBB?-Medium',
      gru='A-OTF-GothicBBB?-Medium.otf %!PS GothicBBB?-Medium',
      gb='A-OTF-FutoGoB101?-Bold.otf %!PS FutoGoB101?-Bold',
      ge='A-OTF-MidashiGo?-MB31.otf %!PS MidashiGo?-MB31',
      mgr='A-OTF-Jun101?-Light.otf %!PS Jun101?-Light',
      {'4'}, -- Pro
   },
   ['morisawa-pr6n'] = {
      ml='A-OTF-Ryumin?-Light.otf %!PS Ryumin?-Light',
      mr='A-OTF-Ryumin?-Light.otf %!PS Ryumin?-Light',
      mb='A-OTF-FutoMinA101?-Bold.otf %!PS FutoMinA101?-Bold',
      gr='A-OTF-GothicBBB?-Medium.otf %!PS GothicBBB?-Medium',
      gru='A-OTF-GothicBBB?-Medium.otf %!PS GothicBBB?-Medium',
      gb='A-OTF-FutoGoB101?-Bold.otf %!PS FutoGoB101?-Bold',
      ge='A-OTF-MidashiGo?-MB31.otf %!PS MidashiGo?-MB31',
      mgr='A-OTF-ShinMGo?-Light.otf %!PS ShinMGo?-Light',
      {'6nm'}, -- Pr6N
   },
   ['hiragino'] = {
      ml='HiraMin?-W2.otf', -- OSX にはない
      mr='HiraMin?-W3.otf',
      mb='HiraMin?-W6.otf',
      gr='HiraKaku?-W3.otf',
      gru='HiraKaku?-W6.otf',
      gb='HiraKaku?-W6.otf',
      ge='HiraKaku?-W8.otf',
      mgr='HiraMaru?-W4.otf',
      {'X','Xn'},  -- Pro and ProN
   },
   ['hiragino-elcapitan'] = {
      ml= '#1-HiraginoSerif-W3.ttc %!PS HiraMin?-W3', -- ここは OTC を使おう
      mr= '#1-HiraginoSerif-W3.ttc %!PS HiraMin?-W3',
      mb= '#1-HiraginoSerif-W6.ttc %!PS HiraMin?-W6',
      gr= '#3-HiraginoSans-W3.ttc  %!PS HiraKaku?-W3',
      gru='#3-HiraginoSans-W6.ttc  %!PS HiraKaku?-W6',
      gb= '#3-HiraginoSans-W6.ttc  %!PS HiraKaku?-W6',
      ge= '#2+HiraginoSans-W8.ttc  %!PS HiraKaku?-W8',
      mgr='#0+HiraginoSansR-W4.ttc %!PS HiraMaru?-W4',
      {'X','Xn'},  -- Pro and ProN
   },
   ['toppanbunkyu-sierra'] = {
      ml= 'ToppanBunkyuMincho-Regular.otf %!PS ToppanBunkyuMinchoPr6N-Regular',
      mr= 'ToppanBunkyuMincho-Regular.otf %!PS ToppanBunkyuMinchoPr6N-Regular',
      mb= 'ToppanBunkyuMidashiMincho-ExtraBold.otf %!PS ToppanBunkyuMidashiMinchoStdN-ExtraBold',
      gr= ':1:ToppanBunkyuGothic.ttc %!PS ToppanBunkyuGothicPr6N-Regular',
      gru=':0:ToppanBunkyuGothic.ttc %!PS ToppanBunkyuGothicPr6N-DB',
      gb= ':0:ToppanBunkyuGothic.ttc %!PS ToppanBunkyuGothicPr6N-DB',
      ge= 'ToppanBunkyuMidashiGothic-ExtraBold.otf %!PS ToppanBunkyuMidashiGothicStdN-ExtraBold',
      mgr=':1:ToppanBunkyuGothic.ttc %!PS ToppanBunkyuGothicPr6N-Regular',
      {''},
   },
}

local suffix = {
   -- { '?' 置換, kanjiEmbed 接尾辞, (ttc index mov)}
   ['']   = {'', ''},          -- 非 CID フォント用ダミー
   ['n']  = {'!', ''},         -- 非埋め込みに使用
   ['4']  = {'Pro', ''},
   ['6']  = {'Pr6', '-pr6'},
   ['X']  = {'Pro', '', '0'},       -- ヒラギノ
   ['Xn'] = {'ProN', '-pron', '1'}, -- ヒラギノ
   ['6n'] = {'Pr6N','-pr6n'},
   ['6nm'] = {'Pr6N',''},      -- モリサワ Pr6N
}

-- '#' は 'h', 'v' に置換される
-- '@' は kanjiEmbed の値に置換される
local maps = {
   ['ptex-@'] = {    -- pTeX 90JIS
      {'rml',  'H', 'mr'},
      {'rmlv', 'V', 'mr'},
      {'gbm',  'H', 'gru'},
      {'gbmv', 'V', 'gru'},
   },
   ['ptex-@-04'] = { -- pTeX JIS04
      {'rml',  '2004-H', 'mrn'},
      {'rmlv', '2004-V', 'mrn'},
      {'gbm',  '2004-H', 'grun'},
      {'gbmv', '2004-V', 'grun'},
   },
   ['uptex-@'] = {   -- upTeX 90JIS
      {'urml',    'UniJIS-UTF16-H', 'mr'},
      {'urmlv',   'UniJIS-UTF16-V', 'mr'},
      {'ugbm',    'UniJIS-UTF16-H', 'gru'},
      {'ugbmv',   'UniJIS-UTF16-V', 'gru'},
      {'uprml-#', 'UniJIS-UTF16-#', 'mr'},
      {'upgbm-#', 'UniJIS-UTF16-#', 'gru'},
      {'uprml-hq','UniJIS-UCS2-H',  'mr'},
      {'upgbm-hq','UniJIS-UCS2-H',  'gru'},
   },
   ['uptex-@-04'] = { -- upTeX JIS04
      {'urml',    'UniJIS2004-UTF16-H', 'mrn'},
      {'urmlv',   'UniJIS2004-UTF16-V', 'mrn'},
      {'ugbm',    'UniJIS2004-UTF16-H', 'grun'},
      {'ugbmv',   'UniJIS2004-UTF16-V', 'grun'},
      {'uprml-#', 'UniJIS2004-UTF16-#', 'mrn'},
      {'upgbm-#', 'UniJIS2004-UTF16-#', 'grun'},
      {'uprml-hq','UniJIS-UCS2-H',  'mrn'},
      {'upgbm-hq','UniJIS-UCS2-H',  'grun'},
   },
   ['otf-@'] = {
      '% TEXT, 90JIS',
      {'hminl-#',  '#', 'ml'},
      {'hminr-#',  '#', 'mr'},
      {'hminb-#',  '#', 'mb'},
      {'hgothr-#', '#', 'gr'},
      {'hgothb-#', '#', 'gb'},
      {'hgotheb-#','#', 'ge'},
      {'hmgothr-#','#', 'mgr'},
      '% TEXT, JIS04',
      {'hminln-#',  '#', 'mln'},
      {'hminrn-#',  '#', 'mrn'},
      {'hminbn-#',  '#', 'mbn'},
      {'hgothrn-#', '#', 'grn'},
      {'hgothbn-#', '#', 'gbn'},
      {'hgothebn-#','#', 'gen'},
      {'hmgothrn-#','#', 'mgrn'},
      '% CID',
      {'otf-cjml-#', 'Identity-#',     'mln'},
      {'otf-cjmr-#', 'Identity-#',     'mrn'},
      {'otf-cjmb-#', 'Identity-#',     'mbn'},
      {'otf-cjgr-#', 'Identity-#',     'grn'},
      {'otf-cjgb-#', 'Identity-#',     'gbn'},
      {'otf-cjge-#', 'Identity-#',     'gen'},
      {'otf-cjmgr-#','Identity-#',     'mgrn'},
      '% Unicode 90JIS',
      {'otf-ujml-#', 'UniJIS-UTF16-#', 'ml'},
      {'otf-ujmr-#', 'UniJIS-UTF16-#', 'mr'},
      {'otf-ujmb-#', 'UniJIS-UTF16-#', 'mb'},
      {'otf-ujgr-#', 'UniJIS-UTF16-#', 'gr'},
      {'otf-ujgb-#', 'UniJIS-UTF16-#', 'gb'},
      {'otf-ujge-#', 'UniJIS-UTF16-#', 'ge'},
      {'otf-ujmgr-#','UniJIS-UTF16-#', 'mgr'},
      '% Unicode JIS04',
      {'otf-ujmln-#', 'UniJIS2004-UTF16-#', 'mln'},
      {'otf-ujmrn-#', 'UniJIS2004-UTF16-#', 'mrn'},
      {'otf-ujmbn-#', 'UniJIS2004-UTF16-#', 'mbn'},
      {'otf-ujgrn-#', 'UniJIS2004-UTF16-#', 'grn'},
      {'otf-ujgbn-#', 'UniJIS2004-UTF16-#', 'gbn'},
      {'otf-ujgen-#', 'UniJIS2004-UTF16-#', 'gen'},
      {'otf-ujmgrn-#','UniJIS2004-UTF16-#', 'mgrn'},
   },
   ['otf-up-@'] = {
      '% TEXT, 90JIS',
      {'uphminl-#',  'UniJIS-UTF16-#', 'ml'},
      {'uphminr-#',  'UniJIS-UTF16-#', 'mr'},
      {'uphminb-#',  'UniJIS-UTF16-#', 'mb'},
      {'uphgothr-#', 'UniJIS-UTF16-#', 'gr'},
      {'uphgothb-#', 'UniJIS-UTF16-#', 'gb'},
      {'uphgotheb-#','UniJIS-UTF16-#', 'ge'},
      {'uphmgothr-#','UniJIS-UTF16-#', 'mgr'},
      '% TEXT, JIS04',
      {'uphminln-#',  'UniJIS2004-UTF16-#', 'mln'},
      {'uphminrn-#',  'UniJIS2004-UTF16-#', 'mrn'},
      {'uphminbn-#',  'UniJIS2004-UTF16-#', 'mbn'},
      {'uphgothrn-#', 'UniJIS2004-UTF16-#', 'grn'},
      {'uphgothbn-#', 'UniJIS2004-UTF16-#', 'gbn'},
      {'uphgothebn-#','UniJIS2004-UTF16-#', 'gen'},
      {'uphmgothrn-#','UniJIS2004-UTF16-#', 'mgrn'},
   },
}

local jis2004_flag = 'n'
local gsub = string.gsub

function string.explode(s, sep)
   local t = {}
   sep = sep or '\n'
   string.gsub(s, "([^"..sep.."]*)"..sep, function(c) t[#t+1]=c end)
   return t
end

local function ret_suffix(fd, s, fa)
   if fd=='kozuka' and s=='6'  then
      return 'ProVI' -- 小塚だけ特別
   elseif fd:match('hiragino') then
      if string.match(s, jis2004_flag) then
	 return (fa=='ge' or fa=='gen') and 'StdN' or suffix[s][1]
      else
	 return (fa=='ge' or fa=='gen') and 'Std'  or suffix[s][1]
      end
      -- ヒラギノ角ゴ W8 は StdN/Std しかない
   else
      return suffix[s][1]
   end
end

local function replace_index(line, s)
   local ttc_mov = suffix[s][3]
   if ttc_mov then
      local ttc_index, ttc_dir = line:match('#(%d)(.)')
      if tonumber(ttc_index) then
	 return line:gsub('#..', ':' .. tostring(tonumber(ttc_index)+tonumber(ttc_dir .. ttc_mov)) .. ':')
      end
   end
   return line
end

local function make_one_line(o, fd, s)
   if type(o) == 'string' then
      return '\n' .. o .. '\n'
   else
      local fx = foundry[fd]
      local fn = replace_index(gsub(fx[o[3]], '?', ret_suffix(fd,s,o[3])), s)
      if fx.noncid and string.match(o[2],'Identity') then
	 if string.match(fn, '%!PS') then
	    fn = gsub(fn, ' %%!PS', '/AJ16 %%!PS')
	 else
	    fn = fn .. '/AJ16'
	 end
      end
      if string.match(o[1], '#') then -- 'H', 'V' 一括出力
	 return gsub(o[1], '#', 'h') .. '\t' .. gsub(o[2], '#', 'H') .. '\t' .. fn .. '\n'
          .. gsub(o[1], '#', 'v') .. '\t' .. gsub(o[2], '#', 'V') .. '\t' .. fn .. '\n'
      else
	 return o[1] .. '\t' .. o[2] .. '\t' .. fn .. '\n'
      end
   end
end

for fd, v1 in pairs(foundry) do
   -- separate でないときは mln などのデータベースを省略してあるので ml などからコピー
   if not foundry[fd].separate then
      foundry[fd].mln = foundry[fd].ml
      foundry[fd].mrn = foundry[fd].mr
      foundry[fd].mbn = foundry[fd].mb
      foundry[fd].grn = foundry[fd].gr
      foundry[fd].grun = foundry[fd].gru
      foundry[fd].gbn = foundry[fd].gb
      foundry[fd].gen = foundry[fd].ge
      foundry[fd].mgrn = foundry[fd].mgr
   end
   for _,s in pairs(v1[1]) do
      local dirname = fd .. suffix[s][2]
      print('kanjiEmbed: ' .. dirname)
      -- Linux しか想定していない
      os.execute('mkdir ' .. dirname .. ' &>/dev/null')
      for mnx, mcont in pairs(maps) do
	 --if not string.match(mnx, '-04') or string.match(s, jis2004_flag) then
	 -- フォントが OpenType (CID) の場合は、すべての map を作る
	 -- フォントが TrueType の場合は、基本的に -04 以外の map を作る
	 -- ただし TrueType でも separate なときは -04 も作る
	 if not string.match(mnx, '-04') or not foundry[fd].noncid or foundry[fd].separate then
	    local mapbase = gsub(mnx, '@', dirname)
	    local f = io.open(dirname .. '/' .. mapbase .. '.map', 'w+')
	    for _,x in ipairs(mcont) do
	       f:write(make_one_line(x, fd, s))
	    end
	    if string.match(mapbase,'otf%-hiragino') then
	       print('  hiraprop: ' .. mapbase)
	       local v2 = string.explode([[

% hiraprop
hiramin-w3-h Identity-H $mr
hiramin-w6-h Identity-H $mb
hirakaku-w3-h Identity-H $gr
hirakaku-w6-h Identity-H $gb
hiramaru-w4-h Identity-H $mgr
hiramin-w3-v Identity-V $mr
hiramin-w6-v Identity-V $mb
hirakaku-w3-v Identity-V $gr
hirakaku-w6-v Identity-V $gb
hiramaru-w4-v Identity-V $mgr

]])
	       for i,v in pairs(v2) do
		  v = (v:gsub ('$(%w+)', foundry[fd])):gsub('?', ret_suffix(fd,s,''))
		  v2[i] = replace_index(v, s)
	       end
	       f:write(table.concat(v2, '\n'))
	    end
	    f:close()
	 end
      end
   end
end