• R/O
  • HTTP
  • SSH
  • HTTPS

Commit

Tags
No Tags

Frequently used words (click to add to your profile)

javac++androidlinuxc#windowsobjective-ccocoa誰得qtpythonphprubygameguibathyscaphec計画中(planning stage)翻訳omegatframeworktwitterdomtestvb.netdirectxゲームエンジンbtronarduinopreviewer

A multilingual input method framework


Commit MetaInfo

Revisioncd88460c928d7c4f24fc58070cba132022b26853 (tree)
Time2006-12-27 05:27:44
Authoryamaken <yamaken@ff9a...>
Commiteryamaken

Log Message

* configure.ac

- (ac_configure_args): Support make-dist.sh

* Makefile.am

- (EXTRA_DIST): Add make-dist.sh

* make-dist.sh

- New file

* scm/zaurus.scm

- (zaurus-cancel-key?): Fix SIOD dependency

* RELNOTE

- Update

Change Summary

Incremental Difference

--- a/Makefile.am
+++ b/Makefile.am
@@ -3,7 +3,7 @@ SUBDIRS = m4 doc replace sigscheme uim scm gtk qt xim helper po test fep emacs \
33 examples pixmaps
44 EXTRA_DIST = RELNOTE uim.spec.in \
55 intltool-extract.in intltool-merge.in intltool-update.in \
6- uim.pc.in ChangeLog.old uim.desktop autogen.sh
6+ uim.pc.in ChangeLog.old uim.desktop autogen.sh make-dist.sh
77
88 DISTCLEANFILES = uim.pc intltool-extract intltool-merge intltool-update po/.intltool-merge-cache
99
--- a/RELNOTE
+++ b/RELNOTE
@@ -1,10 +1,20 @@
1-uim 1.3.0 Release Note
1+uim 1.4.0 Release Note
22 ======================
33
44 About This Release
55 ------------------
66
7-This distribution of uim 1.3.0 is latest stable release of uim.
7+This distribution of uim 1.4.0 is latest stable release of uim.
8+
9+FIXME
10+
11+ Release for internal improvement. No user-visible changes other
12+ than resource consumption reduction. This release plan will not be
13+ deferred anymore.
14+
15+ The non-standard-conformant Scheme interpreter of libuim will be
16+ replaced with newly developed SigScheme to make a room for next
17+ leap.
818
919 Please report us if you find a problem.
1020
@@ -15,15 +25,7 @@ Bug tracking system: http://bugs.freedesktop.org/
1525 What's New
1626 ----------
1727
18- - Text acquisition and focus-related APIs
19-
20- - Dead keys support for the latin IM
21-
22- - Experimental Kana keyboard support
23-
24- - Flash Player 9 plugin workaround for uim-xim
25-
26- - New Try-Code Japanese IM
28+FIXME
2729
2830 See NEWS for the fully detailed changes.
2931
@@ -31,28 +33,12 @@ See NEWS for the fully detailed changes.
3133 Notes for Packagers and System Integrators
3234 ------------------------------------------
3335
34- - The maintainer mode of configure script is introduced. If your
35- package prefer your own PNG icon generation with rsvg, Add
36- --enable-maintainer-mode option to configure
37-
38- - anthy.png, canna.png and prime.png are replaced with generated
39- file. Be careful to maintain install procedure
36+FIXME
4037
4138
4239 Roadmap
4340 -------
4441
45- - uim 1.4.0
46-
47- Release for internal improvement. No user-visible changes other
48- than resource consumption reduction. This release plan will not be
49- deferred anymore.
50-
51- The non-standard-conformant Scheme interpreter of libuim will be
52- replaced with newly developed SigScheme to make a room for next
53- leap.
54-
55-
5642 - uim 1.5.0
5743
5844 Release for internal simplification. No user-visible changes.
--- a/configure.ac
+++ b/configure.ac
@@ -1000,7 +1000,8 @@ AC_SUBST(abs_top_srcdir)
10001000 AC_SUBST(abs_top_builddir)
10011001
10021002 # configure sigscheme/ subdir
1003-ac_configure_args="$ac_configure_args --enable-conf=uim --disable-libsscm --disable-shell"
1003+# To allow overridings, $ac_configure_args is placed at end.
1004+ac_configure_args="--enable-conf=uim --disable-libsscm --disable-shell $ac_configure_args"
10041005 AC_CONFIG_SUBDIRS([sigscheme])
10051006
10061007 AC_CONFIG_FILES([Makefile
--- /dev/null
+++ b/make-dist.sh
@@ -0,0 +1,18 @@
1+#!/bin/sh
2+
3+MAKE=make
4+
5+UIM_REPOSITORY="http://anonsvn.freedesktop.org/svn/uim"
6+SSCM_REPOSITORY="${UIM_REPOSITORY}/sigscheme-trunk"
7+TAGS_REPOSITORY="${UIM_REPOSITORY}/tags"
8+#SSCM_URL="${TAGS_REPOSITORY}/sigscheme-0.7.2"
9+SSCM_URL="${UIM_REPOSITORY}/sigscheme-trunk"
10+LIBGCROOTS_URL="${TAGS_REPOSITORY}/libgcroots-0.1.2"
11+
12+svn export $SSCM_URL sigscheme
13+svn export $LIBGCROOTS_URL sigscheme/libgcroots
14+(cd sigscheme/libgcroots && ./autogen.sh) \
15+ && (cd sigscheme && ./autogen.sh) \
16+ && ./autogen.sh
17+./configure --enable-maintainer-mode --enable-conf=full
18+$MAKE distcheck sum
--- a/scm/zaurus.scm
+++ b/scm/zaurus.scm
@@ -180,7 +180,7 @@
180180 (lambda (key key-state)
181181 (or
182182 (and
183- (not (= key 'escape))
183+ (not (eq? key 'escape))
184184 (zaurus-orig-generic-cancel-key? key key-state))
185185 (zaurus-shift-select-key? key key-state))))
186186