IMC updates

* Add cleanups which were conflicting
* Update imc binaries
* Update command line tool for new fields


SVN revision: 28131
This commit is contained in:
Stafford Mitchell Horne 2007-01-27 05:52:17 +00:00
parent ae453dc42a
commit 691bda6ed7
8 changed files with 40 additions and 54 deletions

View File

@ -8,7 +8,7 @@ MAINTAINERCLEANFILES = Makefile.in aclocal.m4 config.guess \
bin_SCRIPTS = enlightenment-config bin_SCRIPTS = enlightenment-config
EXTRA_DIST = config.rpath README AUTHORS COPYING COPYING-PLAIN \ EXTRA_DIST = mkinstalldirs config.rpath config.rpath mkinstalldirs mkinstalldirs config.rpath mkinstalldirs config.rpath config.rpath mkinstalldirs config.rpath README AUTHORS COPYING COPYING-PLAIN \
enlightenment.spec.in enlightenment.spec \ enlightenment.spec.in enlightenment.spec \
debian/changelog \ debian/changelog \
debian/changelog.in \ debian/changelog.in \

View File

@ -6,11 +6,15 @@ rm -f aclocal.m4 ltmain.sh
touch README touch README
touch ABOUT-NLS touch ABOUT-NLS
echo "Running autopoint..." ; autopoint -f || exit 1 #echo "Running autopoint..." ; autopoint -f || exit 1
echo "Running aclocal..." ; aclocal $ACLOCAL_FLAGS -I m4 || exit 1 echo "Running aclocal..." ; aclocal $ACLOCAL_FLAGS -I m4 || exit 1
echo "Running autoconf..." ; autoconf || exit 1 echo "Running autoconf..." ; autoconf || exit 1
echo "Running autoheader..." ; autoheader || exit 1 echo "Running autoheader..." ; autoheader || exit 1
echo "Running libtoolize..." ; (libtoolize --copy --automake || glibtoolize --automake) || exit 1 echo "Running libtoolize..." ; (libtoolize --copy --automake || glibtoolize --automake) || exit 1
echo "Running gettextize..." ; gettextize -f --no-changelog
# hack - gettextize is interactive and demands input from a user. "screw it".
#sleep 20
#kill %1
echo "Running automake..." ; automake --add-missing --copy --gnu || exit 1 echo "Running automake..." ; automake --add-missing --copy --gnu || exit 1
if [ -z "$NOCONFIGURE" ]; then if [ -z "$NOCONFIGURE" ]; then

View File

@ -146,7 +146,7 @@ ALL_LINGUAS="bg de eo ja ru hu sl it fr"
AC_SUBST(ALL_LINGUAS) AC_SUBST(ALL_LINGUAS)
AM_GNU_GETTEXT([external]) AM_GNU_GETTEXT([external])
AM_GNU_GETTEXT_VERSION([0.12.1]) AM_GNU_GETTEXT_VERSION([0.14.6])
if test "x$LIBINTL" = "x"; then if test "x$LIBINTL" = "x"; then
LIBINTL="$INTLLIBS" LIBINTL="$INTLLIBS"
fi fi

Binary file not shown.

Binary file not shown.

View File

