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

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

1.35    ! takayama    1: %% $OpenXM: OpenXM/doc/install.oxweave,v 1.34 2000/09/05 11:57:04 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.35    ! takayama  333:                Linux    --- http://java.sun.com/products/jdk/1.2/ja
        !           334:                             http://java.sun.com/j2se/1.3/ja
1.33      takayama  335:
1.17      takayama  336: 注意:
                    337: なお, Kaffe 1.0.b4 の java は, class BigInteger に method
                    338: toByteArray が含まれてないため, OpenMath モジュールでは使用できません.
1.8       takayama  339: */
                    340: /*&eg
                    341: ***** JAVA
                    342: In order to use OMproxy, asir client om_*,
                    343: you need to install JDK.
                    344: The bin dir of the JDK must be in yur search path.
                    345: For example, you need to add the following line
1.10      takayama  346: to your .chsrc when your shell is csh
1.8       takayama  347: set path=(/usr/local/jdk1.1.8/bin $path)
1.10      takayama  348: Bash users put the following line to .bashrc
                    349: PATH=/usr/local/jdk1.1.8/bin:$PATH
                    350: export PATH
1.17      takayama  351:
1.33      takayama  352:
1.34      takayama  353: Where can I get jdk? :  FreeBSD --- see /usr/ports/java/jdk
1.35    ! takayama  354:                         Linux   --- http://java.sun.com/products/jdk/1.2/ja
        !           355:                                     http://java.sun.com/j2se/1.3/ja
        !           356:
1.33      takayama  357:
1.17      takayama  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.34      takayama  380: OS:  FreeBSD 3.3, 3.4, 4.x (Intel CPU),
1.11      takayama  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.1       takayama  638:
1.6       takayama  639: */
1.1       takayama  640:
1.6       takayama  641: /*&jp
1.1       takayama  642:
1.8       takayama  643: [OpenXM 下のファイルの構成メモ]
1.3       maekawa   644: lib/asir には, asir のライブラリ, ox_asir 本体
                    645:
1.8       takayama  646: cd OpenXM/src/kxx ; make install-for-debug した場合,
1.3       maekawa   647: lib/sm1 は src/SSkan/Doc への symbolic link
                    648: であり, sm1 のライブラリファイルが格納されています.
                    649: lib/sm1/bin には, binaryfiles
1.1       takayama  650:     sm1, ox_sm1, ox,  ox_log, ox_sm1_*
1.3       maekawa   651: へのシンボリックリンクが格納されます.
1.8       takayama  652: このシンボリックリンクは src/kxx で make install-for-debug を実行することにより
1.3       maekawa   653: 作成されます.
1.1       takayama  654:
1.3       maekawa   655: sm1 が ox_asir を利用するのに必要なファイル.
1.1       takayama  656:    lib/asir/ox_asir,
                    657:    lib/sm1/bin/ox, lib/sm1/bin/ox_log  (src/kxx/ox, src/kxx/ox_log)
                    658:    lib/sm1/ox.sm1, lib/sm1/oxasir.sm1
                    659:
1.3       maekawa   660: asir が ox_sm1_forAsir を利用するのに必要なファイル:
1.1       takayama  661:    lib/asir/ox_launch
1.3       maekawa   662:    lib/sm1/bin/ox_sm1_forAsir (ox_sm1 へのリンク)
1.1       takayama  663:    lib/asir/xm
1.3       maekawa   664:    lib/sm1/ 以下の *.sm1 なるすべての ライブラリファイル.
1.1       takayama  665:      callsm1.sm1 callsm1b.sm1
1.3       maekawa   666:      (ox_sm1_forAsir の定義ファイル, src/kxx/oxserver00.c
                    667:       ox_sm1 が ox_sm1_forAsir という名前で呼ばれるとこれらのファイルをロード.)
1.1       takayama  668:
1.3       maekawa   669: asir が ox_sm1_gnuplot を利用するのに必要なファイル:
1.1       takayama  670:     lib/asir/ox_launch
1.3       maekawa   671:     lib/sm1/bin/ox_sm1_gnuplot (ox_sm1 へのリンク, ox_sm1_gnuplot は fork して
1.4       maekawa   672:                                 gnuplot4ox を実行します.)
1.1       takayama  673:     lib/asir/xm
                    674:     lib/sm1/callsm1.sm1, lib/sm1/gnuplot.sm1
1.3       maekawa   675:      (ox_sm1_gnuplot の定義ファイル, src/kxx/oxserver00.c
                    676:       ox_sm1 が ox_sm1_gnuplot という名前で呼ばれるとこれらのファイルをロード.)
1.4       maekawa   677:     bin/gnuplot4ox,  bin/gnuplot_x11  (gnuplot 本体, src/gnuplot*)
1.1       takayama  678:
                    679: ----------------------------------------
1.3       maekawa   680: [開発者用メモ]
1.1       takayama  681:
1.3       maekawa   682: << sm1, ox_sm1, ox, oxlog の debug >>
                    683: binary file は各 directory の make install により
                    684: OpenXM/bin にコピーされますが,
                    685: debug 用にいちいちコピーするのは面倒なので,
1.8       takayama  686: OpenXM/src/kan96xx で make install-for-debug
                    687: OpenXM/src/kxx で make install-for-debug
1.3       maekawa   688: を実行すると,
                    689: OpenXM/bin/sm1, ox, ox_sm1, oxlog より,
1.1       takayama  690: OpenXM/src/kan96xx/Kan/sm1
                    691: OpenXM/src/kxx/ox, OpenXM/src/kxx/ox_sm1, OpenXM/src/kxx/oxlog
1.3       maekawa   692: へのシンボリックリンクが作成されます.
1.1       takayama  693:
1.3       maekawa   694: [CVSコミッタ用メモ]
                    695: <<  OpenXM ディレクトリ配布版の作成方法 >>
1.1       takayama  696: rcvs export -rHEAD OpenXM
                    697: rcvs export -rHEAD OpenXM_contrib
                    698: rcvs export -rHEAD OpenXM_contrib2
1.21      takayama  699: cd OpenXM/src ; make generate-source-distribution
1.3       maekawa   700: して, OpenXM, OpenXM_contrib, OpenXM_contrib2 全体を tar+gzip.
1.7       takayama  701: */
                    702:
                    703: /*&C
                    704:
                    705: */
                    706: /*&jp
                    707:
                    708: ★ Solaris に関する注意.
                    709: Solaris ではまだ問題が山積してます.
                    710: Solaris での make の問題点については, OpenXM/doc/OpenXM-FAQ-jp.txt
                    711: を見てください.
1.8       takayama  712: Solaris でコンパイルするには, /usr/ccs/bin をサーチパスの最初へもっていって
                    713: おきます.
1.7       takayama  714:
                    715: */
1.8       takayama  716: /*&eg
                    717: ***** COMPILE ON SOLARIS
                    718:  There are a lot of troubles on Solaris for now.
                    719:  At least,
                    720:  /usr/ccs/bin must be at the top of the command search path to compile
                    721:  on Solaris.
                    722: */
1.31      takayama  723: /*&jp
                    724:
                    725: ★ Redhat Linux 6.1 上でのコンパイル
                    726: m4-1.4 と autoconf-2.13 が必要.
                    727: (あらかじめはいっている,  autoconf は 2.12 でありこれは
                    728:  gnuplot の make で不具合を生じます.)
1.8       takayama  729:
1.31      takayama  730: */
                    731: /*&eg
                    732: ***** COMPILE ON Redhat Linux 6.1
                    733: m4-1.4 and autoconf-2.13 are required.
                    734: (Preinstalled autoconf is version 2.12. It causes a trouble when
                    735:  you build gnuplot.)
                    736: */
1.7       takayama  737:
                    738: /*&C
                    739:
1.1       takayama  740: */

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