Annotation of OpenXM/src/asir-contrib/packages/doc/Makefile, Revision 1.30
1.30 ! takayama 1: #$OpenXM: OpenXM/src/asir-contrib/packages/doc/Makefile,v 1.29 2002/07/14 07:10:02 takayama Exp $
1.5 takayama 2: # targets
3: # all :
1.29 takayama 4: # Extracts all tex-info files from ../src/* and generate *.texi files.
1.6 takayama 5: # install : install-document install-help
6: # install-help : all
1.5 takayama 7: # Installing online help to OpenXM/lib/asir/help-*
1.6 takayama 8: # install-document : all
1.5 takayama 9: # Copy the documents to OpenXM/doc/asir-contrib
1.15 takayama 10: # install-html-help
11: # Copy html help to OpenXM/doc/asir-contrib
1.29 takayama 12: # gen-html-en gen-html-ja
13: # Generate HTML documents under html-en and html-ja
1.15 takayama 14: #
1.6 takayama 15: # NOTE: install-help should be executed after installing asir2000.
1.29 takayama 16: ########################################################################
17: # How to add new documents in the category xxx
18: # "xxx*.texi <--- xxx.oxweave (manually written) + xxx*auto*.texi (automatic)"
19: # (1) "xxx.oxweave" --> xxx-en.texi and xxx-ja.texi
20: # xxx-auto-en.texi and xxx-auto-ja.texi should be included from
21: # xxx-en.texi and xxx-ja.texi (JPSRCS, EGSRCS)
22: # NOTE: xxx.oxweave might be embedded in xxx.rr or xxx,
23: # but this style is obsolete.
24: # (2) "xxx.rr" or "xxx" --> xxx-auto-en.texi and xxx-auto-ja.texi
25: # (JAAUTO, ENAUTO)
26: # xxx-auto*.texi's are extracted from xxx or xxx.rr
27: # (3) xxx-en.texi and xxx-ja.texi should be included from cman.texi
28: # and cman-eg.texi
29: # cf. glib* base*
30: ########################################################################
1.5 takayama 31: OpenXM_ROOT=../../../../../OpenXM
32: ASIRDOC=$(OpenXM_ROOT)/src/asir-doc
33: ASIRLIB=$(OpenXM_ROOT)/../OpenXM_contrib2/asir2000/lib
34: CONTRIB=$(OpenXM_ROOT)/src/asir-contrib/packages/src
1.23 takayama 35: OPTGENTEXI= --include
36: #OPTGENTEXI= --include --example
1.6 takayama 37: ## PS documents are installed under $(OpenXM_doc)/asir-contrib
1.5 takayama 38: OpenXM_doc=$(OpenXM_ROOT)/doc
39: DVIPS=dvips -f
1.9 noro 40: OXWEAVE= ../../../kxx/oxweave
1.15 takayama 41: TEXI2HTML=texi2html -menu -split_node
1.5 takayama 42:
1.29 takayama 43: JPSRCS= oxxm.texi oxmath.texi oxphc.texi oxgnuplot.texi oxsm1.texi oxom.texi dsolv-jp.texi longname-jp.texi oxtigers-jp.texi names-ja.texi hypergeometric-ja.texi number-ja.texi calculus-ja.texi series-ja.texi matrix-ja.texi graphic-ja.texi print-ja.texi poly-ja.texi complex-ja.texi intro.texi Diff.texi Dmodule.texi Matrix.texi base-ja.texi misc-ja.texi glib-ja.texi
44: EGSRCS= oxxm-eg.texi oxmath-eg.texi oxphc-eg.texi oxgnuplot-eg.texi oxsm1-eg.texi oxom-eg.texi dsolv-eg.texi longname-eg.texi oxtigers-eg.texi names-en.texi hypergeometric-en.texi number-en.texi calculus-en.texi series-en.texi matrix-en.texi graphic-en.texi print-en.texi poly-en.texi complex-en.texi intro-eg.texi cman-eg.texi base-en.texi misc-en.texi glib-en.texi
1.6 takayama 45:
1.27 takayama 46: JAAUTO=base-auto-ja.texi pfp-auto-ja.texi poly-auto-ja.texi \
1.29 takayama 47: print-auto-ja.texi matrix-auto-ja.texi glib-auto-ja.texi
1.27 takayama 48: ENAUTO=base-auto-en.texi pfp-auto-en.texi poly-auto-en.texi \
1.29 takayama 49: print-auto-en.texi matrix-auto-en.texi glib-auto-en.texi
1.23 takayama 50:
51: all : gentexi $(JPSRCS) $(EGSRCS) $(JAAUTO) $(ENAUTO)
1.28 takayama 52: install :
53: @if [ ! -f ./.done_install ] ; \
54: then \
55: make install2 ; \
56: touch ./.done_install ; \
57: else \
58: echo "NOTE: Installation is already done. Remove .done_install for a new installation." ; \
59: fi
60:
61: install2 : install-document install-help install-html-help
1.1 takayama 62:
1.22 takayama 63: gentexi : gentexi.c
64: gcc -o gentexi gentexi.c
65:
1.21 takayama 66: base-ja.texi : base.oxweave
67: /bin/rm -f base-ja.texi
68: $(OXWEAVE) C ja <base.oxweave >base-ja.texi
69:
70: base-en.texi : base.oxweave
71: /bin/rm -f base-en.texi
72: $(OXWEAVE) C en <base.oxweave >base-en.texi
73:
1.15 takayama 74: names-ja.texi : names.oxweave
75: /bin/rm -f names-ja.texi
76: $(OXWEAVE) C ja <names.oxweave >names-ja.texi
77:
78: names-en.texi : names.oxweave
79: /bin/rm -f names-en.texi
1.16 takayama 80: $(OXWEAVE) C en <names.oxweave >names-en.texi
1.15 takayama 81:
1.20 takayama 82: plucker-ja.texi : plucker.oxweave
83: /bin/rm -f plucker-ja.texi
84: $(OXWEAVE) C ja <plucker.oxweave >plucker-ja.texi
85:
86: plucker-en.texi : plucker.oxweave
87: /bin/rm -f plucker-en.texi
88: $(OXWEAVE) C en <plucker.oxweave >plucker-en.texi
89:
1.15 takayama 90: hypergeometric-ja.texi : hypergeometric.oxweave
91: /bin/rm -f hypergeometric-ja.texi
92: $(OXWEAVE) C ja <hypergeometric.oxweave >hypergeometric-ja.texi
93:
94: hypergeometric-en.texi : hypergeometric.oxweave
95: /bin/rm -f hypergeometric-en.texi
1.16 takayama 96: $(OXWEAVE) C en <hypergeometric.oxweave >hypergeometric-en.texi
97:
98: number-ja.texi : number.oxweave
99: /bin/rm -f number-ja.texi
100: $(OXWEAVE) C ja <number.oxweave >number-ja.texi
101:
102: number-en.texi : number.oxweave
103: /bin/rm -f number-en.texi
104: $(OXWEAVE) C en <number.oxweave >number-en.texi
105:
106: calculus-ja.texi : calculus.oxweave
107: /bin/rm -f calculus-ja.texi
108: $(OXWEAVE) C ja <calculus.oxweave >calculus-ja.texi
109:
110: calculus-en.texi : calculus.oxweave
111: /bin/rm -f calculus-en.texi
112: $(OXWEAVE) C en <calculus.oxweave >calculus-en.texi
113:
114: series-ja.texi : series.oxweave
115: /bin/rm -f series-ja.texi
116: $(OXWEAVE) C ja <series.oxweave >series-ja.texi
117:
118: series-en.texi : series.oxweave
119: /bin/rm -f series-en.texi
120: $(OXWEAVE) C en <series.oxweave >series-en.texi
121:
122: matrix-ja.texi : matrix.oxweave
123: /bin/rm -f matrix-ja.texi
124: $(OXWEAVE) C ja <matrix.oxweave >matrix-ja.texi
125:
126: matrix-en.texi : matrix.oxweave
127: /bin/rm -f matrix-en.texi
128: $(OXWEAVE) C en <matrix.oxweave >matrix-en.texi
129:
130: graphic-ja.texi : graphic.oxweave
131: /bin/rm -f graphic-ja.texi
132: $(OXWEAVE) C ja <graphic.oxweave >graphic-ja.texi
133:
134: graphic-en.texi : graphic.oxweave
135: /bin/rm -f graphic-en.texi
136: $(OXWEAVE) C en <graphic.oxweave >graphic-en.texi
137:
138: print-ja.texi : print.oxweave
139: /bin/rm -f print-ja.texi
140: $(OXWEAVE) C ja <print.oxweave >print-ja.texi
141:
142: print-en.texi : print.oxweave
143: /bin/rm -f print-en.texi
144: $(OXWEAVE) C en <print.oxweave >print-en.texi
145:
146: poly-ja.texi : poly.oxweave
147: /bin/rm -f poly-ja.texi
148: $(OXWEAVE) C ja <poly.oxweave >poly-ja.texi
149:
150: poly-en.texi : poly.oxweave
151: /bin/rm -f poly-en.texi
152: $(OXWEAVE) C en <poly.oxweave >poly-en.texi
153:
154: complex-ja.texi : complex.oxweave
155: /bin/rm -f complex-ja.texi
156: $(OXWEAVE) C ja <complex.oxweave >complex-ja.texi
157:
158: complex-en.texi : complex.oxweave
159: /bin/rm -f complex-en.texi
160: $(OXWEAVE) C en <complex.oxweave >complex-en.texi
161:
1.15 takayama 162:
1.1 takayama 163: oxxm.texi : $(ASIRLIB)/xm Makefile
164: /bin/rm -f oxxm.texi
1.9 noro 165: $(OXWEAVE) C-texi jp-texi <$(ASIRLIB)/xm >oxxm.texi
1.1 takayama 166:
167: oxxm-eg.texi : $(ASIRLIB)/xm Makefile
168: /bin/rm -f oxxm-eg.texi
1.9 noro 169: $(OXWEAVE) C-texi eg-texi <$(ASIRLIB)/xm >oxxm-eg.texi
1.1 takayama 170:
171: oxmath.texi : $(CONTRIB)/m Makefile
172: /bin/rm -f oxmath.texi
1.9 noro 173: $(OXWEAVE) C-texi jp-texi <$(CONTRIB)/m >oxmath.texi
1.1 takayama 174:
175: oxmath-eg.texi : $(CONTRIB)/m Makefile
176: /bin/rm -f oxmath-eg.texi
1.9 noro 177: $(OXWEAVE) C-texi eg-texi <$(CONTRIB)/m >oxmath-eg.texi
1.1 takayama 178:
179: oxphc.texi : $(CONTRIB)/phc Makefile
180: /bin/rm -f oxphc.texi
1.9 noro 181: $(OXWEAVE) C-texi jp-texi <$(CONTRIB)/phc >oxphc.texi
1.1 takayama 182:
183: oxphc-eg.texi : $(CONTRIB)/phc Makefile
184: /bin/rm -f oxphc-eg.texi
1.9 noro 185: $(OXWEAVE) C-texi eg-texi <$(CONTRIB)/phc >oxphc-eg.texi
1.1 takayama 186:
187: oxgnuplot.texi : $(CONTRIB)/gnuplot Makefile
188: /bin/rm -f oxgnuplot.texi
1.9 noro 189: $(OXWEAVE) C-texi jp-texi <$(CONTRIB)/gnuplot >oxgnuplot.texi
1.1 takayama 190:
191: oxgnuplot-eg.texi : $(CONTRIB)/gnuplot Makefile
192: /bin/rm -f oxgnuplot-eg.texi
1.9 noro 193: $(OXWEAVE) C-texi eg-texi <$(CONTRIB)/gnuplot >oxgnuplot-eg.texi
1.1 takayama 194:
1.19 takayama 195: oxsm1.texi : sm1.oxweave Makefile
1.1 takayama 196: /bin/rm -f oxsm1.texi
1.19 takayama 197: $(OXWEAVE) C-texi jp-texi <sm1.oxweave >oxsm1.texi
1.1 takayama 198:
1.19 takayama 199: oxsm1-eg.texi : sm1.oxweave Makefile
1.1 takayama 200: /bin/rm -f oxsm1-eg.texi
1.19 takayama 201: $(OXWEAVE) C-texi eg-texi <sm1.oxweave >oxsm1-eg.texi
1.1 takayama 202:
203: oxom.texi : $(CONTRIB)/om Makefile
204: /bin/rm -f oxom.texi
1.9 noro 205: $(OXWEAVE) C-texi jp-texi <$(CONTRIB)/om >oxom.texi
1.1 takayama 206:
207: oxom-eg.texi : $(CONTRIB)/om Makefile
208: /bin/rm -f oxom-eg.texi
1.9 noro 209: $(OXWEAVE) C-texi eg-texi <$(CONTRIB)/om >oxom-eg.texi
1.1 takayama 210:
1.11 takayama 211: dsolv-jp.texi : dsolv.oxweave Makefile
212: /bin/rm -f dsolv-jp.texi
213: $(OXWEAVE) C-texi jp-texi <dsolv.oxweave >dsolv-jp.texi
214:
215: dsolv-eg.texi : dsolv.oxweave Makefile
216: /bin/rm -f dsolv-eg.texi
217: $(OXWEAVE) C-texi eg-texi <dsolv.oxweave >dsolv-eg.texi
218:
1.12 takayama 219: longname-jp.texi : $(CONTRIB)/longname Makefile
220: /bin/rm -f longname-jp.texi
221: $(OXWEAVE) C-texi jp-texi <$(CONTRIB)/longname >longname-jp.texi
222:
223: longname-eg.texi : $(CONTRIB)/longname Makefile
224: /bin/rm -f longname-eg.texi
225: $(OXWEAVE) C-texi eg-texi <$(CONTRIB)/longname >longname-eg.texi
226:
1.13 takayama 227: oxtigers-jp.texi : $(CONTRIB)/tigers Makefile
228: /bin/rm -f oxtigers-jp.texi
229: $(OXWEAVE) C-texi jp-texi <$(CONTRIB)/tigers >oxtigers-jp.texi
230:
231: oxtigers-eg.texi : $(CONTRIB)/tigers Makefile
232: /bin/rm -f oxtigers-eg.texi
233: $(OXWEAVE) C-texi eg-texi <$(CONTRIB)/tigers >oxtigers-eg.texi
234:
1.23 takayama 235: ### Generating *auto*.texi cf. JAAUTO, ENAUTO
1.24 takayama 236: ## base
1.23 takayama 237: base-auto-en.texi : $(CONTRIB)/names.rr gentexi
238: rm -f base-auto-en.texi
239: $(OXWEAVE) usage <$(CONTRIB)/names.rr | ./gentexi --category base --en --upnode Top ${OPTGENTEXI} >base-auto-en.texi
240:
241: base-auto-ja.texi : $(CONTRIB)/names.rr gentexi
242: rm -f base-auto-ja.texi
243: $(OXWEAVE) usage <$(CONTRIB)/names.rr | ./gentexi --category base --ja --upnode Top ${OPTGENTEXI} >base-auto-ja.texi
1.25 takayama 244:
245: ## poly
246: poly-auto-en.texi : $(CONTRIB)/names.rr gentexi
247: rm -f poly-auto-en.texi
248: $(OXWEAVE) usage <$(CONTRIB)/names.rr | ./gentexi --category poly --en --upnode Top ${OPTGENTEXI} >poly-auto-en.texi
249:
250: poly-auto-ja.texi : $(CONTRIB)/names.rr gentexi
251: rm -f poly-auto-ja.texi
252: $(OXWEAVE) usage <$(CONTRIB)/names.rr | ./gentexi --category poly --ja --upnode Top ${OPTGENTEXI} >poly-auto-ja.texi
1.26 takayama 253:
254: ## print
255: print-auto-en.texi : $(CONTRIB)/names.rr gentexi
256: rm -f print-auto-en.texi
257: $(OXWEAVE) usage <$(CONTRIB)/names.rr | ./gentexi --category print --en --upnode Top ${OPTGENTEXI} >print-auto-en.texi
258:
259: print-auto-ja.texi : $(CONTRIB)/names.rr gentexi
260: rm -f print-auto-ja.texi
261: $(OXWEAVE) usage <$(CONTRIB)/names.rr | ./gentexi --category print --ja --upnode Top ${OPTGENTEXI} >print-auto-ja.texi
1.27 takayama 262:
263: ## matrix
264: matrix-auto-en.texi : $(CONTRIB)/names.rr gentexi
265: rm -f matrix-auto-en.texi
266: $(OXWEAVE) usage <$(CONTRIB)/names.rr | ./gentexi --category matrix --en --upnode Top ${OPTGENTEXI} >matrix-auto-en.texi
267:
268: matrix-auto-ja.texi : $(CONTRIB)/names.rr gentexi
269: rm -f matrix-auto-ja.texi
270: $(OXWEAVE) usage <$(CONTRIB)/names.rr | ./gentexi --category matrix --ja --upnode Top ${OPTGENTEXI} >matrix-auto-ja.texi
1.24 takayama 271:
272: # pfp
273: pfp-auto-en.texi : $(CONTRIB)/pfpcoh.rr $(CONTRIB)/pfphom.rr gentexi
274: rm -f pfp-auto-en.texi
275: cat $(CONTRIB)/pfpcoh.rr $(CONTRIB)/pfphom.rr | $(OXWEAVE) usage | ./gentexi --en --upnode Top ${OPTGENTEXI} >pfp-auto-en.texi
276:
277: pfp-auto-ja.texi : $(CONTRIB)/pfpcoh.rr $(CONTRIB)/pfphom.rr gentexi
278: rm -f pfp-auto-ja.texi
279: cat $(CONTRIB)/pfpcoh.rr $(CONTRIB)/pfphom.rr | $(OXWEAVE) usage | ./gentexi --ja --upnode Top ${OPTGENTEXI} >pfp-auto-ja.texi
1.23 takayama 280:
1.30 ! takayama 281: ###misc
! 282: misc-ja.texi : misc.oxweave
! 283: /bin/rm -f misc-ja.texi
! 284: $(OXWEAVE) C ja <misc.oxweave >misc-ja.texi
! 285: misc-en.texi : misc.oxweave
! 286: /bin/rm -f misc-en.texi
! 287: $(OXWEAVE) C en <misc.oxweave >misc-en.texi
1.29 takayama 288:
289: ###glib
290: glib-ja.texi : glib.oxweave
291: /bin/rm -f glib-ja.texi
292: $(OXWEAVE) C ja <glib.oxweave >glib-ja.texi
293: glib-en.texi : glib.oxweave
294: /bin/rm -f glib-en.texi
295: $(OXWEAVE) C en <glib.oxweave >glib-en.texi
296: glib-auto-en.texi : ${ASIRLIB}/glib gentexi
297: rm -f glib-auto-en.texi
298: cat ${ASIRLIB}/glib | $(OXWEAVE) usage | ./gentexi --category glib --en --upnode Top ${OPTGENTEXI} >glib-auto-en.texi
299: glib-auto-ja.texi : ${ASIRLIB}/glib gentexi
300: rm -f glib-auto-ja.texi
301: cat ${ASIRLIB}/glib | $(OXWEAVE) usage | ./gentexi --category glib --ja --upnode Top ${OPTGENTEXI} >glib-auto-ja.texi
302:
303:
1.23 takayama 304: ### Generating online manual
305: gen-help-eg: $(EGSRCS) $(ASIRDOC)/extract_func $(ENAUTO)
1.3 noro 306: -rm -rf tmp help-eg
307: mkdir help-eg tmp
1.23 takayama 308: cp cman-eg.texi $(EGSRCS) $(ENAUTO) tmp
1.3 noro 309: -(cd tmp; makeinfo --force cman-eg.texi)
1.5 takayama 310: (cd help-eg; for i in ../tmp/asir-contrib*; do ../$(ASIRDOC)/extract_func $$i; done)
1.14 takayama 311: ## duplicate some help files
312: -(cd help-eg; cp sm1_hilbert hilbert_polynomial)
1.3 noro 313:
1.23 takayama 314: gen-help-jp: $(JPSRCS) $(ASIRDOC)/extract_func $(JAAUTO)
1.18 takayama 315: -rm -rf tmp-ja help-jp
316: mkdir help-jp tmp-ja
1.23 takayama 317: for i in cman.texi $(JPSRCS) $(JAAUTO); do nkf -e $$i > tmp-ja/$$i; done
1.18 takayama 318: -(cd tmp-ja; makeinfo --force cman.texi)
319: (cd help-jp; for i in ../tmp-ja/asir-contrib*; do ../$(ASIRDOC)/extract_func -j $$i; done)
1.14 takayama 320: ## duplicate some help files
321: -(cd help-jp; cp sm1_hilbert hilbert_polynomial)
1.3 noro 322:
1.18 takayama 323: gen-html-en: gen-help-eg
1.15 takayama 324: -rm -rf html-en
325: -mkdir html-en
326: -cp tmp/*.texi html-en
327: -(cd html-en; ${TEXI2HTML} cman-eg.texi)
328:
1.18 takayama 329: gen-html-ja: gen-help-jp
1.15 takayama 330: -mkdir html-ja
1.18 takayama 331: -cp tmp-ja/*.texi html-ja
332: -cp tmp-ja/cman.texi html-ja/cman-ja.texi
1.15 takayama 333: -(cd html-ja; ${TEXI2HTML} cman-ja.texi)
334:
1.18 takayama 335: help: gen-help-eg gen-help-jp
1.4 takayama 336:
337: install-help: help
1.6 takayama 338: /bin/rm -rf $(OpenXM_ROOT)/lib/asir/help-jp/xm.help
1.5 takayama 339: mkdir $(OpenXM_ROOT)/lib/asir/help-jp/xm.help
1.7 takayama 340: -cp -f help-jp/* $(OpenXM_ROOT)/lib/asir/help-jp/xm.help
1.6 takayama 341: /bin/rm -rf $(OpenXM_ROOT)/lib/asir/help-eg/xm.help
1.5 takayama 342: mkdir $(OpenXM_ROOT)/lib/asir/help-eg/xm.help
1.7 takayama 343: -cp -f help-eg/* $(OpenXM_ROOT)/lib/asir/help-eg/xm.help
1.5 takayama 344:
1.18 takayama 345: install-html-help: gen-html-en gen-html-ja
1.15 takayama 346: -( tar cf - html-en | (cd $(OpenXM_doc)/asir-contrib ; tar xf -))
347: -( tar cf - html-ja | (cd $(OpenXM_doc)/asir-contrib ; tar xf -))
348:
1.5 takayama 349: install-document : all clean-document
350: -ptex cman.texi
351: -ptex cman.texi
1.8 takayama 352: -cp cman.dvi $(OpenXM_doc)/asir-contrib/cman-jp.dvi
1.5 takayama 353: -$(DVIPS) cman >$(OpenXM_doc)/asir-contrib/cman-jp.ps
354: -tex cman-eg.texi
355: -tex cman-eg.texi
1.8 takayama 356: -cp cman-eg.dvi $(OpenXM_doc)/asir-contrib/cman-eg.dvi
1.5 takayama 357: -$(DVIPS) cman-eg >$(OpenXM_doc)/asir-contrib/cman-eg.ps
358:
359:
360: clean-document :
361: /bin/rm -rf $(OpenXM_doc)/asir-contrib
1.28 takayama 362: rm -f ./.done_install
1.5 takayama 363: mkdir $(OpenXM_doc)/asir-contrib
364: touch $(OpenXM_doc)/asir-contrib/DO_NOT_EDIT_THIS_DIRECTORY._ALL_FILES_ARE_AUTOMATICDALLY_GENERATED.
365:
1.3 noro 366:
1.1 takayama 367: clean :
1.28 takayama 368: rm -f ./.done_install
1.23 takayama 369: rm -f gentexi $(JAAUTO) $(ENAUTO) gentexi-in.tmp gentexi-out.tmp
1.30 ! takayama 370: rm -f oxxm.texi oxxm-eg.texi oxmath.texi *~ *.aux *.cp *.dvi *.fn *.ky *.log *.pg *.toc *.tp *.vr oxmath-eg.texi oxphc.texi oxphc-eg.texi oxgnuplot.texi oxgnuplot-eg.texi oxsm1.texi oxsm1-eg.texi oxom-eg.texi oxom.texi dsolv-jp.texi dsolv-eg.texi longname-jp.texi longname-eg.texi oxtigers-jp.texi oxtigers-eg.texi names-ja.texi names-en.texi hypergeometric-ja.texi hypergeometric-en.texi number-en.texi number-ja.texi calculus-en.texi calculus-ja.texi series-en.texi series-ja.texi matrix-en.texi matrix-ja.texi graphic-en.texi graphic-ja.texi print-en.texi print-ja.texi poly-en.texi poly-ja.texi complex-en.texi complex-ja.texi plucker-ja.texi plucker-en.texi base-ja.texi base-en.texi glib-ja.texi glib-en.texi misc-ja.texi misc-en.texi
1.18 takayama 371: /bin/rm -rf help-jp help-eg tmp tmp-ja html-en html-ja
FreeBSD-CVSweb <freebsd-cvsweb@FreeBSD.org>