XEmacs
入手場所
- ftp://ftp.xemacs.org/のミラー(RING Server)
- 21.4.x source: xemacs-21.4
- packages: packages
- Option libraries: http://www.xemacs.org/Download/optLibs.html
- gdbm: ftp://ftp.gnu.org/gnu/gdbm/のミラー(RING Server)
- TIFF: ftp://ftp.sgi.com/graphics/tiff/
- PNG: ftp://swrinde.nde.swri.edu/pub/png/src/
- Xpm: http://koala.ilog.fr/lehors/xpm.html
準備(Optional librariesのインストール)
gdbmのインストール
- 1.8.3の場合
- gtar xpfz gdbm-1.8.3.tar.gz
- cd gdbm-1.8.3
- ./configure --enable-static --enable-shared
- make
- make install (install-compatターゲットはお好みで)
compfaceのインストール
- gtar xpfz compface.tar.gz
- cd compface
- make
- make install
JPEGのインストール
- gtar xpfz jpegsrc.v6b.tar.gz
- cd jpeg-6b
- ./configure --enable-static --enable-shared
- make
- make install
TIFFのインストール
- gtar xpfz tiff-v3.4beta037.tar.gz
- cd tiff-v3.4beta037
- ./configure (Intel Architecture && Solaris 9の場合i386-pc-solaris2.9を指定する。もちSolaris 8の場合はi386-pc-solaris2.8。)
- HTML documentsの置き場を/usr/local/doc/tiffに変更する
- make
- make install
PNGのインストール
- bunzip2 < libpng-1.2.5.tar.bz2 | tar xpf -
- cd libpng-1.2.5
- scripts/makefile.solarisのZLIB関係のpathを修正(システムのを使う)
- ZLIBLIB=/usr/lib
- ZLIBINC=/usr/include
- make -f scripts/makefile.solaris
- make -f scripts/makefile.solaris install
Xpmのインストール(XFree86のはつかえぢ)
- gtar xpfz xpm-3.4k.tar.gz
- cd xpm-3.4k
- gmake -f Makefile.noX CC=gcc
- mkdir -m 755 /usr/local/include/X11
- cp lib/xpm.h /usr/local/include/X11
- chmod 644 /usr/local/include/X11/xpm.h
- cp lib/libXpm.a /usr/local/lib
- chmod 644 /usr/local/lib/libXpm.a
-
インストール
- 21.4.14の場合
- bunzip2 < xemacs-21.4.14.tar.bz2 | tar xpf -
- cd xemacs-21.4.14
- gpatch -p1 < xemacs-21.4.8-gcc-3.1.patch (Inetel Architecture with gcc-3.xの場合)
- ./configure --with-mule --with-xfs --with-xpm --with-xim=no --site-includes="/usr/lib/locale/ja/wnn/demo/include" --site-libraries="/usr/lib/locale/ja/wnn/demo/lib" --site-runtime-libraries="/usr/dt/lib /usr/openwin/lib /usr/lib /usr/ccs/lib /usr/local/lib" --x-includes="/usr/openwin/include" --x-libraries="/usr/openwin/lib" --with-sound=no
- gmake
- gmake install
- cd /usr/local/lib/xemacs-21.4.14
- bunzip2 < xemacs-sumo-2003-08-31.tar.bz2 | tar xpf -
- bunzip2 < xemacs-mule-sumo-2003-08-31.tar.bz2 | tar xpf -
- rm -rf xemacs-packages/lisp/apel
設定
- ~/.xemacs/init.elに最低限、以下の設定をしておくと、はっぴーかも:-) ただし、かな漢は、あっしの趣味でWnn6ね!!
- ;; Default language
- (set-language-environment "Japanese")
- ;; Kana-Kanji translation method
- (setq jserver-list '("localhost"))
- (set-input-method "japanese-egg-wnn")
- ;; Font
- (if (eq (console-type) 'x)
- (set-face-font
- 'default
- '("-*-fixed-medium-r-*--16-*-jisx0201.1976-*"
- "-*-fixed-medium-r-*--16-*-jisx0208.1983-*"
- "-*-fixed-medium-r-*--16-*-jisx0212*-*")
- 'global '(mule-fonts) 'prepend))
参考
http://www.xemacs.org/Install/
Copyright (C) 2002-2003, のらねこひらまつ, All rights reserved.