~ubuntu-branches/ubuntu/maverick/uim/maverick

« back to all changes in this revision

Viewing changes to scm/Makefile.am

  • Committer: Bazaar Package Importer
  • Author(s): Masahito Omote
  • Date: 2008-05-18 22:18:10 UTC
  • mfrom: (1.1.8 upstream)
  • mto: This revision was merged to the branch mainline in revision 5.
  • Revision ID: james.westby@ubuntu.com-20080518221810-4d2rd0ca18xnu8kc
Tags: 1:1.5.1-1
* New upstream release
* uim-qt3: Add uim inputcontext plugin for Qt3. And due to uim-*-qt are
  not supported in Qt4 for now officially, uim-*-qt are contained in
  this package.
* uim-qt: Depends uim-qt3 because of described above.
* libuim6: New package for syncing with upstream upgrade soversion.
* 05_qmake_bug_workaround.dpatch: patch for the workaround that qmake does
  not add link option against other libraries(e.g. -lX11) by default.

Show diffs side-by-side

added added

removed removed

Lines of Context:
7
7
SCM_FILES = plugin.scm im.scm im-custom.scm lazy-load.scm init.scm \
8
8
 im-switcher.scm \
9
9
 default.scm \
10
 
 util.scm key.scm ustr.scm action.scm load-action.scm i18n.scm \
11
 
 uim-sh.scm uim-db.scm custom.scm custom-rt.scm \
 
10
 util.scm deprecated-util.scm ichar.scm ustr.scm i18n.scm iso-639-1.scm \
 
11
 key.scm action.scm load-action.scm \
 
12
 uim-sh.scm editline.scm custom.scm custom-rt.scm \
12
13
 direct.scm \
13
14
 rk.scm \
14
15
 generic.scm generic-custom.scm generic-key-custom.scm \
15
16
 pyload.scm py.scm pyunihan.scm pinyin-big5.scm \
16
17
 japanese.scm japanese-azik.scm japanese-kana.scm \
17
18
 anthy.scm anthy-custom.scm anthy-key-custom.scm \
 
19
 anthy-utf8.scm anthy-utf8-custom.scm \
18
20
 canna.scm canna-custom.scm canna-key-custom.scm \
 
21
 wnn.scm wnn-custom.scm wnn-key-custom.scm \
 
22
 sj3.scm sj3-custom.scm sj3-key-custom.scm \
19
23
 prime.scm prime-custom.scm prime-key-custom.scm \
20
24
 skk.scm skk-editor.scm skk-custom.scm skk-key-custom.scm skk-dialog.scm \
21
25
 mana.scm mana-custom.scm mana-key-custom.scm \
22
26
 tcode.scm trycode.scm \
23
27
 tutcode.scm tutcode-key-custom.scm \
 
28
 tutcode-custom.scm tutcode-bushudic.scm tutcode-rule.scm \
24
29
 hangul.scm hangul2.scm hangul3.scm romaja.scm \
25
30
 byeoru.scm byeoru-dic.scm byeoru-symbols.scm \
26
31
 byeoru-custom.scm byeoru-key-custom.scm \
27
32
 viqr.scm \
28
33
 ipa-x-sampa.scm \
29
34
 latin.scm \
 
35
 elatin.scm elatin-rules.scm elatin-custom.scm \
 
36
 look.scm look-custom.scm \
30
37
 m17nlib.scm \
31
 
 spellcheck.scm spellcheck-custom.scm \
32
38
 zaurus.scm \
33
39
 scim.scm \
34
40
 uim-module-manager.scm
39
45
if ANTHY
40
46
  module_names += "anthy"
41
47
endif
 
48
if ANTHY_UTF8
 
49
  module_names += "anthy-utf8"
 
50
endif
42
51
if CANNA
43
52
  module_names += "canna"
44
53
endif
 
54
if WNN
 
55
  module_names += "wnn"
 
56
endif
 
57
if SJ3
 
58
  module_names += "sj3"
 
59
endif
45
60
if MANA
46
61
  module_names += "mana"
47
62
endif
51
66
if SKK
52
67
  module_names += "skk"
53
68
endif
54
 
module_names += "tcode" "trycode" "tutcode" "byeoru" "latin"
 
69
module_names += "tcode" "trycode" "tutcode" "byeoru" "latin" "elatin"
55
70
if M17NLIB
56
71
  module_names += "m17nlib"
57
72
endif
58
73
# less preferable IMs
59
 
module_names += "pyload" "hangul" "viqr" "ipa-x-sampa"
 
74
module_names += "pyload" "hangul" "viqr" "ipa-x-sampa"  "look"
60
75
if SCIM
61
76
  module_names += "scim"
62
77
endif
63
78
 
64
79
UIM_MODULE_MANAGER = $(top_builddir)/uim/uim-module-manager
65
80
UIM_MODULE_MANAGER_ENV = \
 
81
        LIBUIM_SYSTEM_SCM_FILES=$(abs_top_srcdir)/sigscheme/lib \
66
82
        LIBUIM_SCM_FILES=$(abs_srcdir) \
67
83
        LIBUIM_PLUGIN_LIB_DIR=$(abs_top_builddir)/uim/.libs
68
84