Annotation of OpenXM/doc/install.oxweave, Revision 1.34
1.34 ! takayama 1: %% $OpenXM: OpenXM/doc/install.oxweave,v 1.33 2000/09/05 08:24:34 takayama Exp $
1.1 takayama 2: OpenXM/doc/install.oxweave
3:
1.6 takayama 4: /*&C
5: OpenXM URL : http://www.math.kobe-u.ac.jp/OpenXM
1.34 ! takayama 6: http://www.openxm.org
1.16 takayama 7: Consult firstly the ERRATA section for your release on this web cite
8: for troubles.
1.6 takayama 9:
10: OpenXM package : Getting started.
11:
1.34 ! takayama 12: This document is for OpenXM version 1.1.3. (Draft)
! 13:
1.6 takayama 14: */
1.1 takayama 15: /*&jp
1.23 takayama 16: ★ OpenXM GENERIC パッケージの利用方法
1.6 takayama 17: この節では, OpenXM package binary distribution のインストール法を説明します.
18: インストールに必要なシステムの仕様については, 動作環境を御覧ください.
1.1 takayama 19: */
20: /*&eg
1.23 takayama 21: ***** HOW TO INSTALL OpenXM GENERIC PACKAGE?
1.6 takayama 22: In this section, we will explain how to install OpenXM package binary
23: distribution.
24: As to the required environment, see the section "System Requirement"
25: */
26: /*&jp
27:
28: (1) Tar ボールより次のようにしてディレクトリ OpenXM を取り出します.
1.13 takayama 29: OpenXM はどこにおいてもかまいません. ルートになってインストール
30: する必要もありません.
31: できれば, /usr/local/OpenXM においてほしいと思います.
1.6 takayama 32:
1.1 takayama 33: */
1.6 takayama 34: /*&eg
1.1 takayama 35:
1.6 takayama 36: (1) Extract the directory OpenXM from the tar ball.
37: You can put the directory OpenXM at any place in the file system.
1.13 takayama 38: You do not need to be a root to install it.
39: We are happy if you put OpenXM at /usr/local/OpenXM
1.2 takayama 40:
41: */
1.6 takayama 42: /*&C
1.24 takayama 43:
44: tar xzvf OpenXM-shared.tgz
1.6 takayama 45: tar xzvf OpenXM-binary-OPERATING_SYSTEM_CPU_TYPE.tgz
46:
1.2 takayama 47: */
1.6 takayama 48: /*&jp
49: 以下 (1) で生成されたディレクトリ OpenXM の絶対パスを /xxx/yyy/OpenXM
50: と書きます.
51:
1.1 takayama 52: */
1.6 takayama 53: /*&eg
54: In the sequel, we will denote the absolute path of the directory OpenXM
55: by /xxx/yyy/OpenXM.
1.1 takayama 56:
57: */
58: /*&jp
1.23 takayama 59: (2) OpenXM/rc/dot.cshrc, OpenXM/rc/dot.bashrc,
60: OpenXM/rc/openxm, OpenXM/rc/asir, OpenXM/rc/oxmath, 等の
61: ファイルを自動生成します.
62: openxm, asir, oxmath などは OpenXM クライアントを起動するための
63: シエルスクリプトです. これらを /usr/local/bin にインストールするには
64: 次のように入力します.
1.6 takayama 65:
1.5 takayama 66: */
67: /*&eg
1.19 takayama 68: (2) Generate OpenXM/rc/dot.cshrc, OpenXM/rc/dot.bashrc and
1.23 takayama 69: OpenXM/rc/openxm, OpenXM/rc/asir, OpenXM/rc/oxmath, ...
70: The files openxm, asir, oxmath are shell scripts to invoke OpenXM clients.
71: If you want to install these shell scripts to /usr/local/bin,
72: type in as follows.
1.6 takayama 73:
1.5 takayama 74: */
1.6 takayama 75: /*&C
76:
1.8 takayama 77: cd /xxx/yyy/OpenXM/rc
1.23 takayama 78: make install
1.5 takayama 79:
80: */
81: /*&jp
1.23 takayama 82:
83: /usr/local/bin でなく, home directory の bin にインストールしたい
84: ときは, 次のように入力してください.
85:
86: */
87: /*&eg
88:
89: If you want to install them under the bin of your home directory,
90: type in as follows.
91:
92: */
93: /*&C
94:
95: cd /xxx/yyy/OpenXM/rc
96: make install PREFIX=$HOME/bin
97:
98: */
99: /*&C
100:
101: [Note] If you are Solaris user, you might have to type in like
102: /usr/ccs/bin/make install PREFIX=$HOME/bin
103:
104: */
105: /*&jp
106:
107: OpenXM/bin の下のファイルを直接実行したい場合は, 以下の設定が必要です.
108: OpenXM clients を実行するだけの場合は, (3), (3') は skip してください.
109:
1.6 takayama 110: (3) csh を利用してる場合, 次の行を ~/.cshrc の最後に加えます.
111:
1.1 takayama 112: */
113: /*&eg
1.23 takayama 114:
115: If you want to execute binaries under OpenXM/bin, you need to perform
116: (3) and (3').
117: If you use only OpenXM clients, skip (3) and (3').
118:
1.6 takayama 119: (3) Append the following line to the end of ~/.cshrc when you are
120: using csh as your shell.
121:
1.1 takayama 122: */
123: /*&C
1.2 takayama 124:
1.6 takayama 125: source /xxx/yyy/OpenXM/rc/dot.cshrc
1.2 takayama 126:
1.1 takayama 127: */
128: /*&jp
1.6 takayama 129: (3') bash を利用してる場合, 次の行を ~/.bashrc の最後に加えます.
130:
1.1 takayama 131: */
132: /*&eg
1.6 takayama 133: (3') Append the following line to the end of ~/.bashrc when you are
134: using bash as your shell.
135:
136: */
137: /*&C
138:
1.18 takayama 139: source /xxx/yyy/OpenXM/rc/dot.bashrc
1.6 takayama 140:
1.1 takayama 141: */
1.14 takayama 142:
143: /*&jp
144:
145: (3) または (3') を終了したら, いったん logout して login しなおすか
1.18 takayama 146: または, source コマンドで, dot.bashrc または dot.csh を読み込んで下さい.
1.14 takayama 147:
148: */
149: /*&eg
150:
151: After finishing the step (3) or (3'), logout and login again,
1.18 takayama 152: or read dot.bashrc or dot.cshrc file by the source command.
1.14 takayama 153:
154: */
155:
1.6 takayama 156:
1.32 takayama 157: /*&C
158:
159: FAQ
160:
161: */
162: /*&jp
163: Q. OpenXM の asir OpenXM client を icon でスタートするには?
164: A. 次の行を, .Xdefaults または, xrdb で読み込むファイルに書いておきます.
165: */
166: /*&eg
167: Q. How to start asir OpenXM clients in the iconic mode?
168: A. Add the following line to .Xdefaults or a file you read by xrdb.
169: */
170: /*&C
171:
172: ox_xterm*iconic: on
1.28 takayama 173:
174: */
175: /*&jp
176:
177: ★ OpenXM FreeBSD binary パッケージのインストール方法
178: openxm-version.tgz
179: を ftp サイトより copy して,
180: root になって,
181: pkg_add openxm-version.tgz
182: OpenXM は /usr/local/OpenXM にインストールされます.
183: あとは, 上の (4) へ.
184: ここで version は OpenXM の version 番号で, たとえば,
185: 2000, 3/20(Mon) 版は 1.1.2
186:
1.30 takayama 187: java および linux emulation が実行に必要です.
188: java が, サーチパスのなかにある必要がありますので,
189: たとえば,
190: set path=(/usr/local/jdk1.1.8 $path)
191: rehash
192: してから, pkg_add して下さい.
193: インストール終了後のメッセージにしたがい, 必要な設定を
194: おこなって下さい.
195:
1.34 ! takayama 196: jdk は /usr/ports/lang/jdk よりインストールできます.
! 197: Linux emulation を有効にするには,
! 198: /etc/rc.conf に
! 199: linux_enable="YES"
! 200: と書き,
! 201: /usr/ports/emulators/linux_base を用いて, linux 用の共有ライブラリ等を
! 202: インストールしておきます.
! 203: (FreeBSD 3.x, 4.x)
! 204:
! 205:
1.30 takayama 206: /usr/local にインストールしなかった場合は,
207: (2) を実行して下さい.
208:
1.28 takayama 209: */
210: /*&eg
211:
212: ***** HOW TO INSTALL OpenXM FreeBSD binary package
213: Copy
214: openxm-version.tgz
215: from our ftp cite.
216: Become the super user and type
217: pkg_add openxm-version.tgz
218: OpenXM will be installed to /usr/local/OpenXM
219: Go to (4) above.
220: Here, version is the version number of OpenXM.
221: For example, the version number of the OpenXM of May 20 (Mon), 2000
222: is 1.1.2
223:
1.30 takayama 224: java and linux emulation are required to run OpenXM packages.
225: Java needs to be in the search path. So, for example, execute pkg_add
226: after
227: set path=(/usr/local/jdk1.1.8 $path)
228: rehash
229: Following the message of pkg_add after the installation,
1.34 ! takayama 230: set path.
! 231:
! 232: jdk can be installed by /usr/ports/lang/jdk.
! 233: Add the line
! 234: linux_enable="YES"
! 235: to /etc/rc.conf and install shared libraries for linux
! 236: by /usr/ports/emulators/linux_base.
! 237: Then, you can emulate linux.
! 238:
1.30 takayama 239: If you do not install under /usr/local,
240: goto (2).
241:
1.28 takayama 242: */
243: /*&jp
244:
245: ★ OpenXM Redhat Package manager (Linux)
246: binary パッケージのインストール方法
1.29 takayama 247: openxm-shared-version-suffix.noarch.rpm
1.28 takayama 248: openxm-binary-version-suffix.i386.rpm
249: を ftp サイトより copy して,
250: root になって,
1.29 takayama 251: rpm -i openxm-shared-version-suffix.noarch.rpm
1.28 takayama 252: rpm -i openxm-binary-version-suffix.i386.rpm
253: OpenXM は /usr/local/OpenXM にインストールされます.
254: あとは, 上の (4) へ.
255: ここで version は OpenXM の version 番号で, たとえば,
256: 2000, 3/20(Mon) 版は 1.1.2
257: suffix は, RPM 版の minor version number.
258:
259: Debian を利用している場合, コマンド alien で, rpm 形式を deb 形式に
260: 変換できます.
261:
1.30 takayama 262: /usr/local の下へインストールしなかった場合は, (2) を実行して下さい.
263:
1.28 takayama 264: */
265: /*&eg
266:
267: ***** HOW TO INSTALL OpenXM by the redhat Package manager (Linux)
268: Copy
1.29 takayama 269: openxm-shared-version-suffix.noarch.rpm
1.28 takayama 270: openxm-binary-version-suffix.i386.rpm
271: from our ftp cite.
272: Become the super user and type
1.29 takayama 273: rpm -i openxm-shared-version-suffix.noarch.rpm
1.28 takayama 274: rpm -i openxm-binary-version-suffix.i386.rpm
275: OpenXM will be installed to /usr/local/OpenXM
276: Go to (4) above.
277: Here, version is the version number of OpenXM.
278: For example, the version number of the OpenXM of May 20 (Mon), 2000
279: is 1.1.2
280: suffix is the minor version number of the package.
281:
282: If you are using debian, please use the command alien to translate
283: rpm to deb.
1.30 takayama 284:
285: If you do not install under /usr/local, goto (2).
286:
1.13 takayama 287:
288: */
1.6 takayama 289:
290: /*&C
1.8 takayama 291:
1.27 takayama 292: ***** OpenXM client programs under OpenXM/bin or /usr/local/bin:
293: asir
294: oxmath
295: openxm sm1
296:
297: ***** OpenXM server programs:
298: OpenXM/bin/ox_asir
299: OpenXM/bin/ox_sm1
300: OpenXM/bin/ox_math
301: OpenXM/lib/sm1/bin/ox_sm1_gnuplot
302: OpenXM/lib/sm1/bin/ox_sm1_phc
303: OpenXM/lib/sm1/bin/ox_sm1_tigers
304: OpenXM/lib/java-support/OMproxy.class
305:
1.8 takayama 306: ***** QUALITY:
1.25 takayama 307: Experimental:
1.6 takayama 308: OpenXM/bin/k0, OpenXM/bin/d0
1.25 takayama 309: Asir client functions: m_* (Mathematica) , om_* (OpenMath)
1.29 takayama 310: OpenXM/lib/java-support/ *
1.25 takayama 311: 70%
1.6 takayama 312: OpenXM/bin/ox_math, OpenXM/bin/math2ox
1.11 takayama 313: OpenXM/bin/sm1, ox_sm1 on Linux libc6.
1.6 takayama 314: */
315: /*&C
316:
317:
1.8 takayama 318: */
319: /*&jp
320: ★ Java に関する注意:
321: 注意 1.
322: OpenMath 用の OMproxy には現在のところ, jdk が必要です.
323: たとえば bash を利用している場合, .bashrc で
324: PATH=/usr/local/jdk1.1.8/bin:$PATH
325: export PATH
1.10 takayama 326: などとして, jdk の java, javac をサーチパスの先のほうへもっていくようにして
1.8 takayama 327: ください.
1.10 takayama 328: csh を利用している場合, .cshrc で
329: set path=(/usr/local/jdk1.1.8/bin $path)
330: として, jdk の java, javac をサーチパスにいれます.
1.17 takayama 331:
1.34 ! takayama 332: jdk の入手先: FreeBSD --- /usr/ports/java/jdk を見てください.
1.33 takayama 333: Linux ---
334:
1.17 takayama 335: 注意:
336: なお, Kaffe 1.0.b4 の java は, class BigInteger に method
337: toByteArray が含まれてないため, OpenMath モジュールでは使用できません.
1.8 takayama 338: */
339: /*&eg
340: ***** JAVA
341: In order to use OMproxy, asir client om_*,
342: you need to install JDK.
343: The bin dir of the JDK must be in yur search path.
344: For example, you need to add the following line
1.10 takayama 345: to your .chsrc when your shell is csh
1.8 takayama 346: set path=(/usr/local/jdk1.1.8/bin $path)
1.10 takayama 347: Bash users put the following line to .bashrc
348: PATH=/usr/local/jdk1.1.8/bin:$PATH
349: export PATH
1.17 takayama 350:
1.33 takayama 351:
1.34 ! takayama 352: Where can I get jdk? : FreeBSD --- see /usr/ports/java/jdk
1.33 takayama 353: Linux ---
354:
1.17 takayama 355: Remark:
356: The Java interpreter of Kaffe 1.0.b4 does not contain the method
357: toByteArray in the class BigInteger.
358: So, it cannot be used for the OpenMath module.
1.8 takayama 359: */
360:
361: /*&C
362:
363:
1.6 takayama 364:
365:
366: */
367: /*&jp
368: ★ 動作環境
369:
370: */
371: /*&eg
1.7 takayama 372: ***** SYSTEM REQUIREMENTS
1.6 takayama 373:
374: */
375: /*&C
376:
1.34 ! takayama 377: OS: FreeBSD 3.3, 3.4, 4.x (Intel CPU),
1.11 takayama 378: Linux systems (Intel CPU):
1.15 takayama 379: Most Linux with libc5 and with libc6 (glibc 2.x).
1.7 takayama 380:
381: X window system is required.
382:
383: Most part of the OpenXM package may work on other versions of
1.11 takayama 384: FreeBSD 3.x and Linux, but we have not yet tested.
1.6 takayama 385:
386: */
387: /*&jp
1.8 takayama 388: 次の modules は, OS の標準 distribution 以外に, さらに下に記したソフトを
1.6 takayama 389: 必要とします.
390: */
391: /*&eg
392: The following modules require the listed softwares other than the standard
393: OS package.
394: */
395: /*&C
396:
1.27 takayama 397: (1) OpenXM/bin/oxmath : Mathematica Version 3.x or 4.x
1.6 takayama 398: (Mathematica server) at /usr/local/Mathematica
399: OpenXM/bin/math2ox [ see http://www.wolfram.com ]
400: Asir client functions m_*
401: (2) OpenXM/lib/java-support : JDK at /usr/local/jdk??
1.8 takayama 402: [ see the section on JAVA]
1.6 takayama 403: Asir client functions om_*
404: sm1 client functions om_*
1.7 takayama 405: (3) PHC pack (OpenXM/bin/phc) and asir client functions
406: phc_* run only on linux (glib5).
1.8 takayama 407: If you install the linux emulation^{note 1} on Free BSD, they run on
408: FreeBSD, too.
409: <note 1>
410: Add linux_enable="YES" in /etc/rc.conf
411: You need the following packages:
412: pkg_info | grep linu
413: linux_base-5.2 The base set of packages needed in Linux mode
414: linux_devtools-5.2 Packages needed for doing development in Linux mode
1.6 takayama 415:
416: */
417:
418:
1.1 takayama 419: /*&jp
1.7 takayama 420: 日本語版の注意.
1.3 maekawa 421: 注意 1.
422: asir で日本語のヘルプを利用するには,
1.1 takayama 423: PAGER=jless
424: export PAGER
1.3 maekawa 425: などで, 日本語を扱える PAGER を指定する必要があるかもしれません.
1.1 takayama 426: */
1.7 takayama 427:
428: /*&eg
429:
1.8 takayama 430: The installation is completed.
1.7 takayama 431:
432: */
433: /*&jp
434:
435: 以上.
436:
437: */
438:
1.1 takayama 439: /*&jp
1.7 takayama 440: ★ 文書
441:
442: OpenXM パッケージでもっとも充実しているクライアントは,
443: asir です.
444: asir のつかいかたは
445: OpenXM/doc/asir2000/man-jp.dvi
446: または OpenXM/doc/asir2000/html-jp の HTML ファイルを見て下さい.
447: asir 用 OpenXM クライアントライブラリのつかい方は,
448: OpenXM/doc/asir-contrib/cman-jp.dvi
449: を見て下さい. dvi の付くファイルは xdvi で見ることができます.
450:
451: OpenXM の設計の概要については,
452: OpenXM/doc/issac2000/issac2000.ps
453: を見て下さい.
454: ps の付くファイルは, ghostview で見ることができます.
455:
1.25 takayama 456: Mathematica client については, OpenXM/doc/ox_math を御覧ください.
457: sm1 client については, OpenXM/doc/kan96xx を御覧ください.
458: asir は, 多項式処理用のライブラリとしてリンクできます.
459: これについては, OpenXM/doc/oxlib を御覧ください.
460:
461: OpenXM 対応の, サーバ を作成するには, OpenXM/src/ox_toolkit
462: が参考になるかもしれません. Java のクラスについては
463: OpenXM/src/OpenMath が参考になるかもしれません.
464:
1.7 takayama 465: */
466: /*&eg
467: ***** DOCUMENTS
468:
469: The best OpenXM client in the OpenXM package is now
470: asir.
471: Documents on asir are
472: OpenXM/doc/asir2000/man-eg.dvi
473: OpenXM/doc/asir2000/html-eg (HTML)
474:
475: The file
476: OpenXM/doc/asir-contrib/cman-eg.dvi
477: is a document on OpenXM client libraries for asir.
1.1 takayama 478:
1.7 takayama 479: The design outline is described in
480: OpenXM/doc/issac2000/issac2000.ps
481:
482: Dvi files can be previewed by xdvi and
483: ps files can be previewed by ghostview.
1.25 takayama 484:
485: As to Mathematica client, see OpenXM/doc/ox_math.
486: As to sm1 client, see OpenXM/doc/kan96xx.
487: The asir can be used as a C library for polynomial manupulation.
488: See OpenXM/doc/oxlib.
489:
490: If you are interested in writing a server for OpenXM, please refer to
491: OpenXM/src/ox_toolkit and OpenXM/src/OpenMath.
492:
1.7 takayama 493: */
1.1 takayama 494:
495:
1.8 takayama 496: /*&eg
497:
498:
499: ***** A QUICK TOUR OF OPENXM BY ASIR
500:
501: */
1.7 takayama 502: /*&jp
1.1 takayama 503:
504:
1.8 takayama 505: ★ ASIR による使用例
1.1 takayama 506:
507:
1.3 maekawa 508: asir を動作させるには, key が必要です.
1.8 takayama 509: OpenXM/lib/asir/asir_key のコメントまたは起動時のメッセージをみて,
510: key を E-mail でとりよせて下さい.
1.1 takayama 511:
1.8 takayama 512: */
513: /*&C
514: ---------------- Call ox_sm1 from asir.
515: bash-2.03$ asir
516: This is Risa/Asir, Version 20000120.
517: Copyright (C) FUJITSU LABORATORIES LIMITED.
518: 1994-1999. All rights reserved.
519: xm Version 20000116. ox_help(0); ox_help("keyword"); for help message
520: [269] sm1_genericAnn([x^3-y^2,[s,x,y]]);
521: /* The annihilating ideal of (x^3-y^2)^s */
522: [-2*y*dx-3*x^2*dy,2*x*dx+3*y*dy-6*s]
523:
524:
525: --------------- Call gnuplot from asir.
526: bash-2.03$ asir
527: This is Risa/Asir, Version 20000120.
528: Copyright (C) FUJITSU LABORATORIES LIMITED.
529: 1994-1999. All rights reserved.
530: xm Version 20000116. ox_help(0); ox_help("keyword"); for help message
531: [269] gnuplot("plot sin(x);");
532: 0
533: [270]
1.13 takayama 534:
535: */
536:
537: /*&jp
538:
539: ★ sm1 クライアントの利用例
540:
541: */
542: /*&eg
543:
544: ****** Example of the use of sm1 client
1.1 takayama 545:
1.8 takayama 546: */
1.1 takayama 547:
1.8 takayama 548: /*&C
549: -------------------------------------- call ox_asir from sm1
1.1 takayama 550: sm1
551: (oxasir.sm1) run ;
1.8 takayama 552: [(x^20-y^20) (x,y)] fctr pmat ; factorize x^20-y^20 by call ox_asir
1.1 takayama 553:
554:
1.8 takayama 555: */
1.1 takayama 556:
1.8 takayama 557: /*&jp
1.5 takayama 558: [著作権表示]
559: OpenXM/Copyright を御覧ください.
1.6 takayama 560: */
1.8 takayama 561: /*&eg
562: [COPYRIGHT]
563: See OpenXM/Copyright.
564: */
565:
566: /*&eg
567:
1.6 takayama 568:
1.7 takayama 569:
1.8 takayama 570: ***** TO COMPILE FROM A SOURCE *****
1.7 takayama 571:
572: */
1.6 takayama 573: /*&jp
1.8 takayama 574:
575:
1.6 takayama 576: ★ OpenXM パッケージの Make 法
577: FreeBSD 2.2.8, FreeBSD 3.3, Linux で動作するものと期待してます.
1.8 takayama 578: Linux glib6 では, いまのところ, /usr/include/features.h
1.20 takayama 579: で #define __FAVOR_BSD 1 してコンパイルする必要がありしたが,
580: 一部のソースを
581: -D_BSD_SOURCE option をつけて gcc でコンパイルするように変えてます
582: (setjmp と sigsetjmp の問題, dirty trick).
1.8 takayama 583:
1.6 takayama 584: OpenXM, OpenXM_contrib, OpenXM_contrib2 が必要です.
585: cvs コミッタの場合次のようにしてソースをとりよせます.
586: */
587: /*&eg
588: * How to make OpenXM package?
589: We have tested the OpenXM package on FreeBSD 2.2.8, FreeBSD 3.3, Linux.
1.20 takayama 590: On Linux glib6, we needed to define
1.8 takayama 591: #define __FAVOR_BSD 1
1.20 takayama 592: in /usr/include/features.h,
593: but now we are compiling some sources with -D_BSD_SOURCE
594: (setjmp vs sigsetjmp).
1.8 takayama 595:
1.6 takayama 596: Do you have directories OpenXM, OpenXM_contrib, OpenXM_contrib2?
597: If you are a CVS committer, then you can get all sources as follows:
598: */
599: //&C rcvs checkout OpenXM OpenXM_contrib OpenXM_contrib2
600: //&C
601: //&jp これらがそろっていたらあとは次のように入力するだけです.
602: //&eg Check that you have these directories, then just type in the following commands
603: /*&C
604:
605: cd OpenXM/src
606: make configure
607: make
608: make install
609:
610: */
611: /*&jp なお, OpenXM/src/ox_math のコンパイルおよび利用には Mathematica が,
612: OpenXM/src/OpenMath のコンパイルおよび利用には
613: には, jdk (java 環境) が必要です.
1.12 takayama 614:
615: Documents を生成するには, tex, ptex (ascii 日本語 tex), dvips, texinfo,
616: texi2html, nkf,
617: が必要です. 詳しくは Makefiles を見て下さい.
618: Document は, binary distribution の OpenXM/doc, OpenXM/lib
619: より得るのが簡単です.
1.6 takayama 620: */
621: /*&eg In order to use and compile OpenXM/src/ox_math, you need Mathematica.
622: In order to use and compile OpenXM/src/OpenMath,
623: you need jdk (java environment).
1.12 takayama 624:
625: In order to generate the full documentation including Japanese documents,
626: you need tex, ptex (ASCII Inc. Japanese tex), dvips, texinfo, texi2html,
627: nkf. See each Makefile.
628: The generated documents are in OpenXM/doc and OpenXM/lib
629: in the binary distribution.
1.15 takayama 630: If you do not like to install Japanese environment such as ptex,
631: type in R for the tex error prompt ? or
632: prepare empty shell scripts ptex and nkf.
1.6 takayama 633: */
634: /*&C
1.1 takayama 635:
1.6 takayama 636: */
1.1 takayama 637:
1.6 takayama 638: /*&jp
1.1 takayama 639:
1.8 takayama 640: [OpenXM 下のファイルの構成メモ]
1.3 maekawa 641: lib/asir には, asir のライブラリ, ox_asir 本体
642:
1.8 takayama 643: cd OpenXM/src/kxx ; make install-for-debug した場合,
1.3 maekawa 644: lib/sm1 は src/SSkan/Doc への symbolic link
645: であり, sm1 のライブラリファイルが格納されています.
646: lib/sm1/bin には, binaryfiles
1.1 takayama 647: sm1, ox_sm1, ox, ox_log, ox_sm1_*
1.3 maekawa 648: へのシンボリックリンクが格納されます.
1.8 takayama 649: このシンボリックリンクは src/kxx で make install-for-debug を実行することにより
1.3 maekawa 650: 作成されます.
1.1 takayama 651:
1.3 maekawa 652: sm1 が ox_asir を利用するのに必要なファイル.
1.1 takayama 653: lib/asir/ox_asir,
654: lib/sm1/bin/ox, lib/sm1/bin/ox_log (src/kxx/ox, src/kxx/ox_log)
655: lib/sm1/ox.sm1, lib/sm1/oxasir.sm1
656:
1.3 maekawa 657: asir が ox_sm1_forAsir を利用するのに必要なファイル:
1.1 takayama 658: lib/asir/ox_launch
1.3 maekawa 659: lib/sm1/bin/ox_sm1_forAsir (ox_sm1 へのリンク)
1.1 takayama 660: lib/asir/xm
1.3 maekawa 661: lib/sm1/ 以下の *.sm1 なるすべての ライブラリファイル.
1.1 takayama 662: callsm1.sm1 callsm1b.sm1
1.3 maekawa 663: (ox_sm1_forAsir の定義ファイル, src/kxx/oxserver00.c
664: ox_sm1 が ox_sm1_forAsir という名前で呼ばれるとこれらのファイルをロード.)
1.1 takayama 665:
1.3 maekawa 666: asir が ox_sm1_gnuplot を利用するのに必要なファイル:
1.1 takayama 667: lib/asir/ox_launch
1.3 maekawa 668: lib/sm1/bin/ox_sm1_gnuplot (ox_sm1 へのリンク, ox_sm1_gnuplot は fork して
1.4 maekawa 669: gnuplot4ox を実行します.)
1.1 takayama 670: lib/asir/xm
671: lib/sm1/callsm1.sm1, lib/sm1/gnuplot.sm1
1.3 maekawa 672: (ox_sm1_gnuplot の定義ファイル, src/kxx/oxserver00.c
673: ox_sm1 が ox_sm1_gnuplot という名前で呼ばれるとこれらのファイルをロード.)
1.4 maekawa 674: bin/gnuplot4ox, bin/gnuplot_x11 (gnuplot 本体, src/gnuplot*)
1.1 takayama 675:
676: ----------------------------------------
1.3 maekawa 677: [開発者用メモ]
1.1 takayama 678:
1.3 maekawa 679: << sm1, ox_sm1, ox, oxlog の debug >>
680: binary file は各 directory の make install により
681: OpenXM/bin にコピーされますが,
682: debug 用にいちいちコピーするのは面倒なので,
1.8 takayama 683: OpenXM/src/kan96xx で make install-for-debug
684: OpenXM/src/kxx で make install-for-debug
1.3 maekawa 685: を実行すると,
686: OpenXM/bin/sm1, ox, ox_sm1, oxlog より,
1.1 takayama 687: OpenXM/src/kan96xx/Kan/sm1
688: OpenXM/src/kxx/ox, OpenXM/src/kxx/ox_sm1, OpenXM/src/kxx/oxlog
1.3 maekawa 689: へのシンボリックリンクが作成されます.
1.1 takayama 690:
1.3 maekawa 691: [CVSコミッタ用メモ]
692: << OpenXM ディレクトリ配布版の作成方法 >>
1.1 takayama 693: rcvs export -rHEAD OpenXM
694: rcvs export -rHEAD OpenXM_contrib
695: rcvs export -rHEAD OpenXM_contrib2
1.21 takayama 696: cd OpenXM/src ; make generate-source-distribution
1.3 maekawa 697: して, OpenXM, OpenXM_contrib, OpenXM_contrib2 全体を tar+gzip.
1.7 takayama 698: */
699:
700: /*&C
701:
702: */
703: /*&jp
704:
705: ★ Solaris に関する注意.
706: Solaris ではまだ問題が山積してます.
707: Solaris での make の問題点については, OpenXM/doc/OpenXM-FAQ-jp.txt
708: を見てください.
1.8 takayama 709: Solaris でコンパイルするには, /usr/ccs/bin をサーチパスの最初へもっていって
710: おきます.
1.7 takayama 711:
712: */
1.8 takayama 713: /*&eg
714: ***** COMPILE ON SOLARIS
715: There are a lot of troubles on Solaris for now.
716: At least,
717: /usr/ccs/bin must be at the top of the command search path to compile
718: on Solaris.
719: */
1.31 takayama 720: /*&jp
721:
722: ★ Redhat Linux 6.1 上でのコンパイル
723: m4-1.4 と autoconf-2.13 が必要.
724: (あらかじめはいっている, autoconf は 2.12 でありこれは
725: gnuplot の make で不具合を生じます.)
1.8 takayama 726:
1.31 takayama 727: */
728: /*&eg
729: ***** COMPILE ON Redhat Linux 6.1
730: m4-1.4 and autoconf-2.13 are required.
731: (Preinstalled autoconf is version 2.12. It causes a trouble when
732: you build gnuplot.)
733: */
1.7 takayama 734:
735: /*&C
736:
1.1 takayama 737: */
FreeBSD-CVSweb <freebsd-cvsweb@FreeBSD.org>