• R/O
  • HTTP
  • SSH
  • HTTPS

tamago-tsunagi: Commit

Tamago-tsunagiのGitリポジトリです。


Commit MetaInfo

Revision13919eea6f5aa5669dab130d1cd651de031fd3ea (tree)
Time2001-01-28 03:46:35
Authortomo <tomo>
Commitertomo

Log Message

This commit was manufactured by cvs2svn to create tag 'tamago-4_0_4'.

Change Summary

  • delete: Makefile
  • delete: README
  • delete: egg-dotemacs
  • delete: leim-list-egg.el
  • delete: make-dirs.el
  • delete: make-insdirs.el

Incremental Difference

--- a/Makefile
+++ /dev/null
@@ -1,100 +0,0 @@
1-# Makefile --- Makefile of EGG V4.0
2-
3-# Copyright (C) 1999, 2000 Free Software Foundation, Inc
4-# Author: NIIBE Yutaka <gniibe@chroot.org>
5-# TOMURA Satoru <tomura@etl.go.jp>
6-# Maintaner: Satoru Tomura <tomura@etl.go.jp>
7-
8-#---------------------------------------
9-# (1) make
10-# ;; compile *.el files
11-# (2) make install
12-# ;; install files into the emacs site-lisp directory
13-# ;; ex. /usr/local/share/emacs/site-lisp/egg
14-#------------------------------------------------
15-# Configuration parameters
16-#------------------------------------------------
17-# emacs you use
18-EMACS = /usr/local/bin/emacs
19-# Programs
20-INSTALL = /usr/sbin/install
21-CP = /bin/cp
22-MV = /bin/mv
23-RM = /bin/rm
24-MKDIR = /usr/bin/mkdir
25-#------------------------------------------------
26-
27-DEPS = -l ./docomp.el
28-BATCHFLAGS = -batch -q -no-site-file -no-init-file
29-
30-ETCS = Makefile docomp.el make-insdirs.el \
31- AUTHORS ChangeLog README TODO PROBLEMS
32-
33-ELS = eggrc leim-list.el
34-
35-SRCS = egg-util.el \
36- menudiag.el its.el egg-edep.el \
37- its/ascii.el \
38- its/bixing.el \
39- its/erpin.el \
40- its/hankata.el \
41- its/hira.el \
42- its/jeonkak.el \
43- its/pinyin.el \
44- its/hangul.el \
45- its/kata.el \
46- its/thai.el \
47- its/quanjiao.el \
48- its/zenkaku.el \
49- its/zhuyin.el \
50- its-keydef.el \
51- egg-mlh.el egg-cnv.el egg-com.el \
52- egg.el \
53- egg/cannarpc.el egg/canna.el \
54- egg/sj3rpc.el egg/sj3.el \
55- egg/wnnrpc.el egg/wnn.el
56-
57-ELCS = ${SRCS:.el=.elc}
58-
59-DIST = ${ETCS} ${SRCS} ${ELS}
60-
61-.SUFFIXES: .el .elc
62-
63-.el.elc:
64- ${EMACS} ${BATCHFLAGS} ${DEPS} -f batch-byte-compile $<
65-
66-all: ${ELCS} insdirs
67-
68-insdirs: ${EMACS}
69- @${EMACS} ${BATCHFLAGS} -l ./make-insdirs.el 2> /dev/null
70-
71-clean:
72- ${RM} -f ${ELCS} insdirs *~ */*~
73-
74-install: install-site
75-
76-install-site: all
77- @. ./insdirs; \
78- echo "Egg system will be installed in $${INSDIR}/egg...."; \
79- if [ -d $${INSDIR}/egg ]; then \
80- echo "Clean up the previsous installation...."; \
81- ${RM} -rf $${INSDIR}/egg; fi ; \
82- mkdir -p $${INSDIR}/egg; \
83- tar cf - ${SRCS} ${ELCS} ${ELS} | (cd $${INSDIR}/egg && tar xpBf -)
84-
85-uninstall-site:
86- @. ./insdirs; \
87- if [ -d $${INSDIR}/egg ]; then \
88- ${RM} -rf $${INSDIR}/egg; \
89- fi
90-
91-# DEPENDENCIES
92-egg/sj3rpc.elc: egg-com.elc egg/sj3.elc
93-egg/wnnrpc.elc: egg-com.elc egg/wnn.elc
94-
95-egg.elc its/ascii.elc its/erpin.elc its/hankata.elc \
96-its/hira.elc its/jeonkak.elc its/pinyin.elc \
97-its/hangul.elc its/kata.elc its/quanjiao.elc \
98-its/zenkaku.elc its/zhuyin.elc: its-keydef.elc
99-
100-
--- a/README
+++ /dev/null
@@ -1,13 +0,0 @@
1-
2- EGG Versio 4.0 --- Code name "Tamagotchy"
3-
4- NIIBE Yutaka <gniibe@chroot.org>
5-
6-We've started this project with the code of EGG V3.0 in the beginning.
7-However, we chose to rewrite whole of them, while referring the design
8-and interface of EGG V3.0.
9-
10-In original version of EGG (to V3.0), it seems for me that there's no
11-copyright notice. But it has been widely distributed on the Internet
12-under the licence of GPL:
13- <URL:ftp://etlport.etl.go.jp/pub/mule/mule-2.3.tar.gz>
--- a/egg-dotemacs
+++ /dev/null
@@ -1,16 +0,0 @@
1-;;; Emacs/Egg Configuration
2-
3-;; <Egg>
4-
5-(set-language-info "Japanese" 'input-method "japanese-egg-wnn")
6-
7-;;; Try M-x customize-gropu hira
8-
9-(set-language-info "Chinese-GB" 'input-method "chinese-gb-egg-wnn-py")
10-(set-language-info "Chinese-CNS" 'input-method "chinese-cns-egg-wnn-py")
11-(set-language-info "Korean" 'input-method "korean-egg-wnn")
12-
13-(require 'egg)
14-(require 'its/hira)
15-
16-;; </Egg>
--- a/leim-list-egg.el
+++ /dev/null
@@ -1,84 +0,0 @@
1-;;; leim-list-egg.el --- Egg setup for leim API
2-
3-;; Copyright (C) 1999, 2000 Free Software Foundation, Inc
4-
5-;; Author: NIIBE Yutaka <gniibe@chroot.org>
6-;; KATAYAMA Yoshio <kate@pfu.co.jp>
7-
8-;; Maintainer: TOMURA Satoru <tomura@etl.go.jp>
9-
10-;; Keywords: mule, multilingual, input method
11-
12-;; This file is part of EGG.
13-
14-;; EGG is free software; you can redistribute it and/or modify
15-;; it under the terms of the GNU General Public License as published by
16-;; the Free Software Foundation; either version 2, or (at your option)
17-;; any later version.
18-
19-;; EGG is distributed in the hope that it will be useful,
20-;; but WITHOUT ANY WARRANTY; without even the implied warranty of
21-;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
22-;; GNU General Public License for more details.
23-
24-;; You should have received a copy of the GNU General Public License
25-;; along with GNU Emacs; see the file COPYING. If not, write to the
26-;; Free Software Foundation, Inc., 59 Temple Place - Suite 330,
27-;; Boston, MA 02111-1307, USA.
28-
29-;;; Commentary:
30-
31-;;; Code:
32-
33-;;; leim-list-egg.el --- Egg setup for leim API
34-;;; CAUTION: Don't delete the above line.
35-
36-(autoload 'egg-activate-wnn "egg/wnn" "Activate Wnn backend of Tamagotchy." t)
37-(autoload 'egg-activate-sj3 "egg/sj3" "Activate SJ3 backend of Tamagotchy." t)
38-
39-(register-input-method
40- "japanese-egg-wnn" "Japanese" 'egg-activate-wnn
41- "あ.." "Romaji -> Hiragana -> Kanji&Kana"
42- 'its-select-hiragana)
43-
44-(register-input-method
45- "japanese-egg-sj3" "Japanese" 'egg-activate-sj3
46- "あ.." "Romaji -> Hiragana -> Kanji&Kana"
47- 'its-select-hiragana)
48-
49-(register-input-method
50- "chinese-gb-egg-wnn-py" "Chinese-GB" 'egg-activate-wnn
51- "$AF4(BG" "Pinyin -> Simplified Hanzi"
52- 'its-select-pinyin-cn)
53-
54-(register-input-method
55- "chinese-gb-egg-wnn-zy" "Chinese-GB" 'egg-activate-wnn
56- "$AW"(BG" "Zhunyin -> Simplified Hanzi"
57- 'its-select-zhuyin-cn)
58-
59-(register-input-method
60- "chinese-gb-egg-wnn-qm" "Chinese-GB" 'egg-activate-wnn
61- "$AG.(B" "QianMa Simplified Hanzi inputmethod"
62- 'its-select-qianma)
63-
64-(register-input-method
65- "chinese-gb-egg-wnn-wb" "Chinese-GB" 'egg-activate-wnn
66- "$ANe(B" "WuBi Simplified Hanzi inputmethod"
67- 'its-select-wubi)
68-
69-(register-input-method
70- "chinese-cns-egg-wnn-py" "Chinese-CNS" 'egg-activate-wnn
71- "$(GQ;(BC" "Pinyin -> Traditional Hanzi"
72- 'its-select-pinyin-tw)
73-
74-(register-input-method
75- "chinese-cns-egg-wnn-zy" "Chinese-CNS" 'egg-activate-wnn
76- "$(GNC(BC" "Zhunyin -> Traditional Hanzi"
77- 'its-select-zhuyin-tw)
78-
79-(register-input-method
80- "korean-egg-wnn" "Korean" 'egg-activate-wnn
81- "$(CGQ(B" "Hangul -> Hanja"
82- 'its-select-hangul)
83-
84-(autoload 'egg-mode "egg" "Toggle EGG mode." t)
--- a/make-dirs.el
+++ /dev/null
@@ -1,48 +0,0 @@
1-;;; make-emacs-conf.el ---
2-
3-;; Copyright (C) 2000 ElectroTechnical Laboratory
4-;; Copyright (C) 2000 TOMURA Satoru <tomura@etl.go.jp>
5-;; Licensed to Free Software Foundation, Inc.
6-
7-;; Author: TOMURA Satoru <tomura@etl.go.jp>
8-
9-;; Maintainer: TOMURA Satoru <tomura@etl.go.jp>
10-
11-;; Keywords: mule, multilingual, input method
12-
13-;; This file is part of EGG.
14-
15-;; EGG is free software; you can redistribute it and/or modify
16-;; it under the terms of the GNU General Public License as published by
17-;; the Free Software Foundation; either version 2, or (at your option)
18-;; any later version.
19-
20-;; EGG is distributed in the hope that it will be useful,
21-;; but WITHOUT ANY WARRANTY; without even the implied warranty of
22-;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
23-;; GNU General Public License for more details.
24-
25-;; You should have received a copy of the GNU General Public License
26-;; along with GNU Emacs; see the file COPYING. If not, write to the
27-;; Free Software Foundation, Inc., 59 Temple Place - Suite 330,
28-;; Boston, MA 02111-1307, USA.
29-
30-;;; Commentary:
31-
32-;;; Code:
33-
34-(defun make-emacs-configuration-file ()
35- (with-temp-buffer
36- (let* ((etc-dir data-directory)
37- (ver-dir (file-name-directory (substring etc-dir 0 -1)))
38- (emacs-dir (file-name-directory (substring ver-dir 0 -1))))
39- (insert
40- ;;; INSDIR=/usr/local/share/emacs/site-lisp
41- (format "INSDIR=%s/site-lisp\n"
42- (substring emacs-dir 0 -1))
43- ;;; VINSDIR=/usr/local/share/emacs/20.5/site-lisp
44- (format "VINSDIR=%s/site-lisp\n"
45- (substring ver-dir 0 -1)))
46- (write-file "dirs" nil))))
47-
48-(make-emacs-configuration-file)
--- a/make-insdirs.el
+++ /dev/null
@@ -1,50 +0,0 @@
1-;;; make-emacs-conf.el ---
2-
3-;; Copyright (C) 2000 ElectroTechnical Laboratory
4-;; Copyright (C) 2000 TOMURA Satoru <tomura@etl.go.jp>
5-;; Licensed to Free Software Foundation, Inc.
6-
7-;; Author: TOMURA Satoru <tomura@etl.go.jp>
8-
9-;; Maintainer: TOMURA Satoru <tomura@etl.go.jp>
10-
11-;; Keywords: mule, multilingual, input method
12-
13-;; This file is part of EGG.
14-
15-;; EGG is free software; you can redistribute it and/or modify
16-;; it under the terms of the GNU General Public License as published by
17-;; the Free Software Foundation; either version 2, or (at your option)
18-;; any later version.
19-
20-;; EGG is distributed in the hope that it will be useful,
21-;; but WITHOUT ANY WARRANTY; without even the implied warranty of
22-;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
23-;; GNU General Public License for more details.
24-
25-;; You should have received a copy of the GNU General Public License
26-;; along with GNU Emacs; see the file COPYING. If not, write to the
27-;; Free Software Foundation, Inc., 59 Temple Place - Suite 330,
28-;; Boston, MA 02111-1307, USA.
29-
30-;;; Commentary:
31-
32-;;; Code:
33-
34-(defun make-emacs-configuration-file ()
35- (with-temp-buffer
36- (let* ((emacs-etc-directory data-directory)
37- (this-version-directory (file-name-directory (directory-file-name emacs-etc-directory)))
38- (site-directory (file-name-directory (directory-file-name this-version-directory))))
39- (insert
40- ;;; INSDIR=/usr/local/share/emacs/site-lisp
41- (format "INSDIR=%s\n"
42- (expand-file-name "site-lisp" site-directory)
43- )
44- ;;; VINSDIR=/usr/local/share/emacs/20.5/site-lisp
45- (format "VINSDIR=%s\n"
46- (expand-file-name "site-lisp" this-version-directory)
47- ))
48- (write-file "insdirs" nil))))
49-
50-(make-emacs-configuration-file)
Show on old repository browser