From 7da82144c06ed8cecccb51b85fa422690f4a6321 Mon Sep 17 00:00:00 2001 From: stffrdhrn Date: Sun, 23 Oct 2005 07:17:59 +0000 Subject: [PATCH] - Add some default input method configurations use 'enlightenment_imc' to look at and edit these files - Change the input method path, intl means something else SVN revision: 17789 --- configure.in | 1 + data/Makefile.am | 2 +- data/input_methods/Makefile.am | 7 +++++++ data/input_methods/scim.imc | Bin 0 -> 210 bytes data/input_methods/uim.imc | Bin 0 -> 209 bytes src/bin/e_main.c | 7 ++++--- 6 files changed, 13 insertions(+), 4 deletions(-) create mode 100644 data/input_methods/Makefile.am create mode 100644 data/input_methods/scim.imc create mode 100644 data/input_methods/uim.imc diff --git a/configure.in b/configure.in index 344da5eaa..f0c3b848b 100644 --- a/configure.in +++ b/configure.in @@ -298,6 +298,7 @@ data/fonts/Makefile data/images/Makefile data/init/Makefile data/init/images/Makefile +data/input_methods/Makefile data/themes/Makefile data/themes/images/Makefile data/other/Makefile diff --git a/data/Makefile.am b/data/Makefile.am index 8c8db8405..6b1e13757 100644 --- a/data/Makefile.am +++ b/data/Makefile.am @@ -1,3 +1,3 @@ MAINTAINERCLEANFILES = Makefile.in -SUBDIRS = fonts images init themes other xsession +SUBDIRS = fonts images init themes other xsession input_methods diff --git a/data/input_methods/Makefile.am b/data/input_methods/Makefile.am new file mode 100644 index 000000000..153b2d54d --- /dev/null +++ b/data/input_methods/Makefile.am @@ -0,0 +1,7 @@ +MAINTAINERCLEANFILES = Makefile.in +filesdir = $(datadir)/enlightenment/data/input_methods +files_DATA = \ +scim.imc \ +uim.imc + +EXTRA_DIST = $(files_DATA) diff --git a/data/input_methods/scim.imc b/data/input_methods/scim.imc new file mode 100644 index 0000000000000000000000000000000000000000..cca6b8fc356e7902749b195f9eafa14dd9824af9 GIT binary patch literal 210 zcmb1p{+|H|7=c(Eh?PMcAXpE@%$d2#&K`N*%YppNyn@n__}tWzjQo`NgEVZaOGd~Y(4oHk2D3%(ZnH!&%n48K_oSc~pRw@h>PA|y@N#y3Il;$8w2?3=F mOR&j^0A(tG$}`h4fwnL>WaioiJA3+q4TRg1T9KLzu?GN;R5+{v literal 0 HcmV?d00001 diff --git a/data/input_methods/uim.imc b/data/input_methods/uim.imc new file mode 100644 index 0000000000000000000000000000000000000000..aaf1d55481e7efe4c1894fbd8070d72658179f5d GIT binary patch literal 209 zcmb1p{+|H|7=c(Eh?PMcAXo>*%$d2#&K`N*%YgjMyn@n__}tWzjQo`NgEVZaOGd~Y(4oHj-D3%(ZnH!&%n48K_nwbk$DFhTvFUbap=jNxB<{)GQfii_9 lSR{mj5*0wjnQ56oD;OLyb8V4L1KW{Wk(vy$L$?BG4**NKIKBV? literal 0 HcmV?d00001 diff --git a/src/bin/e_main.c b/src/bin/e_main.c index 15887bd5f..e2f528c8c 100644 --- a/src/bin/e_main.c +++ b/src/bin/e_main.c @@ -681,7 +681,8 @@ _e_main_dirs_init(void) "%s/.e/e/applications/trash", "%s/.e/e/modules", "%s/.e/e/config", - "%s/.e/e/locale" + "%s/.e/e/locale", + "%s/.e/e/input_methods" }; int i; @@ -921,8 +922,8 @@ _e_main_path_init(void) e_error_message_show("Cannot allocate path for path_input_methods\n"); return 0; } - e_path_default_path_append(path_input_methods, "~/.e/e/intl"); - snprintf(buf, sizeof(buf), "%s/enlightenment/intl", e_prefix_lib_get()); + e_path_default_path_append(path_input_methods, "~/.e/e/input_methods"); + snprintf(buf, sizeof(buf), "%s/data/input_methods", e_prefix_data_get()); e_path_default_path_append(path_input_methods, buf); e_path_user_path_set(path_input_methods, &(e_config->path_append_input_methods));