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

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

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

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