Emacs/cvs
以下の話は Emacs-22.1 が出る
以前の話なので、少し古くなっています。
その他:
第78回 Carbon Emacsは現在進行形
MacOS X の上での Carbon 版の Emacs を作るには、
GNU
Emacs project
の
CVS 保管庫
から取得して make bootstrap すれば良い。
- source forge by Andrew Choi
-
http://sourceforge.net/projects/mac-emacs/
- Emacs-21 for MacOS (New site by Andrew Choi)
-
http://members.shaw.ca/akochoi-emacs/
- Emacs21 on Mac入門から中毒まで
-
http://sakito.s2.xrea.com/detail/emacs/emacs21.html
それには、
↑の
Andrew Choi の頁
に書いてある通りに作業をする。まず、
アプリケーション → ユーティリティ → ターミナル
を開けて、その中で作業をする。
(以下の作業では、
10.2 Developer Tools (右図), (または 10.3 Xcode Tools)
を入れてあることが前提)
texinfo
はじめに texinfo を入れておく (10.3 ではこの作業は不要)
curl -O ftp://ftp.ring.gr.jp/pub/GNU/texinfo/texinfo-4.6.tar.gz
tar zxf texinfo-4.6.tar.gz
cd texinfo-4.6
./configure
make
sudo make install
cd ..
cvs co
以下、たかのさんに教えていただいた情報
1. 以前の cvs co
cvs -d:pserver:anoncvs@subversions.gnu.org:/cvsroot/emacs login
cvs -z3 -d :pserver:anoncvs@subversions.gnu.org:/cvsroot/emacs co emacs
2. ちょっと前の cvs co
setenv CVS_RSH "ssh"
cvs -d :ext:anoncvs@subversions.gnu.org:/cvs-latest/emacs co emacs
3. 今の cvs co (2004/02)
CVS_RSH=ssh
cvs -z3 -d :ext:anoncvs@savannah.gnu.org:/cvsroot/emacs co emacs
|