[BACK]Return to install.oxweave CVS log [TXT][DIR] Up to [local] / OpenXM / doc

Annotation of OpenXM/doc/install.oxweave, Revision 1.32

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

FreeBSD-CVSweb <freebsd-cvsweb@FreeBSD.org>