@ -18,11 +18,10 @@ main(int argc, char **argv)
E_Input_Method_Config *write_imc = NULL; E_Input_Method_Config *write_imc = NULL;
E_Input_Method_Config *read_imc = NULL; E_Input_Method_Config *read_imc = NULL;
int del_name = 0;
int del_exe = 0;
char *file = NULL; char *file = NULL;
char *set_name = NULL; char *set_name = NULL;
char *set_exe = NULL; char *set_exe = NULL;
char *set_setup = NULL;
char *set_gtk_im_module = NULL; char *set_gtk_im_module = NULL;
char *set_qt_im_module = NULL; char *set_qt_im_module = NULL;
char *set_xmodifiers = NULL; char *set_xmodifiers = NULL;
@ -45,6 +44,13 @@ main(int argc, char **argv)
valid_args++; valid_args++;
write_ops++; write_ops++;
} }
else if ((!strcmp(argv[i], "-set-setup")) && (i < (argc - 1)))
{
i++;
set_setup = argv[i];
valid_args++;
write_ops++;
}
else if ((!strcmp(argv[i], "-set-gtk-im-module")) && (i < (argc - 1))) else if ((!strcmp(argv[i], "-set-gtk-im-module")) && (i < (argc - 1)))
{ {
i++; i++;
@ -66,25 +72,6 @@ main(int argc, char **argv)
valid_args++; valid_args++;
write_ops++; write_ops++;
} }
else if ((!strcmp(argv[i], "-del-all")))
{
del_name = 1;
del_exe = 1;
valid_args++;
write_ops++;
}
else if ((!strcmp(argv[i], "-del-name")))
{
del_name = 1;
valid_args++;
write_ops++;
}
else if ((!strcmp(argv[i], "-del-exe")))
{
del_exe = 1;
valid_args++;
write_ops++;
}
else if ((!strcmp(argv[i], "-h")) || else if ((!strcmp(argv[i], "-h")) ||
(!strcmp(argv[i], "-help")) || (!strcmp(argv[i], "-help")) ||
(!strcmp(argv[i], "--h")) || (!strcmp(argv[i], "--h")) ||
@ -144,23 +131,16 @@ main(int argc, char **argv)
{ {
int write_ok; int write_ok;
write_imc = malloc(sizeof(E_Input_Method_Config)); write_imc = calloc(sizeof(E_Input_Method_Config), 1);
write_imc->version = E_INTL_INPUT_METHOD_CONFIG_VERSION; write_imc->version = E_INTL_INPUT_METHOD_CONFIG_VERSION;
if (read_imc == NULL) if (read_imc != NULL)
{
write_imc->e_im_name = NULL;
write_imc->gtk_im_module = NULL;
write_imc->qt_im_module = NULL;
write_imc->xmodifiers = NULL;
write_imc->e_im_exec = NULL;
}
else
{ {
write_imc->e_im_name = read_imc->e_im_name; write_imc->e_im_name = read_imc->e_im_name;
write_imc->gtk_im_module = read_imc->gtk_im_module; write_imc->gtk_im_module = read_imc->gtk_im_module;
write_imc->qt_im_module = read_imc->qt_im_module; write_imc->qt_im_module = read_imc->qt_im_module;
write_imc->xmodifiers = read_imc->xmodifiers; write_imc->xmodifiers = read_imc->xmodifiers;
write_imc->e_im_exec = read_imc->e_im_exec; write_imc->e_im_exec = read_imc->e_im_exec;
write_imc->e_im_setup_exec = read_imc->e_im_setup_exec;
} }
if (set_name != NULL) if (set_name != NULL)
@ -173,7 +153,9 @@ main(int argc, char **argv)
write_imc->xmodifiers = set_xmodifiers; write_imc->xmodifiers = set_xmodifiers;
if (set_exe != NULL) if (set_exe != NULL)
write_imc->e_im_exec = set_exe; write_imc->e_im_exec = set_exe;
if (set_setup != NULL)
write_imc->e_im_setup_exec = set_setup;
/* write imc to file */ /* write imc to file */
write_ok = e_intl_input_method_config_write (ef, write_imc); write_ok = e_intl_input_method_config_write (ef, write_imc);
@ -186,6 +168,7 @@ main(int argc, char **argv)
printf("Config Version:\t%d\n", read_imc->version); printf("Config Version:\t%d\n", read_imc->version);
printf("Config Name:\t%s\n", read_imc->e_im_name); printf("Config Name:\t%s\n", read_imc->e_im_name);
printf("Command Line:\t%s\n", read_imc->e_im_exec); printf("Command Line:\t%s\n", read_imc->e_im_exec);
printf("Setup Line:\t%s\n", read_imc->e_im_setup_exec);
printf("gtk_im_module:\t%s\n", read_imc->gtk_im_module); printf("gtk_im_module:\t%s\n", read_imc->gtk_im_module);
printf("qt_im_module:\t%s\n", read_imc->qt_im_module); printf("qt_im_module:\t%s\n", read_imc->qt_im_module);
printf("xmodifiers:\t%s\n", read_imc->xmodifiers); printf("xmodifiers:\t%s\n", read_imc->xmodifiers);
@ -206,11 +189,10 @@ _e_help(void)
printf("OPTIONS:\n" printf("OPTIONS:\n"
" -set-name NAME Set the application name\n" " -set-name NAME Set the application name\n"
" -set-exe EXE Set the application execute line\n" " -set-exe EXE Set the application execute line\n"
" -set-gtk-im-module Set the gtk_im_module env var\n" " -set-setup EXE Set the setup application execute line\n"
" -set-qt-im-module Set the qt_im_module env var\n" " -set-gtk-im-module Set the gtk_im_module env var\n"
" -set-xmodifiers Set the xmodifiers env var\n" " -set-qt-im-module Set the qt_im_module env var\n"
" -del-name Delete the application name\n" " -set-xmodifiers Set the xmodifiers env var\n"
" -del-exe Delete the application execute line\n" " -list List Contents of Input Method Config file\n"
" -list List Contents of Input Method Config file\n"
); );
} }

View File

@ -267,7 +267,7 @@ _e_imc_setup_cb(void *data, void *data2)
if (imc && imc->e_im_setup_exec) if (imc && imc->e_im_setup_exec)
{ {
Ecore_Exe *exe; Ecore_Exe *exe;
char *cmd; const char *cmd;
cmd = imc->e_im_setup_exec; cmd = imc->e_im_setup_exec;
@ -725,12 +725,12 @@ _e_imc_change_enqueue(E_Config_Dialog_Data *cfdata)
imc_update->version = E_INTL_INPUT_METHOD_CONFIG_VERSION; imc_update->version = E_INTL_INPUT_METHOD_CONFIG_VERSION;
/* TODO: need to only add if the string is not empty */ /* TODO: need to only add if the string is not empty */
imc_update->e_im_name = (char *) evas_stringshare_add(cfdata->imc.e_im_name); imc_update->e_im_name = evas_stringshare_add(cfdata->imc.e_im_name);
imc_update->e_im_exec = (char *) evas_stringshare_add(cfdata->imc.e_im_exec); imc_update->e_im_exec = evas_stringshare_add(cfdata->imc.e_im_exec);
imc_update->e_im_setup_exec = (char *) evas_stringshare_add(cfdata->imc.e_im_setup_exec); imc_update->e_im_setup_exec = evas_stringshare_add(cfdata->imc.e_im_setup_exec);
imc_update->gtk_im_module = (char *) evas_stringshare_add(cfdata->imc.gtk_im_module); imc_update->gtk_im_module = evas_stringshare_add(cfdata->imc.gtk_im_module);
imc_update->qt_im_module = (char *) evas_stringshare_add(cfdata->imc.qt_im_module); imc_update->qt_im_module = evas_stringshare_add(cfdata->imc.qt_im_module);
imc_update->xmodifiers = (char *) evas_stringshare_add(cfdata->imc.xmodifiers); imc_update->xmodifiers = evas_stringshare_add(cfdata->imc.xmodifiers);
/* look for changes to this file and remove them */ /* look for changes to this file and remove them */
imc_update_old = evas_hash_find(cfdata->imc_change_map, cfdata->imc_current); imc_update_old = evas_hash_find(cfdata->imc_change_map, cfdata->imc_current);

View File

@ -39,12 +39,12 @@ struct _E_Language_Pack
struct _E_Input_Method_Config struct _E_Input_Method_Config
{ {
int version; int version;
char *e_im_name; const char *e_im_name;
char *gtk_im_module; const char *gtk_im_module;
char *qt_im_module; const char *qt_im_module;
char *xmodifiers; const char *xmodifiers;
char *e_im_exec; const char *e_im_exec;
char *e_im_setup_exec; const char *e_im_setup_exec;
}; };
struct _E_Locale_Parts struct _E_Locale_Parts