-*- mode: text; left-margin: 2; fill-column: 70; -*-

English version.

* Disclaimer
  
  This program is in very early developing stage. Please use at your
  own risk.
  
* Requirements

  Liece works under following environment at least.
  
  - Emacs 20.4
  - XEmacs 21.2
  
  This package uses following external libraries.
  
  APEL (stands for - "A Portable Emacs Library")
       ftp://ftp.etl.go.jp/pub/mule/apel/
  
  If you does not have installed copy of above, please try to specify 
  `--enable-apel' option at configure time.
  (After configuration, Liece will use local copy of APEL.)

* Quick installation

  (Install APEL, then)
  % ./configure
  % make
  % su
  Password: ultrasecret
  # make install
  
  If you are not able to become super-user, you may specify local
  directory to install.
  
  % ./configure --prefix=~/ --with-lispdir=~/elisp

* Configuration and running
  
** Setting up your ~/.emacs   
  
  If you are using Emacs or Mule, please add directory of APEL and
  Liece to load-path.  If you install by default setting you can write
  subdirs.el for example:
  
  ex:
  (normal-top-level-add-to-load-path '("apel" "liece"))

  If you are using Emacs 20.3 or XEmacs, prepare `subdirs.el' with
  following contents, Emacs will find and append each substantial
  directory to `load-path' automagically.

  ex:
  (normal-top-level-add-subdirs-to-load-path)

  If you are using Emacs 19 or earlier version of Emacsen, 
  you have to write more complicated path-setting in your `~/.emacs'.
  
  ex: 
  (setq load-path 
        (append 
         (list "/usr/local/lib/mule/site-lisp/apel"
	       "/usr/local/lib/mule/site-lisp/liece")
         load-path))
  
  For more details, please read `README' file come along with APEL.

  If you have never been using liece and/or its variants, 
  add an autoload setting into your `~/.emacs'.

  ex:
  (autoload 'liece "liece" nil t)

** Setting up your ~/.liece
  
  If you have never run Liece, and quite unsure to configure startup
  files in Emacs Lisp, please copy `sample.dot.liece' file in `doc'
  directory to `~/.liece'.

  Please read ducuments under `doc' directory.
  (`README-styles' to configure window splitting)
  
* Optional packages

  Following packages are optional. If install script of this package
  found them, it would use various functionality provided in them.
  
  custom
	http://www.dina.kvl.dk/~abraham/custom/

  X-Face utility
	ftp://ftp.jpl.org/pub/elisp/

  bitmap-mule
	ftp://ftp.jaist.ac.jp/pub/GNU/elisp/bitmap-mule/ (for GNU Emacs only)
  
------------------------------------------------------------------------  
Japanese version.

* $BI,MW$J$b$N(B
  
  Liece $B$O>/$/$H$b0J2<$N4D6-$GF0:n$7$^$9!#(B
  
  - Emacs 20.4
  - XEmacs 21.2
  
  $B$3$N%Q%C%1!<%8$O0J2<$N30It%i%$%V%i%j$r;HMQ$7$F$$$^$9!#(B
  
  APEL (stands for - "A Portable Emacs Library")
       ftp://ftp.etl.go.jp/pub/mule/apel/

  $B$b$7>e5-%i%$%V%i%j$,%$%s%9%H!<%k$5$l$F$$$J$$>l9g$K$O!"(B
  configure $B;~$K(B `--enable-apel' $B%*%W%7%g%s$r;XDj$9$k;v$G!"(BLiece$B$H6&$K(B
  $BG[I[$5$l$?(B APEL $B$,;HMQ$5$l$^$9!#(B
  
* $BB(@J%$%s%9%H!<%k(B
  
  (APEL $B$r%$%s%9%H!<%k$7$?8e!"(B)
  % ./configure
  % make
  % su
  Password: ultrasecret
  # make install

  $B$^$?!"<j6a$J%G%#%l%/%H%j$K;n83E*$K%$%s%9%H!<%k$9$k$K$O!"(B
  $B0J2<$N$h$&$K(B configure $B$N(B option $B$r;XDj$9$k$HNI$$$G$7$g$&!#(B
  
  % ./configure --prefix=~/ --with-lispdir=~/elisp

  XEmacs $B$N%Q%C%1!<%8$H$7$F%$%s%9%H!<%k$9$k>l9g$K$O!"0J2<$N$h$&$K;XDj(B
  $B$7$F2<$5$$!#(B
  
  % ./configure --enable-package --with-emacs=xemacs
  ( --with-packagedir=/usr/local/lib/xemacs/site-packages )
  
* $B@_Dj$HF0:n(B

** ~/.emacs $B$N@_Dj(B
  
  $B$b$7!"(BEmacs $B$b$7$/$O(B Mule $B$r$*;H$$$J$i!"(BAPEL $B5Z$S(B Liece $B$r(B
  install $B$7$?>l=j$r(B subdirs.el $B$K0J2<$N$h$&$K;XDj$7$F2<$5$$!#(B

  $BNc(B:
  (normal-top-level-add-to-load-path '("apel" "liece"))
  
  $B$b$7!"(BEmacs 20.3 $B0J9_$b$7$/$O(B XEmacs $B$r$*;H$$$J$i!"(B
  
  $BNc(B:
  (normal-top-level-add-subdirs-to-load-path)
  
  $B$@$1$G(B OK $B$G$9!#(B
  
  $B$b$7!"(BEmacs 19 $B0JA0$N%P!<%8%g%s$N(B Emacs $B$K$F(B Liece $B$r;HMQ$9$k>l9g$K$O!"(B
  $B$h$jD>@\E*$J%Q%9$N@_Dj$,I,MW$K$J$j$^$9!#(B
  
  $BNc(B: 
  (setq load-path 
        (append 
         (list "/usr/local/lib/mule/site-lisp/apel"
	       "/usr/local/lib/mule/site-lisp/liece")
         load-path))

  $B>\$7$/$O(B APEL $B$N(B README $B$r;2>H$7$F2<$5$$!#(B
  
  $B4{$K(B liece ($B$H$=$NJ,GI(B)$B$r;HMQ$7$F$$$?>l9g$OI,MW$"$j$^$;$s$,!"(B
  $B$b$7=i$a$F?($l$k>l9g$K$O!"(B

  $BNc(B:
  (autoload 'liece "liece" nil t)
  
  $B$N0l9T$r2C$($^$7$g$&!#(B
  ($B$3$l$O!"(BXEmacs $B$N(B package $B$H$7$F%$%s%9%H!<%k$7$?>l9g$K$OITMW$G$9!#(B)
  
** ~/.liece $B$N@_Dj(B
  
  $B$b$7=i$a$F(B Liece $B$rF0:n$5$;$k>l9g!"@_Dj%U%!%$%k$r(B Emacs Lisp $B$G=q$/(B
  $B;v$K47$l$F$$$J$$$N$G$"$l$P!"(B`doc' $B%G%#%l%/%H%j$K$"$k(B
  `sample.dot.liece' $B%U%!%$%k$r(B `~/.liece' $B$K%3%T!<$7!"JT=8$7$F$*;H$$(B
  $B2<$5$$!#(B

  $B$3$l$^$G$N:n6H$,@5>o$K9T$o$l$F$$$l$P!"(B`sample.dot.liece' $BFb$N%Q%9@_(B
  $BDj2U=j$OE,@Z$JCM$K@_Dj$5$l$F$$$kH&$G$9!#(B
  
  `doc' $B%G%#%l%/%H%j0J2<$NJ8=q$rNI$/FI$s$G2<$5$$!#(B
  ($BFC$K(B`README-styles.ja'$B$K$O(B window $BJ,3d$K$D$$$F$N=EMW$J>pJs$,=q$+$l(B
  $B$F$$$^$9!#(B)
  
* $BDI2C%Q%C%1!<%8(B
  
  $B0J2<$N%Q%C%1!<%8$NF3F~$O%*%W%7%g%s$G$9!#$b$7(B Liece $B$N%$%s%9%H!<%k%9(B
  $B%/%j%W%H$,$=$l$i$rH/8+$7$?>l9g!"$=$l$i$GDs6!$5$l$F$$$kMM!9$J5!G=$r;H(B
  $BMQ$9$k$h$&$K$J$j$^$9!#(B
  
  custom
	http://www.dina.kvl.dk/~abraham/custom/

  X-Face utility
	ftp://ftp.jpl.org/pub/elisp/

  bitmap-mule
	ftp://ftp.jaist.ac.jp/pub/GNU/elisp/bitmap-mule/ (for GNU
  	Emacs only)

--  
Daiki Ueno (ueno@ueda.info.waseda.ac.jp)
