iok-2.1.3/0000775000076400007640000000000011776460266007331 500000000000000iok-2.1.3/depcomp0000755000076400007640000004755611776460025010636 00000000000000#! /bin/sh # depcomp - compile a program generating dependencies as side-effects scriptversion=2011-12-04.11; # UTC # Copyright (C) 1999, 2000, 2003, 2004, 2005, 2006, 2007, 2009, 2010, # 2011 Free Software Foundation, Inc. # This program is free software; you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by # the Free Software Foundation; either version 2, or (at your option) # any later version. # This program is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU General Public License for more details. # You should have received a copy of the GNU General Public License # along with this program. If not, see . # As a special exception to the GNU General Public License, if you # distribute this file as part of a program that contains a # configuration script generated by Autoconf, you may include it under # the same distribution terms that you use for the rest of that program. # Originally written by Alexandre Oliva . case $1 in '') echo "$0: No command. Try \`$0 --help' for more information." 1>&2 exit 1; ;; -h | --h*) cat <<\EOF Usage: depcomp [--help] [--version] PROGRAM [ARGS] Run PROGRAMS ARGS to compile a file, generating dependencies as side-effects. Environment variables: depmode Dependency tracking mode. source Source file read by `PROGRAMS ARGS'. object Object file output by `PROGRAMS ARGS'. DEPDIR directory where to store dependencies. depfile Dependency file to output. tmpdepfile Temporary file to use when outputting dependencies. libtool Whether libtool is used (yes/no). Report bugs to . EOF exit $? ;; -v | --v*) echo "depcomp $scriptversion" exit $? ;; esac if test -z "$depmode" || test -z "$source" || test -z "$object"; then echo "depcomp: Variables source, object and depmode must be set" 1>&2 exit 1 fi # Dependencies for sub/bar.o or sub/bar.obj go into sub/.deps/bar.Po. depfile=${depfile-`echo "$object" | sed 's|[^\\/]*$|'${DEPDIR-.deps}'/&|;s|\.\([^.]*\)$|.P\1|;s|Pobj$|Po|'`} tmpdepfile=${tmpdepfile-`echo "$depfile" | sed 's/\.\([^.]*\)$/.T\1/'`} rm -f "$tmpdepfile" # Some modes work just like other modes, but use different flags. We # parameterize here, but still list the modes in the big case below, # to make depend.m4 easier to write. Note that we *cannot* use a case # here, because this file can only contain one case statement. if test "$depmode" = hp; then # HP compiler uses -M and no extra arg. gccflag=-M depmode=gcc fi if test "$depmode" = dashXmstdout; then # This is just like dashmstdout with a different argument. dashmflag=-xM depmode=dashmstdout fi cygpath_u="cygpath -u -f -" if test "$depmode" = msvcmsys; then # This is just like msvisualcpp but w/o cygpath translation. # Just convert the backslash-escaped backslashes to single forward # slashes to satisfy depend.m4 cygpath_u='sed s,\\\\,/,g' depmode=msvisualcpp fi if test "$depmode" = msvc7msys; then # This is just like msvc7 but w/o cygpath translation. # Just convert the backslash-escaped backslashes to single forward # slashes to satisfy depend.m4 cygpath_u='sed s,\\\\,/,g' depmode=msvc7 fi case "$depmode" in gcc3) ## gcc 3 implements dependency tracking that does exactly what ## we want. Yay! Note: for some reason libtool 1.4 doesn't like ## it if -MD -MP comes after the -MF stuff. Hmm. ## Unfortunately, FreeBSD c89 acceptance of flags depends upon ## the command line argument order; so add the flags where they ## appear in depend2.am. Note that the slowdown incurred here ## affects only configure: in makefiles, %FASTDEP% shortcuts this. for arg do case $arg in -c) set fnord "$@" -MT "$object" -MD -MP -MF "$tmpdepfile" "$arg" ;; *) set fnord "$@" "$arg" ;; esac shift # fnord shift # $arg done "$@" stat=$? if test $stat -eq 0; then : else rm -f "$tmpdepfile" exit $stat fi mv "$tmpdepfile" "$depfile" ;; gcc) ## There are various ways to get dependency output from gcc. Here's ## why we pick this rather obscure method: ## - Don't want to use -MD because we'd like the dependencies to end ## up in a subdir. Having to rename by hand is ugly. ## (We might end up doing this anyway to support other compilers.) ## - The DEPENDENCIES_OUTPUT environment variable makes gcc act like ## -MM, not -M (despite what the docs say). ## - Using -M directly means running the compiler twice (even worse ## than renaming). if test -z "$gccflag"; then gccflag=-MD, fi "$@" -Wp,"$gccflag$tmpdepfile" stat=$? if test $stat -eq 0; then : else rm -f "$tmpdepfile" exit $stat fi rm -f "$depfile" echo "$object : \\" > "$depfile" alpha=ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz ## The second -e expression handles DOS-style file names with drive letters. sed -e 's/^[^:]*: / /' \ -e 's/^['$alpha']:\/[^:]*: / /' < "$tmpdepfile" >> "$depfile" ## This next piece of magic avoids the `deleted header file' problem. ## The problem is that when a header file which appears in a .P file ## is deleted, the dependency causes make to die (because there is ## typically no way to rebuild the header). We avoid this by adding ## dummy dependencies for each header file. Too bad gcc doesn't do ## this for us directly. tr ' ' ' ' < "$tmpdepfile" | ## Some versions of gcc put a space before the `:'. On the theory ## that the space means something, we add a space to the output as ## well. hp depmode also adds that space, but also prefixes the VPATH ## to the object. Take care to not repeat it in the output. ## Some versions of the HPUX 10.20 sed can't process this invocation ## correctly. Breaking it into two sed invocations is a workaround. sed -e 's/^\\$//' -e '/^$/d' -e "s|.*$object$||" -e '/:$/d' \ | sed -e 's/$/ :/' >> "$depfile" rm -f "$tmpdepfile" ;; hp) # This case exists only to let depend.m4 do its work. It works by # looking at the text of this script. This case will never be run, # since it is checked for above. exit 1 ;; sgi) if test "$libtool" = yes; then "$@" "-Wp,-MDupdate,$tmpdepfile" else "$@" -MDupdate "$tmpdepfile" fi stat=$? if test $stat -eq 0; then : else rm -f "$tmpdepfile" exit $stat fi rm -f "$depfile" if test -f "$tmpdepfile"; then # yes, the sourcefile depend on other files echo "$object : \\" > "$depfile" # Clip off the initial element (the dependent). Don't try to be # clever and replace this with sed code, as IRIX sed won't handle # lines with more than a fixed number of characters (4096 in # IRIX 6.2 sed, 8192 in IRIX 6.5). We also remove comment lines; # the IRIX cc adds comments like `#:fec' to the end of the # dependency line. tr ' ' ' ' < "$tmpdepfile" \ | sed -e 's/^.*\.o://' -e 's/#.*$//' -e '/^$/ d' | \ tr ' ' ' ' >> "$depfile" echo >> "$depfile" # The second pass generates a dummy entry for each header file. tr ' ' ' ' < "$tmpdepfile" \ | sed -e 's/^.*\.o://' -e 's/#.*$//' -e '/^$/ d' -e 's/$/:/' \ >> "$depfile" else # The sourcefile does not contain any dependencies, so just # store a dummy comment line, to avoid errors with the Makefile # "include basename.Plo" scheme. echo "#dummy" > "$depfile" fi rm -f "$tmpdepfile" ;; aix) # The C for AIX Compiler uses -M and outputs the dependencies # in a .u file. In older versions, this file always lives in the # current directory. Also, the AIX compiler puts `$object:' at the # start of each line; $object doesn't have directory information. # Version 6 uses the directory in both cases. dir=`echo "$object" | sed -e 's|/[^/]*$|/|'` test "x$dir" = "x$object" && dir= base=`echo "$object" | sed -e 's|^.*/||' -e 's/\.o$//' -e 's/\.lo$//'` if test "$libtool" = yes; then tmpdepfile1=$dir$base.u tmpdepfile2=$base.u tmpdepfile3=$dir.libs/$base.u "$@" -Wc,-M else tmpdepfile1=$dir$base.u tmpdepfile2=$dir$base.u tmpdepfile3=$dir$base.u "$@" -M fi stat=$? if test $stat -eq 0; then : else rm -f "$tmpdepfile1" "$tmpdepfile2" "$tmpdepfile3" exit $stat fi for tmpdepfile in "$tmpdepfile1" "$tmpdepfile2" "$tmpdepfile3" do test -f "$tmpdepfile" && break done if test -f "$tmpdepfile"; then # Each line is of the form `foo.o: dependent.h'. # Do two passes, one to just change these to # `$object: dependent.h' and one to simply `dependent.h:'. sed -e "s,^.*\.[a-z]*:,$object:," < "$tmpdepfile" > "$depfile" # That's a tab and a space in the []. sed -e 's,^.*\.[a-z]*:[ ]*,,' -e 's,$,:,' < "$tmpdepfile" >> "$depfile" else # The sourcefile does not contain any dependencies, so just # store a dummy comment line, to avoid errors with the Makefile # "include basename.Plo" scheme. echo "#dummy" > "$depfile" fi rm -f "$tmpdepfile" ;; icc) # Intel's C compiler understands `-MD -MF file'. However on # icc -MD -MF foo.d -c -o sub/foo.o sub/foo.c # ICC 7.0 will fill foo.d with something like # foo.o: sub/foo.c # foo.o: sub/foo.h # which is wrong. We want: # sub/foo.o: sub/foo.c # sub/foo.o: sub/foo.h # sub/foo.c: # sub/foo.h: # ICC 7.1 will output # foo.o: sub/foo.c sub/foo.h # and will wrap long lines using \ : # foo.o: sub/foo.c ... \ # sub/foo.h ... \ # ... "$@" -MD -MF "$tmpdepfile" stat=$? if test $stat -eq 0; then : else rm -f "$tmpdepfile" exit $stat fi rm -f "$depfile" # Each line is of the form `foo.o: dependent.h', # or `foo.o: dep1.h dep2.h \', or ` dep3.h dep4.h \'. # Do two passes, one to just change these to # `$object: dependent.h' and one to simply `dependent.h:'. sed "s,^[^:]*:,$object :," < "$tmpdepfile" > "$depfile" # Some versions of the HPUX 10.20 sed can't process this invocation # correctly. Breaking it into two sed invocations is a workaround. sed 's,^[^:]*: \(.*\)$,\1,;s/^\\$//;/^$/d;/:$/d' < "$tmpdepfile" | sed -e 's/$/ :/' >> "$depfile" rm -f "$tmpdepfile" ;; hp2) # The "hp" stanza above does not work with aCC (C++) and HP's ia64 # compilers, which have integrated preprocessors. The correct option # to use with these is +Maked; it writes dependencies to a file named # 'foo.d', which lands next to the object file, wherever that # happens to be. # Much of this is similar to the tru64 case; see comments there. dir=`echo "$object" | sed -e 's|/[^/]*$|/|'` test "x$dir" = "x$object" && dir= base=`echo "$object" | sed -e 's|^.*/||' -e 's/\.o$//' -e 's/\.lo$//'` if test "$libtool" = yes; then tmpdepfile1=$dir$base.d tmpdepfile2=$dir.libs/$base.d "$@" -Wc,+Maked else tmpdepfile1=$dir$base.d tmpdepfile2=$dir$base.d "$@" +Maked fi stat=$? if test $stat -eq 0; then : else rm -f "$tmpdepfile1" "$tmpdepfile2" exit $stat fi for tmpdepfile in "$tmpdepfile1" "$tmpdepfile2" do test -f "$tmpdepfile" && break done if test -f "$tmpdepfile"; then sed -e "s,^.*\.[a-z]*:,$object:," "$tmpdepfile" > "$depfile" # Add `dependent.h:' lines. sed -ne '2,${ s/^ *// s/ \\*$// s/$/:/ p }' "$tmpdepfile" >> "$depfile" else echo "#dummy" > "$depfile" fi rm -f "$tmpdepfile" "$tmpdepfile2" ;; tru64) # The Tru64 compiler uses -MD to generate dependencies as a side # effect. `cc -MD -o foo.o ...' puts the dependencies into `foo.o.d'. # At least on Alpha/Redhat 6.1, Compaq CCC V6.2-504 seems to put # dependencies in `foo.d' instead, so we check for that too. # Subdirectories are respected. dir=`echo "$object" | sed -e 's|/[^/]*$|/|'` test "x$dir" = "x$object" && dir= base=`echo "$object" | sed -e 's|^.*/||' -e 's/\.o$//' -e 's/\.lo$//'` if test "$libtool" = yes; then # With Tru64 cc, shared objects can also be used to make a # static library. This mechanism is used in libtool 1.4 series to # handle both shared and static libraries in a single compilation. # With libtool 1.4, dependencies were output in $dir.libs/$base.lo.d. # # With libtool 1.5 this exception was removed, and libtool now # generates 2 separate objects for the 2 libraries. These two # compilations output dependencies in $dir.libs/$base.o.d and # in $dir$base.o.d. We have to check for both files, because # one of the two compilations can be disabled. We should prefer # $dir$base.o.d over $dir.libs/$base.o.d because the latter is # automatically cleaned when .libs/ is deleted, while ignoring # the former would cause a distcleancheck panic. tmpdepfile1=$dir.libs/$base.lo.d # libtool 1.4 tmpdepfile2=$dir$base.o.d # libtool 1.5 tmpdepfile3=$dir.libs/$base.o.d # libtool 1.5 tmpdepfile4=$dir.libs/$base.d # Compaq CCC V6.2-504 "$@" -Wc,-MD else tmpdepfile1=$dir$base.o.d tmpdepfile2=$dir$base.d tmpdepfile3=$dir$base.d tmpdepfile4=$dir$base.d "$@" -MD fi stat=$? if test $stat -eq 0; then : else rm -f "$tmpdepfile1" "$tmpdepfile2" "$tmpdepfile3" "$tmpdepfile4" exit $stat fi for tmpdepfile in "$tmpdepfile1" "$tmpdepfile2" "$tmpdepfile3" "$tmpdepfile4" do test -f "$tmpdepfile" && break done if test -f "$tmpdepfile"; then sed -e "s,^.*\.[a-z]*:,$object:," < "$tmpdepfile" > "$depfile" # That's a tab and a space in the []. sed -e 's,^.*\.[a-z]*:[ ]*,,' -e 's,$,:,' < "$tmpdepfile" >> "$depfile" else echo "#dummy" > "$depfile" fi rm -f "$tmpdepfile" ;; msvc7) if test "$libtool" = yes; then showIncludes=-Wc,-showIncludes else showIncludes=-showIncludes fi "$@" $showIncludes > "$tmpdepfile" stat=$? grep -v '^Note: including file: ' "$tmpdepfile" if test "$stat" = 0; then : else rm -f "$tmpdepfile" exit $stat fi rm -f "$depfile" echo "$object : \\" > "$depfile" # The first sed program below extracts the file names and escapes # backslashes for cygpath. The second sed program outputs the file # name when reading, but also accumulates all include files in the # hold buffer in order to output them again at the end. This only # works with sed implementations that can handle large buffers. sed < "$tmpdepfile" -n ' /^Note: including file: *\(.*\)/ { s//\1/ s/\\/\\\\/g p }' | $cygpath_u | sort -u | sed -n ' s/ /\\ /g s/\(.*\)/ \1 \\/p s/.\(.*\) \\/\1:/ H $ { s/.*/ / G p }' >> "$depfile" rm -f "$tmpdepfile" ;; msvc7msys) # This case exists only to let depend.m4 do its work. It works by # looking at the text of this script. This case will never be run, # since it is checked for above. exit 1 ;; #nosideeffect) # This comment above is used by automake to tell side-effect # dependency tracking mechanisms from slower ones. dashmstdout) # Important note: in order to support this mode, a compiler *must* # always write the preprocessed file to stdout, regardless of -o. "$@" || exit $? # Remove the call to Libtool. if test "$libtool" = yes; then while test "X$1" != 'X--mode=compile'; do shift done shift fi # Remove `-o $object'. IFS=" " for arg do case $arg in -o) shift ;; $object) shift ;; *) set fnord "$@" "$arg" shift # fnord shift # $arg ;; esac done test -z "$dashmflag" && dashmflag=-M # Require at least two characters before searching for `:' # in the target name. This is to cope with DOS-style filenames: # a dependency such as `c:/foo/bar' could be seen as target `c' otherwise. "$@" $dashmflag | sed 's:^[ ]*[^: ][^:][^:]*\:[ ]*:'"$object"'\: :' > "$tmpdepfile" rm -f "$depfile" cat < "$tmpdepfile" > "$depfile" tr ' ' ' ' < "$tmpdepfile" | \ ## Some versions of the HPUX 10.20 sed can't process this invocation ## correctly. Breaking it into two sed invocations is a workaround. sed -e 's/^\\$//' -e '/^$/d' -e '/:$/d' | sed -e 's/$/ :/' >> "$depfile" rm -f "$tmpdepfile" ;; dashXmstdout) # This case only exists to satisfy depend.m4. It is never actually # run, as this mode is specially recognized in the preamble. exit 1 ;; makedepend) "$@" || exit $? # Remove any Libtool call if test "$libtool" = yes; then while test "X$1" != 'X--mode=compile'; do shift done shift fi # X makedepend shift cleared=no eat=no for arg do case $cleared in no) set ""; shift cleared=yes ;; esac if test $eat = yes; then eat=no continue fi case "$arg" in -D*|-I*) set fnord "$@" "$arg"; shift ;; # Strip any option that makedepend may not understand. Remove # the object too, otherwise makedepend will parse it as a source file. -arch) eat=yes ;; -*|$object) ;; *) set fnord "$@" "$arg"; shift ;; esac done obj_suffix=`echo "$object" | sed 's/^.*\././'` touch "$tmpdepfile" ${MAKEDEPEND-makedepend} -o"$obj_suffix" -f"$tmpdepfile" "$@" rm -f "$depfile" # makedepend may prepend the VPATH from the source file name to the object. # No need to regex-escape $object, excess matching of '.' is harmless. sed "s|^.*\($object *:\)|\1|" "$tmpdepfile" > "$depfile" sed '1,2d' "$tmpdepfile" | tr ' ' ' ' | \ ## Some versions of the HPUX 10.20 sed can't process this invocation ## correctly. Breaking it into two sed invocations is a workaround. sed -e 's/^\\$//' -e '/^$/d' -e '/:$/d' | sed -e 's/$/ :/' >> "$depfile" rm -f "$tmpdepfile" "$tmpdepfile".bak ;; cpp) # Important note: in order to support this mode, a compiler *must* # always write the preprocessed file to stdout. "$@" || exit $? # Remove the call to Libtool. if test "$libtool" = yes; then while test "X$1" != 'X--mode=compile'; do shift done shift fi # Remove `-o $object'. IFS=" " for arg do case $arg in -o) shift ;; $object) shift ;; *) set fnord "$@" "$arg" shift # fnord shift # $arg ;; esac done "$@" -E | sed -n -e '/^# [0-9][0-9]* "\([^"]*\)".*/ s:: \1 \\:p' \ -e '/^#line [0-9][0-9]* "\([^"]*\)".*/ s:: \1 \\:p' | sed '$ s: \\$::' > "$tmpdepfile" rm -f "$depfile" echo "$object : \\" > "$depfile" cat < "$tmpdepfile" >> "$depfile" sed < "$tmpdepfile" '/^$/d;s/^ //;s/ \\$//;s/$/ :/' >> "$depfile" rm -f "$tmpdepfile" ;; msvisualcpp) # Important note: in order to support this mode, a compiler *must* # always write the preprocessed file to stdout. "$@" || exit $? # Remove the call to Libtool. if test "$libtool" = yes; then while test "X$1" != 'X--mode=compile'; do shift done shift fi IFS=" " for arg do case "$arg" in -o) shift ;; $object) shift ;; "-Gm"|"/Gm"|"-Gi"|"/Gi"|"-ZI"|"/ZI") set fnord "$@" shift shift ;; *) set fnord "$@" "$arg" shift shift ;; esac done "$@" -E 2>/dev/null | sed -n '/^#line [0-9][0-9]* "\([^"]*\)"/ s::\1:p' | $cygpath_u | sort -u > "$tmpdepfile" rm -f "$depfile" echo "$object : \\" > "$depfile" sed < "$tmpdepfile" -n -e 's% %\\ %g' -e '/^\(.*\)$/ s:: \1 \\:p' >> "$depfile" echo " " >> "$depfile" sed < "$tmpdepfile" -n -e 's% %\\ %g' -e '/^\(.*\)$/ s::\1\::p' >> "$depfile" rm -f "$tmpdepfile" ;; msvcmsys) # This case exists only to let depend.m4 do its work. It works by # looking at the text of this script. This case will never be run, # since it is checked for above. exit 1 ;; none) exec "$@" ;; *) echo "Unknown depmode $depmode" 1>&2 exit 1 ;; esac exit 0 # Local Variables: # mode: shell-script # sh-indentation: 2 # eval: (add-hook 'write-file-hooks 'time-stamp) # time-stamp-start: "scriptversion=" # time-stamp-format: "%:y-%02m-%02d.%02H" # time-stamp-time-zone: "UTC" # time-stamp-end: "; # UTC" # End: iok-2.1.3/autogen.sh0000755000076400007640000001057411776460025011250 00000000000000#!/bin/sh # Run this to generate all the initial makefiles, etc. srcdir=`dirname $0` test -z "$srcdir" && srcdir=. DIE=0 if [ -n "$GNOME2_DIR" ]; then ACLOCAL_FLAGS="-I $GNOME2_DIR/share/aclocal $ACLOCAL_FLAGS" LD_LIBRARY_PATH="$GNOME2_DIR/lib:$LD_LIBRARY_PATH" PATH="$GNOME2_DIR/bin:$PATH" export PATH export LD_LIBRARY_PATH fi (test -f $srcdir/configure.in) || { echo -n "**Error**: Directory "\`$srcdir\'" does not look like the" echo " top-level package directory" exit 1 } (autoconf --version) < /dev/null > /dev/null 2>&1 || { echo echo "**Error**: You must have \`autoconf' installed." echo "Download the appropriate package for your distribution," echo "or get the source tarball at ftp://ftp.gnu.org/pub/gnu/" DIE=1 } (grep "^AC_PROG_INTLTOOL" $srcdir/configure.in >/dev/null) && { (intltoolize --version) < /dev/null > /dev/null 2>&1 || { echo echo "**Error**: You must have \`intltool' installed." echo "You can get it from:" echo " ftp://ftp.gnome.org/pub/GNOME/" DIE=1 } } (grep "^AM_PROG_XML_I18N_TOOLS" $srcdir/configure.in >/dev/null) && { (xml-i18n-toolize --version) < /dev/null > /dev/null 2>&1 || { echo echo "**Error**: You must have \`xml-i18n-toolize' installed." echo "You can get it from:" echo " ftp://ftp.gnome.org/pub/GNOME/" DIE=1 } } (grep "^AM_PROG_LIBTOOL" $srcdir/configure.in >/dev/null) && { (libtool --version) < /dev/null > /dev/null 2>&1 || { echo echo "**Error**: You must have \`libtool' installed." echo "You can get it from: ftp://ftp.gnu.org/pub/gnu/" DIE=1 } } (grep "^AM_GLIB_GNU_GETTEXT" $srcdir/configure.in >/dev/null) && { (grep "sed.*POTFILES" $srcdir/configure.in) > /dev/null || \ (glib-gettextize --version) < /dev/null > /dev/null 2>&1 || { echo echo "**Error**: You must have \`glib' installed." echo "You can get it from: ftp://ftp.gtk.org/pub/gtk" DIE=1 } } (automake --version) < /dev/null > /dev/null 2>&1 || { echo echo "**Error**: You must have \`automake' installed." echo "You can get it from: ftp://ftp.gnu.org/pub/gnu/" DIE=1 NO_AUTOMAKE=yes } # if no automake, don't bother testing for aclocal test -n "$NO_AUTOMAKE" || (aclocal --version) < /dev/null > /dev/null 2>&1 || { echo echo "**Error**: Missing \`aclocal'. The version of \`automake'" echo "installed doesn't appear recent enough." echo "You can get automake from ftp://ftp.gnu.org/pub/gnu/" DIE=1 } if test "$DIE" -eq 1; then exit 1 fi if test -z "$*"; then echo "**Warning**: I am going to run \`configure' with no arguments." echo "If you wish to pass any to it, please specify them on the" echo \`$0\'" command line." echo fi case $CC in xlc ) am_opt=--include-deps;; esac for coin in `find $srcdir -name configure.in -print` do dr=`dirname $coin` if test -f $dr/NO-AUTO-GEN; then echo skipping $dr -- flagged as no auto-gen else echo processing $dr ( cd $dr aclocalinclude="$ACLOCAL_FLAGS" if grep "^AM_GLIB_GNU_GETTEXT" configure.in >/dev/null; then echo "Creating $dr/aclocal.m4 ..." test -r $dr/aclocal.m4 || touch $dr/aclocal.m4 echo "Running glib-gettextize... Ignore non-fatal messages." echo "no" | glib-gettextize --force --copy echo "Making $dr/aclocal.m4 writable ..." test -r $dr/aclocal.m4 && chmod u+w $dr/aclocal.m4 fi if grep "^AC_PROG_INTLTOOL" configure.in >/dev/null; then echo "Running intltoolize..." intltoolize --copy --force --automake fi if grep "^AM_PROG_XML_I18N_TOOLS" configure.in >/dev/null; then echo "Running xml-i18n-toolize..." xml-i18n-toolize --copy --force --automake fi if grep "^AM_PROG_LIBTOOL" configure.in >/dev/null; then if test -z "$NO_LIBTOOLIZE" ; then echo "Running libtoolize..." libtoolize --force --copy fi fi echo "Running aclocal $aclocalinclude ..." aclocal $aclocalinclude if grep "^AM_CONFIG_HEADER" configure.in >/dev/null; then echo "Running autoheader..." autoheader fi echo "Running automake --gnu $am_opt ..." automake --add-missing --gnu $am_opt echo "Running autoconf ..." autoconf ) fi done conf_flags="--enable-maintainer-mode" if test x$NOCONFIGURE = x; then echo Running $srcdir/configure $conf_flags "$@" ... $srcdir/configure $conf_flags "$@" \ && echo Now type \`make\' to compile. || exit 1 else echo Skipping configure process. fi iok-2.1.3/COPYING0000644000076400007640000004312211776460025010275 00000000000000 GNU GENERAL PUBLIC LICENSE Version 2, June 1991 Copyright (C) 1989, 1991 Free Software Foundation, Inc. 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA Everyone is permitted to copy and distribute verbatim copies of this license document, but changing it is not allowed. Preamble The licenses for most software are designed to take away your freedom to share and change it. By contrast, the GNU General Public License is intended to guarantee your freedom to share and change free software--to make sure the software is free for all its users. This General Public License applies to most of the Free Software Foundation's software and to any other program whose authors commit to using it. (Some other Free Software Foundation software is covered by the GNU Library General Public License instead.) You can apply it to your programs, too. When we speak of free software, we are referring to freedom, not price. Our General Public Licenses are designed to make sure that you have the freedom to distribute copies of free software (and charge for this service if you wish), that you receive source code or can get it if you want it, that you can change the software or use pieces of it in new free programs; and that you know you can do these things. To protect your rights, we need to make restrictions that forbid anyone to deny you these rights or to ask you to surrender the rights. These restrictions translate to certain responsibilities for you if you distribute copies of the software, or if you modify it. For example, if you distribute copies of such a program, whether gratis or for a fee, you must give the recipients all the rights that you have. You must make sure that they, too, receive or can get the source code. And you must show them these terms so they know their rights. We protect your rights with two steps: (1) copyright the software, and (2) offer you this license which gives you legal permission to copy, distribute and/or modify the software. Also, for each author's protection and ours, we want to make certain that everyone understands that there is no warranty for this free software. If the software is modified by someone else and passed on, we want its recipients to know that what they have is not the original, so that any problems introduced by others will not reflect on the original authors' reputations. Finally, any free program is threatened constantly by software patents. We wish to avoid the danger that redistributors of a free program will individually obtain patent licenses, in effect making the program proprietary. To prevent this, we have made it clear that any patent must be licensed for everyone's free use or not licensed at all. The precise terms and conditions for copying, distribution and modification follow. GNU GENERAL PUBLIC LICENSE TERMS AND CONDITIONS FOR COPYING, DISTRIBUTION AND MODIFICATION 0. This License applies to any program or other work which contains a notice placed by the copyright holder saying it may be distributed under the terms of this General Public License. The "Program", below, refers to any such program or work, and a "work based on the Program" means either the Program or any derivative work under copyright law: that is to say, a work containing the Program or a portion of it, either verbatim or with modifications and/or translated into another language. (Hereinafter, translation is included without limitation in the term "modification".) Each licensee is addressed as "you". Activities other than copying, distribution and modification are not covered by this License; they are outside its scope. The act of running the Program is not restricted, and the output from the Program is covered only if its contents constitute a work based on the Program (independent of having been made by running the Program). Whether that is true depends on what the Program does. 1. You may copy and distribute verbatim copies of the Program's source code as you receive it, in any medium, provided that you conspicuously and appropriately publish on each copy an appropriate copyright notice and disclaimer of warranty; keep intact all the notices that refer to this License and to the absence of any warranty; and give any other recipients of the Program a copy of this License along with the Program. You may charge a fee for the physical act of transferring a copy, and you may at your option offer warranty protection in exchange for a fee. 2. You may modify your copy or copies of the Program or any portion of it, thus forming a work based on the Program, and copy and distribute such modifications or work under the terms of Section 1 above, provided that you also meet all of these conditions: a) You must cause the modified files to carry prominent notices stating that you changed the files and the date of any change. b) You must cause any work that you distribute or publish, that in whole or in part contains or is derived from the Program or any part thereof, to be licensed as a whole at no charge to all third parties under the terms of this License. c) If the modified program normally reads commands interactively when run, you must cause it, when started running for such interactive use in the most ordinary way, to print or display an announcement including an appropriate copyright notice and a notice that there is no warranty (or else, saying that you provide a warranty) and that users may redistribute the program under these conditions, and telling the user how to view a copy of this License. (Exception: if the Program itself is interactive but does not normally print such an announcement, your work based on the Program is not required to print an announcement.) These requirements apply to the modified work as a whole. If identifiable sections of that work are not derived from the Program, and can be reasonably considered independent and separate works in themselves, then this License, and its terms, do not apply to those sections when you distribute them as separate works. But when you distribute the same sections as part of a whole which is a work based on the Program, the distribution of the whole must be on the terms of this License, whose permissions for other licensees extend to the entire whole, and thus to each and every part regardless of who wrote it. Thus, it is not the intent of this section to claim rights or contest your rights to work written entirely by you; rather, the intent is to exercise the right to control the distribution of derivative or collective works based on the Program. In addition, mere aggregation of another work not based on the Program with the Program (or with a work based on the Program) on a volume of a storage or distribution medium does not bring the other work under the scope of this License. 3. You may copy and distribute the Program (or a work based on it, under Section 2) in object code or executable form under the terms of Sections 1 and 2 above provided that you also do one of the following: a) Accompany it with the complete corresponding machine-readable source code, which must be distributed under the terms of Sections 1 and 2 above on a medium customarily used for software interchange; or, b) Accompany it with a written offer, valid for at least three years, to give any third party, for a charge no more than your cost of physically performing source distribution, a complete machine-readable copy of the corresponding source code, to be distributed under the terms of Sections 1 and 2 above on a medium customarily used for software interchange; or, c) Accompany it with the information you received as to the offer to distribute corresponding source code. (This alternative is allowed only for noncommercial distribution and only if you received the program in object code or executable form with such an offer, in accord with Subsection b above.) The source code for a work means the preferred form of the work for making modifications to it. For an executable work, complete source code means all the source code for all modules it contains, plus any associated interface definition files, plus the scripts used to control compilation and installation of the executable. However, as a special exception, the source code distributed need not include anything that is normally distributed (in either source or binary form) with the major components (compiler, kernel, and so on) of the operating system on which the executable runs, unless that component itself accompanies the executable. If distribution of executable or object code is made by offering access to copy from a designated place, then offering equivalent access to copy the source code from the same place counts as distribution of the source code, even though third parties are not compelled to copy the source along with the object code. 4. You may not copy, modify, sublicense, or distribute the Program except as expressly provided under this License. Any attempt otherwise to copy, modify, sublicense or distribute the Program is void, and will automatically terminate your rights under this License. However, parties who have received copies, or rights, from you under this License will not have their licenses terminated so long as such parties remain in full compliance. 5. You are not required to accept this License, since you have not signed it. However, nothing else grants you permission to modify or distribute the Program or its derivative works. These actions are prohibited by law if you do not accept this License. Therefore, by modifying or distributing the Program (or any work based on the Program), you indicate your acceptance of this License to do so, and all its terms and conditions for copying, distributing or modifying the Program or works based on it. 6. Each time you redistribute the Program (or any work based on the Program), the recipient automatically receives a license from the original licensor to copy, distribute or modify the Program subject to these terms and conditions. You may not impose any further restrictions on the recipients' exercise of the rights granted herein. You are not responsible for enforcing compliance by third parties to this License. 7. If, as a consequence of a court judgment or allegation of patent infringement or for any other reason (not limited to patent issues), conditions are imposed on you (whether by court order, agreement or otherwise) that contradict the conditions of this License, they do not excuse you from the conditions of this License. If you cannot distribute so as to satisfy simultaneously your obligations under this License and any other pertinent obligations, then as a consequence you may not distribute the Program at all. For example, if a patent license would not permit royalty-free redistribution of the Program by all those who receive copies directly or indirectly through you, then the only way you could satisfy both it and this License would be to refrain entirely from distribution of the Program. If any portion of this section is held invalid or unenforceable under any particular circumstance, the balance of the section is intended to apply and the section as a whole is intended to apply in other circumstances. It is not the purpose of this section to induce you to infringe any patents or other property right claims or to contest validity of any such claims; this section has the sole purpose of protecting the integrity of the free software distribution system, which is implemented by public license practices. Many people have made generous contributions to the wide range of software distributed through that system in reliance on consistent application of that system; it is up to the author/donor to decide if he or she is willing to distribute software through any other system and a licensee cannot impose that choice. This section is intended to make thoroughly clear what is believed to be a consequence of the rest of this License. 8. If the distribution and/or use of the Program is restricted in certain countries either by patents or by copyrighted interfaces, the original copyright holder who places the Program under this License may add an explicit geographical distribution limitation excluding those countries, so that distribution is permitted only in or among countries not thus excluded. In such case, this License incorporates the limitation as if written in the body of this License. 9. The Free Software Foundation may publish revised and/or new versions of the General Public License from time to time. Such new versions will be similar in spirit to the present version, but may differ in detail to address new problems or concerns. Each version is given a distinguishing version number. If the Program specifies a version number of this License which applies to it and "any later version", you have the option of following the terms and conditions either of that version or of any later version published by the Free Software Foundation. If the Program does not specify a version number of this License, you may choose any version ever published by the Free Software Foundation. 10. If you wish to incorporate parts of the Program into other free programs whose distribution conditions are different, write to the author to ask for permission. For software which is copyrighted by the Free Software Foundation, write to the Free Software Foundation; we sometimes make exceptions for this. Our decision will be guided by the two goals of preserving the free status of all derivatives of our free software and of promoting the sharing and reuse of software generally. NO WARRANTY 11. BECAUSE THE PROGRAM IS LICENSED FREE OF CHARGE, THERE IS NO WARRANTY FOR THE PROGRAM, TO THE EXTENT PERMITTED BY APPLICABLE LAW. EXCEPT WHEN OTHERWISE STATED IN WRITING THE COPYRIGHT HOLDERS AND/OR OTHER PARTIES PROVIDE THE PROGRAM "AS IS" WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE PROGRAM IS WITH YOU. SHOULD THE PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF ALL NECESSARY SERVICING, REPAIR OR CORRECTION. 12. IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MAY MODIFY AND/OR REDISTRIBUTE THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES, INCLUDING ANY GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING OUT OF THE USE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED TO LOSS OF DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY YOU OR THIRD PARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER PROGRAMS), EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES. END OF TERMS AND CONDITIONS How to Apply These Terms to Your New Programs If you develop a new program, and you want it to be of the greatest possible use to the public, the best way to achieve this is to make it free software which everyone can redistribute and change under these terms. To do so, attach the following notices to the program. It is safest to attach them to the start of each source file to most effectively convey the exclusion of warranty; and each file should have at least the "copyright" line and a pointer to where the full notice is found. Copyright (C) This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; either version 2 of the License, or (at your option) any later version. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. You should have received a copy of the GNU General Public License along with this program; if not, write to the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA Also add information on how to contact you by electronic and paper mail. If the program is interactive, make it output a short notice like this when it starts in an interactive mode: Gnomovision version 69, Copyright (C) year name of author Gnomovision comes with ABSOLUTELY NO WARRANTY; for details type `show w'. This is free software, and you are welcome to redistribute it under certain conditions; type `show c' for details. The hypothetical commands `show w' and `show c' should show the appropriate parts of the General Public License. Of course, the commands you use may be called something other than `show w' and `show c'; they could even be mouse-clicks or menu items--whatever suits your program. You should also get your employer (if you work as a programmer) or your school, if any, to sign a "copyright disclaimer" for the program, if necessary. Here is a sample; alter the names: Yoyodyne, Inc., hereby disclaims all copyright interest in the program `Gnomovision' (which makes passes at compilers) written by James Hacker. , 1 April 1989 Ty Coon, President of Vice This General Public License does not permit incorporating your program into proprietary programs. If your program is a subroutine library, you may consider it more useful to permit linking proprietary applications with the library. If this is what you want to do, use the GNU Library General Public License instead of this License. iok-2.1.3/install-sh0000755000076400007640000003325611776460025011255 00000000000000#!/bin/sh # install - install a program, script, or datafile scriptversion=2011-01-19.21; # UTC # This originates from X11R5 (mit/util/scripts/install.sh), which was # later released in X11R6 (xc/config/util/install.sh) with the # following copyright and license. # # Copyright (C) 1994 X Consortium # # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and associated documentation files (the "Software"), to # deal in the Software without restriction, including without limitation the # rights to use, copy, modify, merge, publish, distribute, sublicense, and/or # sell copies of the Software, and to permit persons to whom the Software is # furnished to do so, subject to the following conditions: # # The above copyright notice and this permission notice shall be included in # all copies or substantial portions of the Software. # # THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR # IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, # FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE # X CONSORTIUM BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN # AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNEC- # TION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. # # Except as contained in this notice, the name of the X Consortium shall not # be used in advertising or otherwise to promote the sale, use or other deal- # ings in this Software without prior written authorization from the X Consor- # tium. # # # FSF changes to this file are in the public domain. # # Calling this script install-sh is preferred over install.sh, to prevent # `make' implicit rules from creating a file called install from it # when there is no Makefile. # # This script is compatible with the BSD install script, but was written # from scratch. nl=' ' IFS=" "" $nl" # set DOITPROG to echo to test this script # Don't use :- since 4.3BSD and earlier shells don't like it. doit=${DOITPROG-} if test -z "$doit"; then doit_exec=exec else doit_exec=$doit fi # Put in absolute file names if you don't have them in your path; # or use environment vars. chgrpprog=${CHGRPPROG-chgrp} chmodprog=${CHMODPROG-chmod} chownprog=${CHOWNPROG-chown} cmpprog=${CMPPROG-cmp} cpprog=${CPPROG-cp} mkdirprog=${MKDIRPROG-mkdir} mvprog=${MVPROG-mv} rmprog=${RMPROG-rm} stripprog=${STRIPPROG-strip} posix_glob='?' initialize_posix_glob=' test "$posix_glob" != "?" || { if (set -f) 2>/dev/null; then posix_glob= else posix_glob=: fi } ' posix_mkdir= # Desired mode of installed file. mode=0755 chgrpcmd= chmodcmd=$chmodprog chowncmd= mvcmd=$mvprog rmcmd="$rmprog -f" stripcmd= src= dst= dir_arg= dst_arg= copy_on_change=false no_target_directory= usage="\ Usage: $0 [OPTION]... [-T] SRCFILE DSTFILE or: $0 [OPTION]... SRCFILES... DIRECTORY or: $0 [OPTION]... -t DIRECTORY SRCFILES... or: $0 [OPTION]... -d DIRECTORIES... In the 1st form, copy SRCFILE to DSTFILE. In the 2nd and 3rd, copy all SRCFILES to DIRECTORY. In the 4th, create DIRECTORIES. Options: --help display this help and exit. --version display version info and exit. -c (ignored) -C install only if different (preserve the last data modification time) -d create directories instead of installing files. -g GROUP $chgrpprog installed files to GROUP. -m MODE $chmodprog installed files to MODE. -o USER $chownprog installed files to USER. -s $stripprog installed files. -t DIRECTORY install into DIRECTORY. -T report an error if DSTFILE is a directory. Environment variables override the default commands: CHGRPPROG CHMODPROG CHOWNPROG CMPPROG CPPROG MKDIRPROG MVPROG RMPROG STRIPPROG " while test $# -ne 0; do case $1 in -c) ;; -C) copy_on_change=true;; -d) dir_arg=true;; -g) chgrpcmd="$chgrpprog $2" shift;; --help) echo "$usage"; exit $?;; -m) mode=$2 case $mode in *' '* | *' '* | *' '* | *'*'* | *'?'* | *'['*) echo "$0: invalid mode: $mode" >&2 exit 1;; esac shift;; -o) chowncmd="$chownprog $2" shift;; -s) stripcmd=$stripprog;; -t) dst_arg=$2 # Protect names problematic for `test' and other utilities. case $dst_arg in -* | [=\(\)!]) dst_arg=./$dst_arg;; esac shift;; -T) no_target_directory=true;; --version) echo "$0 $scriptversion"; exit $?;; --) shift break;; -*) echo "$0: invalid option: $1" >&2 exit 1;; *) break;; esac shift done if test $# -ne 0 && test -z "$dir_arg$dst_arg"; then # When -d is used, all remaining arguments are directories to create. # When -t is used, the destination is already specified. # Otherwise, the last argument is the destination. Remove it from $@. for arg do if test -n "$dst_arg"; then # $@ is not empty: it contains at least $arg. set fnord "$@" "$dst_arg" shift # fnord fi shift # arg dst_arg=$arg # Protect names problematic for `test' and other utilities. case $dst_arg in -* | [=\(\)!]) dst_arg=./$dst_arg;; esac done fi if test $# -eq 0; then if test -z "$dir_arg"; then echo "$0: no input file specified." >&2 exit 1 fi # It's OK to call `install-sh -d' without argument. # This can happen when creating conditional directories. exit 0 fi if test -z "$dir_arg"; then do_exit='(exit $ret); exit $ret' trap "ret=129; $do_exit" 1 trap "ret=130; $do_exit" 2 trap "ret=141; $do_exit" 13 trap "ret=143; $do_exit" 15 # Set umask so as not to create temps with too-generous modes. # However, 'strip' requires both read and write access to temps. case $mode in # Optimize common cases. *644) cp_umask=133;; *755) cp_umask=22;; *[0-7]) if test -z "$stripcmd"; then u_plus_rw= else u_plus_rw='% 200' fi cp_umask=`expr '(' 777 - $mode % 1000 ')' $u_plus_rw`;; *) if test -z "$stripcmd"; then u_plus_rw= else u_plus_rw=,u+rw fi cp_umask=$mode$u_plus_rw;; esac fi for src do # Protect names problematic for `test' and other utilities. case $src in -* | [=\(\)!]) src=./$src;; esac if test -n "$dir_arg"; then dst=$src dstdir=$dst test -d "$dstdir" dstdir_status=$? else # Waiting for this to be detected by the "$cpprog $src $dsttmp" command # might cause directories to be created, which would be especially bad # if $src (and thus $dsttmp) contains '*'. if test ! -f "$src" && test ! -d "$src"; then echo "$0: $src does not exist." >&2 exit 1 fi if test -z "$dst_arg"; then echo "$0: no destination specified." >&2 exit 1 fi dst=$dst_arg # If destination is a directory, append the input filename; won't work # if double slashes aren't ignored. if test -d "$dst"; then if test -n "$no_target_directory"; then echo "$0: $dst_arg: Is a directory" >&2 exit 1 fi dstdir=$dst dst=$dstdir/`basename "$src"` dstdir_status=0 else # Prefer dirname, but fall back on a substitute if dirname fails. dstdir=` (dirname "$dst") 2>/dev/null || expr X"$dst" : 'X\(.*[^/]\)//*[^/][^/]*/*$' \| \ X"$dst" : 'X\(//\)[^/]' \| \ X"$dst" : 'X\(//\)$' \| \ X"$dst" : 'X\(/\)' \| . 2>/dev/null || echo X"$dst" | sed '/^X\(.*[^/]\)\/\/*[^/][^/]*\/*$/{ s//\1/ q } /^X\(\/\/\)[^/].*/{ s//\1/ q } /^X\(\/\/\)$/{ s//\1/ q } /^X\(\/\).*/{ s//\1/ q } s/.*/./; q' ` test -d "$dstdir" dstdir_status=$? fi fi obsolete_mkdir_used=false if test $dstdir_status != 0; then case $posix_mkdir in '') # Create intermediate dirs using mode 755 as modified by the umask. # This is like FreeBSD 'install' as of 1997-10-28. umask=`umask` case $stripcmd.$umask in # Optimize common cases. *[2367][2367]) mkdir_umask=$umask;; .*0[02][02] | .[02][02] | .[02]) mkdir_umask=22;; *[0-7]) mkdir_umask=`expr $umask + 22 \ - $umask % 100 % 40 + $umask % 20 \ - $umask % 10 % 4 + $umask % 2 `;; *) mkdir_umask=$umask,go-w;; esac # With -d, create the new directory with the user-specified mode. # Otherwise, rely on $mkdir_umask. if test -n "$dir_arg"; then mkdir_mode=-m$mode else mkdir_mode= fi posix_mkdir=false case $umask in *[123567][0-7][0-7]) # POSIX mkdir -p sets u+wx bits regardless of umask, which # is incompatible with FreeBSD 'install' when (umask & 300) != 0. ;; *) tmpdir=${TMPDIR-/tmp}/ins$RANDOM-$$ trap 'ret=$?; rmdir "$tmpdir/d" "$tmpdir" 2>/dev/null; exit $ret' 0 if (umask $mkdir_umask && exec $mkdirprog $mkdir_mode -p -- "$tmpdir/d") >/dev/null 2>&1 then if test -z "$dir_arg" || { # Check for POSIX incompatibilities with -m. # HP-UX 11.23 and IRIX 6.5 mkdir -m -p sets group- or # other-writeable bit of parent directory when it shouldn't. # FreeBSD 6.1 mkdir -m -p sets mode of existing directory. ls_ld_tmpdir=`ls -ld "$tmpdir"` case $ls_ld_tmpdir in d????-?r-*) different_mode=700;; d????-?--*) different_mode=755;; *) false;; esac && $mkdirprog -m$different_mode -p -- "$tmpdir" && { ls_ld_tmpdir_1=`ls -ld "$tmpdir"` test "$ls_ld_tmpdir" = "$ls_ld_tmpdir_1" } } then posix_mkdir=: fi rmdir "$tmpdir/d" "$tmpdir" else # Remove any dirs left behind by ancient mkdir implementations. rmdir ./$mkdir_mode ./-p ./-- 2>/dev/null fi trap '' 0;; esac;; esac if $posix_mkdir && ( umask $mkdir_umask && $doit_exec $mkdirprog $mkdir_mode -p -- "$dstdir" ) then : else # The umask is ridiculous, or mkdir does not conform to POSIX, # or it failed possibly due to a race condition. Create the # directory the slow way, step by step, checking for races as we go. case $dstdir in /*) prefix='/';; [-=\(\)!]*) prefix='./';; *) prefix='';; esac eval "$initialize_posix_glob" oIFS=$IFS IFS=/ $posix_glob set -f set fnord $dstdir shift $posix_glob set +f IFS=$oIFS prefixes= for d do test X"$d" = X && continue prefix=$prefix$d if test -d "$prefix"; then prefixes= else if $posix_mkdir; then (umask=$mkdir_umask && $doit_exec $mkdirprog $mkdir_mode -p -- "$dstdir") && break # Don't fail if two instances are running concurrently. test -d "$prefix" || exit 1 else case $prefix in *\'*) qprefix=`echo "$prefix" | sed "s/'/'\\\\\\\\''/g"`;; *) qprefix=$prefix;; esac prefixes="$prefixes '$qprefix'" fi fi prefix=$prefix/ done if test -n "$prefixes"; then # Don't fail if two instances are running concurrently. (umask $mkdir_umask && eval "\$doit_exec \$mkdirprog $prefixes") || test -d "$dstdir" || exit 1 obsolete_mkdir_used=true fi fi fi if test -n "$dir_arg"; then { test -z "$chowncmd" || $doit $chowncmd "$dst"; } && { test -z "$chgrpcmd" || $doit $chgrpcmd "$dst"; } && { test "$obsolete_mkdir_used$chowncmd$chgrpcmd" = false || test -z "$chmodcmd" || $doit $chmodcmd $mode "$dst"; } || exit 1 else # Make a couple of temp file names in the proper directory. dsttmp=$dstdir/_inst.$$_ rmtmp=$dstdir/_rm.$$_ # Trap to clean up those temp files at exit. trap 'ret=$?; rm -f "$dsttmp" "$rmtmp" && exit $ret' 0 # Copy the file name to the temp name. (umask $cp_umask && $doit_exec $cpprog "$src" "$dsttmp") && # and set any options; do chmod last to preserve setuid bits. # # If any of these fail, we abort the whole thing. If we want to # ignore errors from any of these, just make sure not to ignore # errors from the above "$doit $cpprog $src $dsttmp" command. # { test -z "$chowncmd" || $doit $chowncmd "$dsttmp"; } && { test -z "$chgrpcmd" || $doit $chgrpcmd "$dsttmp"; } && { test -z "$stripcmd" || $doit $stripcmd "$dsttmp"; } && { test -z "$chmodcmd" || $doit $chmodcmd $mode "$dsttmp"; } && # If -C, don't bother to copy if it wouldn't change the file. if $copy_on_change && old=`LC_ALL=C ls -dlL "$dst" 2>/dev/null` && new=`LC_ALL=C ls -dlL "$dsttmp" 2>/dev/null` && eval "$initialize_posix_glob" && $posix_glob set -f && set X $old && old=:$2:$4:$5:$6 && set X $new && new=:$2:$4:$5:$6 && $posix_glob set +f && test "$old" = "$new" && $cmpprog "$dst" "$dsttmp" >/dev/null 2>&1 then rm -f "$dsttmp" else # Rename the file to the real destination. $doit $mvcmd -f "$dsttmp" "$dst" 2>/dev/null || # The rename failed, perhaps because mv can't rename something else # to itself, or perhaps because mv is so ancient that it does not # support -f. { # Now remove or move aside any old file at destination location. # We try this two ways since rm can't unlink itself on some # systems and the destination file might be busy for other # reasons. In this case, the final cleanup might fail but the new # file should still install successfully. { test ! -f "$dst" || $doit $rmcmd -f "$dst" 2>/dev/null || { $doit $mvcmd -f "$dst" "$rmtmp" 2>/dev/null && { $doit $rmcmd -f "$rmtmp" 2>/dev/null; :; } } || { echo "$0: cannot unlink or rename $dst" >&2 (exit 1); exit 1 } } && # Now rename the file to the real destination. $doit $mvcmd "$dsttmp" "$dst" } fi || exit 1 trap '' 0 fi done # Local variables: # eval: (add-hook 'write-file-hooks 'time-stamp) # time-stamp-start: "scriptversion=" # time-stamp-format: "%:y-%02m-%02d.%02H" # time-stamp-time-zone: "UTC" # time-stamp-end: "; # UTC" # End: iok-2.1.3/intltool-update.in0000664000076400007640000000000011776460251012705 00000000000000iok-2.1.3/Makefile.in0000664000076400007640000006662211776460255011330 00000000000000# Makefile.in generated by automake 1.11.3 from Makefile.am. # @configure_input@ # Copyright (C) 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, # 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2010, 2011 Free Software # Foundation, Inc. # This Makefile.in is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, # with or without modifications, as long as this notice is preserved. # This program is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY, to the extent permitted by law; without # even the implied warranty of MERCHANTABILITY or FITNESS FOR A # PARTICULAR PURPOSE. @SET_MAKE@ VPATH = @srcdir@ pkgdatadir = $(datadir)/@PACKAGE@ pkgincludedir = $(includedir)/@PACKAGE@ pkglibdir = $(libdir)/@PACKAGE@ pkglibexecdir = $(libexecdir)/@PACKAGE@ am__cd = CDPATH="$${ZSH_VERSION+.}$(PATH_SEPARATOR)" && cd install_sh_DATA = $(install_sh) -c -m 644 install_sh_PROGRAM = $(install_sh) -c install_sh_SCRIPT = $(install_sh) -c INSTALL_HEADER = $(INSTALL_DATA) transform = $(program_transform_name) NORMAL_INSTALL = : PRE_INSTALL = : POST_INSTALL = : NORMAL_UNINSTALL = : PRE_UNINSTALL = : POST_UNINSTALL = : subdir = . DIST_COMMON = README $(am__configure_deps) $(dist_iokman_DATA) \ $(srcdir)/Makefile.am $(srcdir)/Makefile.in \ $(srcdir)/config.h.in $(srcdir)/iok.desktop.in.in \ $(top_srcdir)/configure AUTHORS COPYING ChangeLog INSTALL NEWS \ depcomp install-sh missing mkinstalldirs ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 am__aclocal_m4_deps = $(top_srcdir)/configure.in am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \ $(ACLOCAL_M4) am__CONFIG_DISTCLEAN_FILES = config.status config.cache config.log \ configure.lineno config.status.lineno mkinstalldirs = $(SHELL) $(top_srcdir)/mkinstalldirs CONFIG_HEADER = config.h CONFIG_CLEAN_FILES = iok.desktop.in CONFIG_CLEAN_VPATH_FILES = SOURCES = DIST_SOURCES = RECURSIVE_TARGETS = all-recursive check-recursive dvi-recursive \ html-recursive info-recursive install-data-recursive \ install-dvi-recursive install-exec-recursive \ install-html-recursive install-info-recursive \ install-pdf-recursive install-ps-recursive install-recursive \ installcheck-recursive installdirs-recursive pdf-recursive \ ps-recursive uninstall-recursive am__vpath_adj_setup = srcdirstrip=`echo "$(srcdir)" | sed 's|.|.|g'`; am__vpath_adj = case $$p in \ $(srcdir)/*) f=`echo "$$p" | sed "s|^$$srcdirstrip/||"`;; \ *) f=$$p;; \ esac; am__strip_dir = f=`echo $$p | sed -e 's|^.*/||'`; am__install_max = 40 am__nobase_strip_setup = \ srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*|]/\\\\&/g'` am__nobase_strip = \ for p in $$list; do echo "$$p"; done | sed -e "s|$$srcdirstrip/||" am__nobase_list = $(am__nobase_strip_setup); \ for p in $$list; do echo "$$p $$p"; done | \ sed "s| $$srcdirstrip/| |;"' / .*\//!s/ .*/ ./; s,\( .*\)/[^/]*$$,\1,' | \ $(AWK) 'BEGIN { files["."] = "" } { files[$$2] = files[$$2] " " $$1; \ if (++n[$$2] == $(am__install_max)) \ { print $$2, files[$$2]; n[$$2] = 0; files[$$2] = "" } } \ END { for (dir in files) print dir, files[dir] }' am__base_list = \ sed '$$!N;$$!N;$$!N;$$!N;$$!N;$$!N;$$!N;s/\n/ /g' | \ sed '$$!N;$$!N;$$!N;$$!N;s/\n/ /g' am__uninstall_files_from_dir = { \ test -z "$$files" \ || { test ! -d "$$dir" && test ! -f "$$dir" && test ! -r "$$dir"; } \ || { echo " ( cd '$$dir' && rm -f" $$files ")"; \ $(am__cd) "$$dir" && rm -f $$files; }; \ } am__installdirs = "$(DESTDIR)$(Applicationsdir)" \ "$(DESTDIR)$(iokmandir)" DATA = $(Applications_DATA) $(dist_iokman_DATA) RECURSIVE_CLEAN_TARGETS = mostlyclean-recursive clean-recursive \ distclean-recursive maintainer-clean-recursive AM_RECURSIVE_TARGETS = $(RECURSIVE_TARGETS:-recursive=) \ $(RECURSIVE_CLEAN_TARGETS:-recursive=) tags TAGS ctags CTAGS \ distdir dist dist-all distcheck ETAGS = etags CTAGS = ctags DIST_SUBDIRS = $(SUBDIRS) DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST) distdir = $(PACKAGE)-$(VERSION) top_distdir = $(distdir) am__remove_distdir = \ if test -d "$(distdir)"; then \ find "$(distdir)" -type d ! -perm -200 -exec chmod u+w {} ';' \ && rm -rf "$(distdir)" \ || { sleep 5 && rm -rf "$(distdir)"; }; \ else :; fi am__relativize = \ dir0=`pwd`; \ sed_first='s,^\([^/]*\)/.*$$,\1,'; \ sed_rest='s,^[^/]*/*,,'; \ sed_last='s,^.*/\([^/]*\)$$,\1,'; \ sed_butlast='s,/*[^/]*$$,,'; \ while test -n "$$dir1"; do \ first=`echo "$$dir1" | sed -e "$$sed_first"`; \ if test "$$first" != "."; then \ if test "$$first" = ".."; then \ dir2=`echo "$$dir0" | sed -e "$$sed_last"`/"$$dir2"; \ dir0=`echo "$$dir0" | sed -e "$$sed_butlast"`; \ else \ first2=`echo "$$dir2" | sed -e "$$sed_first"`; \ if test "$$first2" = "$$first"; then \ dir2=`echo "$$dir2" | sed -e "$$sed_rest"`; \ else \ dir2="../$$dir2"; \ fi; \ dir0="$$dir0"/"$$first"; \ fi; \ fi; \ dir1=`echo "$$dir1" | sed -e "$$sed_rest"`; \ done; \ reldir="$$dir2" DIST_ARCHIVES = $(distdir).tar.gz GZIP_ENV = --best distuninstallcheck_listfiles = find . -type f -print am__distuninstallcheck_listfiles = $(distuninstallcheck_listfiles) \ | sed 's|^\./|$(prefix)/|' | grep -v '$(infodir)/dir$$' distcleancheck_listfiles = find . -type f -print ACLOCAL = @ACLOCAL@ ALL_LINGUAS = @ALL_LINGUAS@ AMTAR = @AMTAR@ AM_DEFAULT_VERBOSITY = @AM_DEFAULT_VERBOSITY@ AUTOCONF = @AUTOCONF@ AUTOHEADER = @AUTOHEADER@ AUTOMAKE = @AUTOMAKE@ AWK = @AWK@ CATALOGS = @CATALOGS@ CATOBJEXT = @CATOBJEXT@ CC = @CC@ CCDEPMODE = @CCDEPMODE@ CFLAGS = @CFLAGS@ CPP = @CPP@ CPPFLAGS = @CPPFLAGS@ CYGPATH_W = @CYGPATH_W@ DATADIRNAME = @DATADIRNAME@ DEFS = @DEFS@ DEPDIR = @DEPDIR@ ECHO_C = @ECHO_C@ ECHO_N = @ECHO_N@ ECHO_T = @ECHO_T@ EGREP = @EGREP@ EXEEXT = @EXEEXT@ GETTEXT_PACKAGE = @GETTEXT_PACKAGE@ GMOFILES = @GMOFILES@ GMSGFMT = @GMSGFMT@ GREP = @GREP@ GTK3_CFLAGS = @GTK3_CFLAGS@ GTK3_LIBS = @GTK3_LIBS@ INSTALL = @INSTALL@ INSTALL_DATA = @INSTALL_DATA@ INSTALL_PROGRAM = @INSTALL_PROGRAM@ INSTALL_SCRIPT = @INSTALL_SCRIPT@ INSTALL_STRIP_PROGRAM = @INSTALL_STRIP_PROGRAM@ INSTOBJEXT = @INSTOBJEXT@ INTLLIBS = @INTLLIBS@ INTLTOOL_EXTRACT = @INTLTOOL_EXTRACT@ INTLTOOL_MERGE = @INTLTOOL_MERGE@ INTLTOOL_PERL = @INTLTOOL_PERL@ INTLTOOL_UPDATE = @INTLTOOL_UPDATE@ INTLTOOL_V_MERGE = @INTLTOOL_V_MERGE@ INTLTOOL_V_MERGE_OPTIONS = @INTLTOOL_V_MERGE_OPTIONS@ INTLTOOL__v_MERGE_ = @INTLTOOL__v_MERGE_@ INTLTOOL__v_MERGE_0 = @INTLTOOL__v_MERGE_0@ LDFLAGS = @LDFLAGS@ LIBOBJS = @LIBOBJS@ LIBS = @LIBS@ LIBXML2_CFLAGS = @LIBXML2_CFLAGS@ LIBXML2_LIBS = @LIBXML2_LIBS@ LTLIBOBJS = @LTLIBOBJS@ MAINT = @MAINT@ MAKEINFO = @MAKEINFO@ MKDIR_P = @MKDIR_P@ MKINSTALLDIRS = @MKINSTALLDIRS@ MSGFMT = @MSGFMT@ MSGFMT_OPTS = @MSGFMT_OPTS@ MSGMERGE = @MSGMERGE@ OBJEXT = @OBJEXT@ PACKAGE = @PACKAGE@ PACKAGE_BUGREPORT = @PACKAGE_BUGREPORT@ PACKAGE_NAME = @PACKAGE_NAME@ PACKAGE_STRING = @PACKAGE_STRING@ PACKAGE_TARNAME = @PACKAGE_TARNAME@ PACKAGE_URL = @PACKAGE_URL@ PACKAGE_VERSION = @PACKAGE_VERSION@ PATH_SEPARATOR = @PATH_SEPARATOR@ PKG_CONFIG = @PKG_CONFIG@ PKG_CONFIG_LIBDIR = @PKG_CONFIG_LIBDIR@ PKG_CONFIG_PATH = @PKG_CONFIG_PATH@ POFILES = @POFILES@ POSUB = @POSUB@ PO_IN_DATADIR_FALSE = @PO_IN_DATADIR_FALSE@ PO_IN_DATADIR_TRUE = @PO_IN_DATADIR_TRUE@ SET_MAKE = @SET_MAKE@ SHELL = @SHELL@ STRIP = @STRIP@ UNIQUE3_CFLAGS = @UNIQUE3_CFLAGS@ UNIQUE3_LIBS = @UNIQUE3_LIBS@ USE_NLS = @USE_NLS@ VERSION = @VERSION@ XGETTEXT = @XGETTEXT@ XMKMF = @XMKMF@ abs_builddir = @abs_builddir@ abs_srcdir = @abs_srcdir@ abs_top_builddir = @abs_top_builddir@ abs_top_srcdir = @abs_top_srcdir@ ac_ct_CC = @ac_ct_CC@ am__include = @am__include@ am__leading_dot = @am__leading_dot@ am__quote = @am__quote@ am__tar = @am__tar@ am__untar = @am__untar@ bindir = @bindir@ build_alias = @build_alias@ builddir = @builddir@ datadir = @datadir@ datarootdir = @datarootdir@ docdir = @docdir@ dvidir = @dvidir@ exec_prefix = @exec_prefix@ host_alias = @host_alias@ htmldir = @htmldir@ includedir = @includedir@ infodir = @infodir@ install_sh = @install_sh@ intltool__v_merge_options_ = @intltool__v_merge_options_@ intltool__v_merge_options_0 = @intltool__v_merge_options_0@ libdir = @libdir@ libexecdir = @libexecdir@ localedir = @localedir@ localstatedir = @localstatedir@ mandir = @mandir@ mkdir_p = @mkdir_p@ oldincludedir = @oldincludedir@ pdfdir = @pdfdir@ prefix = @prefix@ program_transform_name = @program_transform_name@ psdir = @psdir@ sbindir = @sbindir@ sharedstatedir = @sharedstatedir@ srcdir = @srcdir@ sysconfdir = @sysconfdir@ target_alias = @target_alias@ top_build_prefix = @top_build_prefix@ top_builddir = @top_builddir@ top_srcdir = @top_srcdir@ SUBDIRS = src po data EXTRA_DIST = README.old \ autogen.sh \ iok.desktop.in \ intltool-extract.in \ intltool-merge.in \ intltool-update.in Applicationsdir = $(datadir)/applications Applications_in_files = iok.desktop.in Applications_DATA = $(Applications_in_files:.desktop.in=.desktop) DISTCLEANFILES = \ intltool-extract \ intltool-merge \ intltool-update \ iok.desktop # Manpage iokmandir = $(mandir)/man1 dist_iokman_DATA = iok.1 all: config.h $(MAKE) $(AM_MAKEFLAGS) all-recursive .SUFFIXES: am--refresh: Makefile @: $(srcdir)/Makefile.in: @MAINTAINER_MODE_TRUE@ $(srcdir)/Makefile.am $(am__configure_deps) @for dep in $?; do \ case '$(am__configure_deps)' in \ *$$dep*) \ echo ' cd $(srcdir) && $(AUTOMAKE) --gnu'; \ $(am__cd) $(srcdir) && $(AUTOMAKE) --gnu \ && exit 0; \ exit 1;; \ esac; \ done; \ echo ' cd $(top_srcdir) && $(AUTOMAKE) --gnu Makefile'; \ $(am__cd) $(top_srcdir) && \ $(AUTOMAKE) --gnu Makefile .PRECIOUS: Makefile Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status @case '$?' in \ *config.status*) \ echo ' $(SHELL) ./config.status'; \ $(SHELL) ./config.status;; \ *) \ echo ' cd $(top_builddir) && $(SHELL) ./config.status $@ $(am__depfiles_maybe)'; \ cd $(top_builddir) && $(SHELL) ./config.status $@ $(am__depfiles_maybe);; \ esac; $(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES) $(SHELL) ./config.status --recheck $(top_srcdir)/configure: @MAINTAINER_MODE_TRUE@ $(am__configure_deps) $(am__cd) $(srcdir) && $(AUTOCONF) $(ACLOCAL_M4): @MAINTAINER_MODE_TRUE@ $(am__aclocal_m4_deps) $(am__cd) $(srcdir) && $(ACLOCAL) $(ACLOCAL_AMFLAGS) $(am__aclocal_m4_deps): config.h: stamp-h1 @if test ! -f $@; then rm -f stamp-h1; else :; fi @if test ! -f $@; then $(MAKE) $(AM_MAKEFLAGS) stamp-h1; else :; fi stamp-h1: $(srcdir)/config.h.in $(top_builddir)/config.status @rm -f stamp-h1 cd $(top_builddir) && $(SHELL) ./config.status config.h $(srcdir)/config.h.in: @MAINTAINER_MODE_TRUE@ $(am__configure_deps) ($(am__cd) $(top_srcdir) && $(AUTOHEADER)) rm -f stamp-h1 touch $@ distclean-hdr: -rm -f config.h stamp-h1 iok.desktop.in: $(top_builddir)/config.status $(srcdir)/iok.desktop.in.in cd $(top_builddir) && $(SHELL) ./config.status $@ install-ApplicationsDATA: $(Applications_DATA) @$(NORMAL_INSTALL) test -z "$(Applicationsdir)" || $(MKDIR_P) "$(DESTDIR)$(Applicationsdir)" @list='$(Applications_DATA)'; test -n "$(Applicationsdir)" || list=; \ for p in $$list; do \ if test -f "$$p"; then d=; else d="$(srcdir)/"; fi; \ echo "$$d$$p"; \ done | $(am__base_list) | \ while read files; do \ echo " $(INSTALL_DATA) $$files '$(DESTDIR)$(Applicationsdir)'"; \ $(INSTALL_DATA) $$files "$(DESTDIR)$(Applicationsdir)" || exit $$?; \ done uninstall-ApplicationsDATA: @$(NORMAL_UNINSTALL) @list='$(Applications_DATA)'; test -n "$(Applicationsdir)" || list=; \ files=`for p in $$list; do echo $$p; done | sed -e 's|^.*/||'`; \ dir='$(DESTDIR)$(Applicationsdir)'; $(am__uninstall_files_from_dir) install-dist_iokmanDATA: $(dist_iokman_DATA) @$(NORMAL_INSTALL) test -z "$(iokmandir)" || $(MKDIR_P) "$(DESTDIR)$(iokmandir)" @list='$(dist_iokman_DATA)'; test -n "$(iokmandir)" || list=; \ for p in $$list; do \ if test -f "$$p"; then d=; else d="$(srcdir)/"; fi; \ echo "$$d$$p"; \ done | $(am__base_list) | \ while read files; do \ echo " $(INSTALL_DATA) $$files '$(DESTDIR)$(iokmandir)'"; \ $(INSTALL_DATA) $$files "$(DESTDIR)$(iokmandir)" || exit $$?; \ done uninstall-dist_iokmanDATA: @$(NORMAL_UNINSTALL) @list='$(dist_iokman_DATA)'; test -n "$(iokmandir)" || list=; \ files=`for p in $$list; do echo $$p; done | sed -e 's|^.*/||'`; \ dir='$(DESTDIR)$(iokmandir)'; $(am__uninstall_files_from_dir) # This directory's subdirectories are mostly independent; you can cd # into them and run `make' without going through this Makefile. # To change the values of `make' variables: instead of editing Makefiles, # (1) if the variable is set in `config.status', edit `config.status' # (which will cause the Makefiles to be regenerated when you run `make'); # (2) otherwise, pass the desired values on the `make' command line. $(RECURSIVE_TARGETS): @fail= failcom='exit 1'; \ for f in x $$MAKEFLAGS; do \ case $$f in \ *=* | --[!k]*);; \ *k*) failcom='fail=yes';; \ esac; \ done; \ dot_seen=no; \ target=`echo $@ | sed s/-recursive//`; \ list='$(SUBDIRS)'; for subdir in $$list; do \ echo "Making $$target in $$subdir"; \ if test "$$subdir" = "."; then \ dot_seen=yes; \ local_target="$$target-am"; \ else \ local_target="$$target"; \ fi; \ ($(am__cd) $$subdir && $(MAKE) $(AM_MAKEFLAGS) $$local_target) \ || eval $$failcom; \ done; \ if test "$$dot_seen" = "no"; then \ $(MAKE) $(AM_MAKEFLAGS) "$$target-am" || exit 1; \ fi; test -z "$$fail" $(RECURSIVE_CLEAN_TARGETS): @fail= failcom='exit 1'; \ for f in x $$MAKEFLAGS; do \ case $$f in \ *=* | --[!k]*);; \ *k*) failcom='fail=yes';; \ esac; \ done; \ dot_seen=no; \ case "$@" in \ distclean-* | maintainer-clean-*) list='$(DIST_SUBDIRS)' ;; \ *) list='$(SUBDIRS)' ;; \ esac; \ rev=''; for subdir in $$list; do \ if test "$$subdir" = "."; then :; else \ rev="$$subdir $$rev"; \ fi; \ done; \ rev="$$rev ."; \ target=`echo $@ | sed s/-recursive//`; \ for subdir in $$rev; do \ echo "Making $$target in $$subdir"; \ if test "$$subdir" = "."; then \ local_target="$$target-am"; \ else \ local_target="$$target"; \ fi; \ ($(am__cd) $$subdir && $(MAKE) $(AM_MAKEFLAGS) $$local_target) \ || eval $$failcom; \ done && test -z "$$fail" tags-recursive: list='$(SUBDIRS)'; for subdir in $$list; do \ test "$$subdir" = . || ($(am__cd) $$subdir && $(MAKE) $(AM_MAKEFLAGS) tags); \ done ctags-recursive: list='$(SUBDIRS)'; for subdir in $$list; do \ test "$$subdir" = . || ($(am__cd) $$subdir && $(MAKE) $(AM_MAKEFLAGS) ctags); \ done ID: $(HEADERS) $(SOURCES) $(LISP) $(TAGS_FILES) list='$(SOURCES) $(HEADERS) $(LISP) $(TAGS_FILES)'; \ unique=`for i in $$list; do \ if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \ done | \ $(AWK) '{ files[$$0] = 1; nonempty = 1; } \ END { if (nonempty) { for (i in files) print i; }; }'`; \ mkid -fID $$unique tags: TAGS TAGS: tags-recursive $(HEADERS) $(SOURCES) config.h.in $(TAGS_DEPENDENCIES) \ $(TAGS_FILES) $(LISP) set x; \ here=`pwd`; \ if ($(ETAGS) --etags-include --version) >/dev/null 2>&1; then \ include_option=--etags-include; \ empty_fix=.; \ else \ include_option=--include; \ empty_fix=; \ fi; \ list='$(SUBDIRS)'; for subdir in $$list; do \ if test "$$subdir" = .; then :; else \ test ! -f $$subdir/TAGS || \ set "$$@" "$$include_option=$$here/$$subdir/TAGS"; \ fi; \ done; \ list='$(SOURCES) $(HEADERS) config.h.in $(LISP) $(TAGS_FILES)'; \ unique=`for i in $$list; do \ if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \ done | \ $(AWK) '{ files[$$0] = 1; nonempty = 1; } \ END { if (nonempty) { for (i in files) print i; }; }'`; \ shift; \ if test -z "$(ETAGS_ARGS)$$*$$unique"; then :; else \ test -n "$$unique" || unique=$$empty_fix; \ if test $$# -gt 0; then \ $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ "$$@" $$unique; \ else \ $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ $$unique; \ fi; \ fi ctags: CTAGS CTAGS: ctags-recursive $(HEADERS) $(SOURCES) config.h.in $(TAGS_DEPENDENCIES) \ $(TAGS_FILES) $(LISP) list='$(SOURCES) $(HEADERS) config.h.in $(LISP) $(TAGS_FILES)'; \ unique=`for i in $$list; do \ if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \ done | \ $(AWK) '{ files[$$0] = 1; nonempty = 1; } \ END { if (nonempty) { for (i in files) print i; }; }'`; \ test -z "$(CTAGS_ARGS)$$unique" \ || $(CTAGS) $(CTAGSFLAGS) $(AM_CTAGSFLAGS) $(CTAGS_ARGS) \ $$unique GTAGS: here=`$(am__cd) $(top_builddir) && pwd` \ && $(am__cd) $(top_srcdir) \ && gtags -i $(GTAGS_ARGS) "$$here" distclean-tags: -rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags distdir: $(DISTFILES) $(am__remove_distdir) test -d "$(distdir)" || mkdir "$(distdir)" @srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ topsrcdirstrip=`echo "$(top_srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ list='$(DISTFILES)'; \ dist_files=`for file in $$list; do echo $$file; done | \ sed -e "s|^$$srcdirstrip/||;t" \ -e "s|^$$topsrcdirstrip/|$(top_builddir)/|;t"`; \ case $$dist_files in \ */*) $(MKDIR_P) `echo "$$dist_files" | \ sed '/\//!d;s|^|$(distdir)/|;s,/[^/]*$$,,' | \ sort -u` ;; \ esac; \ for file in $$dist_files; do \ if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \ if test -d $$d/$$file; then \ dir=`echo "/$$file" | sed -e 's,/[^/]*$$,,'`; \ if test -d "$(distdir)/$$file"; then \ find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ fi; \ if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \ cp -fpR $(srcdir)/$$file "$(distdir)$$dir" || exit 1; \ find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ fi; \ cp -fpR $$d/$$file "$(distdir)$$dir" || exit 1; \ else \ test -f "$(distdir)/$$file" \ || cp -p $$d/$$file "$(distdir)/$$file" \ || exit 1; \ fi; \ done @list='$(DIST_SUBDIRS)'; for subdir in $$list; do \ if test "$$subdir" = .; then :; else \ test -d "$(distdir)/$$subdir" \ || $(MKDIR_P) "$(distdir)/$$subdir" \ || exit 1; \ fi; \ done @list='$(DIST_SUBDIRS)'; for subdir in $$list; do \ if test "$$subdir" = .; then :; else \ dir1=$$subdir; dir2="$(distdir)/$$subdir"; \ $(am__relativize); \ new_distdir=$$reldir; \ dir1=$$subdir; dir2="$(top_distdir)"; \ $(am__relativize); \ new_top_distdir=$$reldir; \ echo " (cd $$subdir && $(MAKE) $(AM_MAKEFLAGS) top_distdir="$$new_top_distdir" distdir="$$new_distdir" \\"; \ echo " am__remove_distdir=: am__skip_length_check=: am__skip_mode_fix=: distdir)"; \ ($(am__cd) $$subdir && \ $(MAKE) $(AM_MAKEFLAGS) \ top_distdir="$$new_top_distdir" \ distdir="$$new_distdir" \ am__remove_distdir=: \ am__skip_length_check=: \ am__skip_mode_fix=: \ distdir) \ || exit 1; \ fi; \ done $(MAKE) $(AM_MAKEFLAGS) \ top_distdir="$(top_distdir)" distdir="$(distdir)" \ dist-hook -test -n "$(am__skip_mode_fix)" \ || find "$(distdir)" -type d ! -perm -755 \ -exec chmod u+rwx,go+rx {} \; -o \ ! -type d ! -perm -444 -links 1 -exec chmod a+r {} \; -o \ ! -type d ! -perm -400 -exec chmod a+r {} \; -o \ ! -type d ! -perm -444 -exec $(install_sh) -c -m a+r {} {} \; \ || chmod -R a+r "$(distdir)" dist-gzip: distdir tardir=$(distdir) && $(am__tar) | GZIP=$(GZIP_ENV) gzip -c >$(distdir).tar.gz $(am__remove_distdir) dist-bzip2: distdir tardir=$(distdir) && $(am__tar) | BZIP2=$${BZIP2--9} bzip2 -c >$(distdir).tar.bz2 $(am__remove_distdir) dist-lzip: distdir tardir=$(distdir) && $(am__tar) | lzip -c $${LZIP_OPT--9} >$(distdir).tar.lz $(am__remove_distdir) dist-lzma: distdir tardir=$(distdir) && $(am__tar) | lzma -9 -c >$(distdir).tar.lzma $(am__remove_distdir) dist-xz: distdir tardir=$(distdir) && $(am__tar) | XZ_OPT=$${XZ_OPT--e} xz -c >$(distdir).tar.xz $(am__remove_distdir) dist-tarZ: distdir tardir=$(distdir) && $(am__tar) | compress -c >$(distdir).tar.Z $(am__remove_distdir) dist-shar: distdir shar $(distdir) | GZIP=$(GZIP_ENV) gzip -c >$(distdir).shar.gz $(am__remove_distdir) dist-zip: distdir -rm -f $(distdir).zip zip -rq $(distdir).zip $(distdir) $(am__remove_distdir) dist dist-all: distdir tardir=$(distdir) && $(am__tar) | GZIP=$(GZIP_ENV) gzip -c >$(distdir).tar.gz $(am__remove_distdir) # This target untars the dist file and tries a VPATH configuration. Then # it guarantees that the distribution is self-contained by making another # tarfile. distcheck: dist case '$(DIST_ARCHIVES)' in \ *.tar.gz*) \ GZIP=$(GZIP_ENV) gzip -dc $(distdir).tar.gz | $(am__untar) ;;\ *.tar.bz2*) \ bzip2 -dc $(distdir).tar.bz2 | $(am__untar) ;;\ *.tar.lzma*) \ lzma -dc $(distdir).tar.lzma | $(am__untar) ;;\ *.tar.lz*) \ lzip -dc $(distdir).tar.lz | $(am__untar) ;;\ *.tar.xz*) \ xz -dc $(distdir).tar.xz | $(am__untar) ;;\ *.tar.Z*) \ uncompress -c $(distdir).tar.Z | $(am__untar) ;;\ *.shar.gz*) \ GZIP=$(GZIP_ENV) gzip -dc $(distdir).shar.gz | unshar ;;\ *.zip*) \ unzip $(distdir).zip ;;\ esac chmod -R a-w $(distdir); chmod a+w $(distdir) mkdir $(distdir)/_build mkdir $(distdir)/_inst chmod a-w $(distdir) test -d $(distdir)/_build || exit 0; \ dc_install_base=`$(am__cd) $(distdir)/_inst && pwd | sed -e 's,^[^:\\/]:[\\/],/,'` \ && dc_destdir="$${TMPDIR-/tmp}/am-dc-$$$$/" \ && am__cwd=`pwd` \ && $(am__cd) $(distdir)/_build \ && ../configure --srcdir=.. --prefix="$$dc_install_base" \ $(AM_DISTCHECK_CONFIGURE_FLAGS) \ $(DISTCHECK_CONFIGURE_FLAGS) \ && $(MAKE) $(AM_MAKEFLAGS) \ && $(MAKE) $(AM_MAKEFLAGS) dvi \ && $(MAKE) $(AM_MAKEFLAGS) check \ && $(MAKE) $(AM_MAKEFLAGS) install \ && $(MAKE) $(AM_MAKEFLAGS) installcheck \ && $(MAKE) $(AM_MAKEFLAGS) uninstall \ && $(MAKE) $(AM_MAKEFLAGS) distuninstallcheck_dir="$$dc_install_base" \ distuninstallcheck \ && chmod -R a-w "$$dc_install_base" \ && ({ \ (cd ../.. && umask 077 && mkdir "$$dc_destdir") \ && $(MAKE) $(AM_MAKEFLAGS) DESTDIR="$$dc_destdir" install \ && $(MAKE) $(AM_MAKEFLAGS) DESTDIR="$$dc_destdir" uninstall \ && $(MAKE) $(AM_MAKEFLAGS) DESTDIR="$$dc_destdir" \ distuninstallcheck_dir="$$dc_destdir" distuninstallcheck; \ } || { rm -rf "$$dc_destdir"; exit 1; }) \ && rm -rf "$$dc_destdir" \ && $(MAKE) $(AM_MAKEFLAGS) dist \ && rm -rf $(DIST_ARCHIVES) \ && $(MAKE) $(AM_MAKEFLAGS) distcleancheck \ && cd "$$am__cwd" \ || exit 1 $(am__remove_distdir) @(echo "$(distdir) archives ready for distribution: "; \ list='$(DIST_ARCHIVES)'; for i in $$list; do echo $$i; done) | \ sed -e 1h -e 1s/./=/g -e 1p -e 1x -e '$$p' -e '$$x' distuninstallcheck: @test -n '$(distuninstallcheck_dir)' || { \ echo 'ERROR: trying to run $@ with an empty' \ '$$(distuninstallcheck_dir)' >&2; \ exit 1; \ }; \ $(am__cd) '$(distuninstallcheck_dir)' || { \ echo 'ERROR: cannot chdir into $(distuninstallcheck_dir)' >&2; \ exit 1; \ }; \ test `$(am__distuninstallcheck_listfiles) | wc -l` -eq 0 \ || { echo "ERROR: files left after uninstall:" ; \ if test -n "$(DESTDIR)"; then \ echo " (check DESTDIR support)"; \ fi ; \ $(distuninstallcheck_listfiles) ; \ exit 1; } >&2 distcleancheck: distclean @if test '$(srcdir)' = . ; then \ echo "ERROR: distcleancheck can only run from a VPATH build" ; \ exit 1 ; \ fi @test `$(distcleancheck_listfiles) | wc -l` -eq 0 \ || { echo "ERROR: files left in build directory after distclean:" ; \ $(distcleancheck_listfiles) ; \ exit 1; } >&2 check-am: all-am check: check-recursive all-am: Makefile $(DATA) config.h installdirs: installdirs-recursive installdirs-am: for dir in "$(DESTDIR)$(Applicationsdir)" "$(DESTDIR)$(iokmandir)"; do \ test -z "$$dir" || $(MKDIR_P) "$$dir"; \ done install: install-recursive install-exec: install-exec-recursive install-data: install-data-recursive uninstall: uninstall-recursive install-am: all-am @$(MAKE) $(AM_MAKEFLAGS) install-exec-am install-data-am installcheck: installcheck-recursive install-strip: if test -z '$(STRIP)'; then \ $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \ install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \ install; \ else \ $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \ install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \ "INSTALL_PROGRAM_ENV=STRIPPROG='$(STRIP)'" install; \ fi mostlyclean-generic: clean-generic: distclean-generic: -test -z "$(CONFIG_CLEAN_FILES)" || rm -f $(CONFIG_CLEAN_FILES) -test . = "$(srcdir)" || test -z "$(CONFIG_CLEAN_VPATH_FILES)" || rm -f $(CONFIG_CLEAN_VPATH_FILES) -test -z "$(DISTCLEANFILES)" || rm -f $(DISTCLEANFILES) maintainer-clean-generic: @echo "This command is intended for maintainers to use" @echo "it deletes files that may require special tools to rebuild." clean: clean-recursive clean-am: clean-generic mostlyclean-am distclean: distclean-recursive -rm -f $(am__CONFIG_DISTCLEAN_FILES) -rm -f Makefile distclean-am: clean-am distclean-generic distclean-hdr distclean-tags dvi: dvi-recursive dvi-am: html: html-recursive html-am: info: info-recursive info-am: install-data-am: install-ApplicationsDATA install-data-local \ install-dist_iokmanDATA install-dvi: install-dvi-recursive install-dvi-am: install-exec-am: install-html: install-html-recursive install-html-am: install-info: install-info-recursive install-info-am: install-man: install-pdf: install-pdf-recursive install-pdf-am: install-ps: install-ps-recursive install-ps-am: installcheck-am: maintainer-clean: maintainer-clean-recursive -rm -f $(am__CONFIG_DISTCLEAN_FILES) -rm -rf $(top_srcdir)/autom4te.cache -rm -f Makefile maintainer-clean-am: distclean-am maintainer-clean-generic mostlyclean: mostlyclean-recursive mostlyclean-am: mostlyclean-generic pdf: pdf-recursive pdf-am: ps: ps-recursive ps-am: uninstall-am: uninstall-ApplicationsDATA uninstall-dist_iokmanDATA .MAKE: $(RECURSIVE_CLEAN_TARGETS) $(RECURSIVE_TARGETS) all \ ctags-recursive install-am install-strip tags-recursive .PHONY: $(RECURSIVE_CLEAN_TARGETS) $(RECURSIVE_TARGETS) CTAGS GTAGS \ all all-am am--refresh check check-am clean clean-generic \ ctags ctags-recursive dist dist-all dist-bzip2 dist-gzip \ dist-hook dist-lzip dist-lzma dist-shar dist-tarZ dist-xz \ dist-zip distcheck distclean distclean-generic distclean-hdr \ distclean-tags distcleancheck distdir distuninstallcheck dvi \ dvi-am html html-am info info-am install \ install-ApplicationsDATA install-am install-data \ install-data-am install-data-local install-dist_iokmanDATA \ install-dvi install-dvi-am install-exec install-exec-am \ install-html install-html-am install-info install-info-am \ install-man install-pdf install-pdf-am install-ps \ install-ps-am install-strip installcheck installcheck-am \ installdirs installdirs-am maintainer-clean \ maintainer-clean-generic mostlyclean mostlyclean-generic pdf \ pdf-am ps ps-am tags tags-recursive uninstall \ uninstall-ApplicationsDATA uninstall-am \ uninstall-dist_iokmanDATA @INTLTOOL_DESKTOP_RULE@ install-data-local: @$(NORMAL_INSTALL) dist-hook: $(MAKE) -C "$(srcdir)/po" "$(GETTEXT_PACKAGE).pot" cp "$(srcdir)/po/$(GETTEXT_PACKAGE).pot" "$(distdir)/po/" # Tell versions [3.59,3.63) of GNU make to not export all variables. # Otherwise a system limit (for SysV at least) may be exceeded. .NOEXPORT: iok-2.1.3/data/0000775000076400007640000000000011776460267010243 500000000000000iok-2.1.3/data/Makefile.in0000664000076400007640000004205011776460255012226 00000000000000# Makefile.in generated by automake 1.11.3 from Makefile.am. # @configure_input@ # Copyright (C) 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, # 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2010, 2011 Free Software # Foundation, Inc. # This Makefile.in is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, # with or without modifications, as long as this notice is preserved. # This program is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY, to the extent permitted by law; without # even the implied warranty of MERCHANTABILITY or FITNESS FOR A # PARTICULAR PURPOSE. @SET_MAKE@ VPATH = @srcdir@ pkgdatadir = $(datadir)/@PACKAGE@ pkgincludedir = $(includedir)/@PACKAGE@ pkglibdir = $(libdir)/@PACKAGE@ pkglibexecdir = $(libexecdir)/@PACKAGE@ am__cd = CDPATH="$${ZSH_VERSION+.}$(PATH_SEPARATOR)" && cd install_sh_DATA = $(install_sh) -c -m 644 install_sh_PROGRAM = $(install_sh) -c install_sh_SCRIPT = $(install_sh) -c INSTALL_HEADER = $(INSTALL_DATA) transform = $(program_transform_name) NORMAL_INSTALL = : PRE_INSTALL = : POST_INSTALL = : NORMAL_UNINSTALL = : PRE_UNINSTALL = : POST_UNINSTALL = : subdir = data DIST_COMMON = $(srcdir)/Makefile.am $(srcdir)/Makefile.in ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 am__aclocal_m4_deps = $(top_srcdir)/configure.in am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \ $(ACLOCAL_M4) mkinstalldirs = $(SHELL) $(top_srcdir)/mkinstalldirs CONFIG_HEADER = $(top_builddir)/config.h CONFIG_CLEAN_FILES = CONFIG_CLEAN_VPATH_FILES = SOURCES = DIST_SOURCES = RECURSIVE_TARGETS = all-recursive check-recursive dvi-recursive \ html-recursive info-recursive install-data-recursive \ install-dvi-recursive install-exec-recursive \ install-html-recursive install-info-recursive \ install-pdf-recursive install-ps-recursive install-recursive \ installcheck-recursive installdirs-recursive pdf-recursive \ ps-recursive uninstall-recursive RECURSIVE_CLEAN_TARGETS = mostlyclean-recursive clean-recursive \ distclean-recursive maintainer-clean-recursive AM_RECURSIVE_TARGETS = $(RECURSIVE_TARGETS:-recursive=) \ $(RECURSIVE_CLEAN_TARGETS:-recursive=) tags TAGS ctags CTAGS \ distdir ETAGS = etags CTAGS = ctags DIST_SUBDIRS = $(SUBDIRS) DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST) am__relativize = \ dir0=`pwd`; \ sed_first='s,^\([^/]*\)/.*$$,\1,'; \ sed_rest='s,^[^/]*/*,,'; \ sed_last='s,^.*/\([^/]*\)$$,\1,'; \ sed_butlast='s,/*[^/]*$$,,'; \ while test -n "$$dir1"; do \ first=`echo "$$dir1" | sed -e "$$sed_first"`; \ if test "$$first" != "."; then \ if test "$$first" = ".."; then \ dir2=`echo "$$dir0" | sed -e "$$sed_last"`/"$$dir2"; \ dir0=`echo "$$dir0" | sed -e "$$sed_butlast"`; \ else \ first2=`echo "$$dir2" | sed -e "$$sed_first"`; \ if test "$$first2" = "$$first"; then \ dir2=`echo "$$dir2" | sed -e "$$sed_rest"`; \ else \ dir2="../$$dir2"; \ fi; \ dir0="$$dir0"/"$$first"; \ fi; \ fi; \ dir1=`echo "$$dir1" | sed -e "$$sed_rest"`; \ done; \ reldir="$$dir2" ACLOCAL = @ACLOCAL@ ALL_LINGUAS = @ALL_LINGUAS@ AMTAR = @AMTAR@ AM_DEFAULT_VERBOSITY = @AM_DEFAULT_VERBOSITY@ AUTOCONF = @AUTOCONF@ AUTOHEADER = @AUTOHEADER@ AUTOMAKE = @AUTOMAKE@ AWK = @AWK@ CATALOGS = @CATALOGS@ CATOBJEXT = @CATOBJEXT@ CC = @CC@ CCDEPMODE = @CCDEPMODE@ CFLAGS = @CFLAGS@ CPP = @CPP@ CPPFLAGS = @CPPFLAGS@ CYGPATH_W = @CYGPATH_W@ DATADIRNAME = @DATADIRNAME@ DEFS = @DEFS@ DEPDIR = @DEPDIR@ ECHO_C = @ECHO_C@ ECHO_N = @ECHO_N@ ECHO_T = @ECHO_T@ EGREP = @EGREP@ EXEEXT = @EXEEXT@ GETTEXT_PACKAGE = @GETTEXT_PACKAGE@ GMOFILES = @GMOFILES@ GMSGFMT = @GMSGFMT@ GREP = @GREP@ GTK3_CFLAGS = @GTK3_CFLAGS@ GTK3_LIBS = @GTK3_LIBS@ INSTALL = @INSTALL@ INSTALL_DATA = @INSTALL_DATA@ INSTALL_PROGRAM = @INSTALL_PROGRAM@ INSTALL_SCRIPT = @INSTALL_SCRIPT@ INSTALL_STRIP_PROGRAM = @INSTALL_STRIP_PROGRAM@ INSTOBJEXT = @INSTOBJEXT@ INTLLIBS = @INTLLIBS@ INTLTOOL_EXTRACT = @INTLTOOL_EXTRACT@ INTLTOOL_MERGE = @INTLTOOL_MERGE@ INTLTOOL_PERL = @INTLTOOL_PERL@ INTLTOOL_UPDATE = @INTLTOOL_UPDATE@ INTLTOOL_V_MERGE = @INTLTOOL_V_MERGE@ INTLTOOL_V_MERGE_OPTIONS = @INTLTOOL_V_MERGE_OPTIONS@ INTLTOOL__v_MERGE_ = @INTLTOOL__v_MERGE_@ INTLTOOL__v_MERGE_0 = @INTLTOOL__v_MERGE_0@ LDFLAGS = @LDFLAGS@ LIBOBJS = @LIBOBJS@ LIBS = @LIBS@ LIBXML2_CFLAGS = @LIBXML2_CFLAGS@ LIBXML2_LIBS = @LIBXML2_LIBS@ LTLIBOBJS = @LTLIBOBJS@ MAINT = @MAINT@ MAKEINFO = @MAKEINFO@ MKDIR_P = @MKDIR_P@ MKINSTALLDIRS = @MKINSTALLDIRS@ MSGFMT = @MSGFMT@ MSGFMT_OPTS = @MSGFMT_OPTS@ MSGMERGE = @MSGMERGE@ OBJEXT = @OBJEXT@ PACKAGE = @PACKAGE@ PACKAGE_BUGREPORT = @PACKAGE_BUGREPORT@ PACKAGE_NAME = @PACKAGE_NAME@ PACKAGE_STRING = @PACKAGE_STRING@ PACKAGE_TARNAME = @PACKAGE_TARNAME@ PACKAGE_URL = @PACKAGE_URL@ PACKAGE_VERSION = @PACKAGE_VERSION@ PATH_SEPARATOR = @PATH_SEPARATOR@ PKG_CONFIG = @PKG_CONFIG@ PKG_CONFIG_LIBDIR = @PKG_CONFIG_LIBDIR@ PKG_CONFIG_PATH = @PKG_CONFIG_PATH@ POFILES = @POFILES@ POSUB = @POSUB@ PO_IN_DATADIR_FALSE = @PO_IN_DATADIR_FALSE@ PO_IN_DATADIR_TRUE = @PO_IN_DATADIR_TRUE@ SET_MAKE = @SET_MAKE@ SHELL = @SHELL@ STRIP = @STRIP@ UNIQUE3_CFLAGS = @UNIQUE3_CFLAGS@ UNIQUE3_LIBS = @UNIQUE3_LIBS@ USE_NLS = @USE_NLS@ VERSION = @VERSION@ XGETTEXT = @XGETTEXT@ XMKMF = @XMKMF@ abs_builddir = @abs_builddir@ abs_srcdir = @abs_srcdir@ abs_top_builddir = @abs_top_builddir@ abs_top_srcdir = @abs_top_srcdir@ ac_ct_CC = @ac_ct_CC@ am__include = @am__include@ am__leading_dot = @am__leading_dot@ am__quote = @am__quote@ am__tar = @am__tar@ am__untar = @am__untar@ bindir = @bindir@ build_alias = @build_alias@ builddir = @builddir@ datadir = @datadir@ datarootdir = @datarootdir@ docdir = @docdir@ dvidir = @dvidir@ exec_prefix = @exec_prefix@ host_alias = @host_alias@ htmldir = @htmldir@ includedir = @includedir@ infodir = @infodir@ install_sh = @install_sh@ intltool__v_merge_options_ = @intltool__v_merge_options_@ intltool__v_merge_options_0 = @intltool__v_merge_options_0@ libdir = @libdir@ libexecdir = @libexecdir@ localedir = @localedir@ localstatedir = @localstatedir@ mandir = @mandir@ mkdir_p = @mkdir_p@ oldincludedir = @oldincludedir@ pdfdir = @pdfdir@ prefix = @prefix@ program_transform_name = @program_transform_name@ psdir = @psdir@ sbindir = @sbindir@ sharedstatedir = @sharedstatedir@ srcdir = @srcdir@ sysconfdir = @sysconfdir@ target_alias = @target_alias@ top_build_prefix = @top_build_prefix@ top_builddir = @top_builddir@ top_srcdir = @top_srcdir@ # vim:set noet ts=4: # SUBDIRS = \ icons \ $(NULL) all: all-recursive .SUFFIXES: $(srcdir)/Makefile.in: @MAINTAINER_MODE_TRUE@ $(srcdir)/Makefile.am $(am__configure_deps) @for dep in $?; do \ case '$(am__configure_deps)' in \ *$$dep*) \ ( cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh ) \ && { if test -f $@; then exit 0; else break; fi; }; \ exit 1;; \ esac; \ done; \ echo ' cd $(top_srcdir) && $(AUTOMAKE) --gnu data/Makefile'; \ $(am__cd) $(top_srcdir) && \ $(AUTOMAKE) --gnu data/Makefile .PRECIOUS: Makefile Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status @case '$?' in \ *config.status*) \ cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh;; \ *) \ echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe)'; \ cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe);; \ esac; $(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES) cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh $(top_srcdir)/configure: @MAINTAINER_MODE_TRUE@ $(am__configure_deps) cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh $(ACLOCAL_M4): @MAINTAINER_MODE_TRUE@ $(am__aclocal_m4_deps) cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh $(am__aclocal_m4_deps): # This directory's subdirectories are mostly independent; you can cd # into them and run `make' without going through this Makefile. # To change the values of `make' variables: instead of editing Makefiles, # (1) if the variable is set in `config.status', edit `config.status' # (which will cause the Makefiles to be regenerated when you run `make'); # (2) otherwise, pass the desired values on the `make' command line. $(RECURSIVE_TARGETS): @fail= failcom='exit 1'; \ for f in x $$MAKEFLAGS; do \ case $$f in \ *=* | --[!k]*);; \ *k*) failcom='fail=yes';; \ esac; \ done; \ dot_seen=no; \ target=`echo $@ | sed s/-recursive//`; \ list='$(SUBDIRS)'; for subdir in $$list; do \ echo "Making $$target in $$subdir"; \ if test "$$subdir" = "."; then \ dot_seen=yes; \ local_target="$$target-am"; \ else \ local_target="$$target"; \ fi; \ ($(am__cd) $$subdir && $(MAKE) $(AM_MAKEFLAGS) $$local_target) \ || eval $$failcom; \ done; \ if test "$$dot_seen" = "no"; then \ $(MAKE) $(AM_MAKEFLAGS) "$$target-am" || exit 1; \ fi; test -z "$$fail" $(RECURSIVE_CLEAN_TARGETS): @fail= failcom='exit 1'; \ for f in x $$MAKEFLAGS; do \ case $$f in \ *=* | --[!k]*);; \ *k*) failcom='fail=yes';; \ esac; \ done; \ dot_seen=no; \ case "$@" in \ distclean-* | maintainer-clean-*) list='$(DIST_SUBDIRS)' ;; \ *) list='$(SUBDIRS)' ;; \ esac; \ rev=''; for subdir in $$list; do \ if test "$$subdir" = "."; then :; else \ rev="$$subdir $$rev"; \ fi; \ done; \ rev="$$rev ."; \ target=`echo $@ | sed s/-recursive//`; \ for subdir in $$rev; do \ echo "Making $$target in $$subdir"; \ if test "$$subdir" = "."; then \ local_target="$$target-am"; \ else \ local_target="$$target"; \ fi; \ ($(am__cd) $$subdir && $(MAKE) $(AM_MAKEFLAGS) $$local_target) \ || eval $$failcom; \ done && test -z "$$fail" tags-recursive: list='$(SUBDIRS)'; for subdir in $$list; do \ test "$$subdir" = . || ($(am__cd) $$subdir && $(MAKE) $(AM_MAKEFLAGS) tags); \ done ctags-recursive: list='$(SUBDIRS)'; for subdir in $$list; do \ test "$$subdir" = . || ($(am__cd) $$subdir && $(MAKE) $(AM_MAKEFLAGS) ctags); \ done ID: $(HEADERS) $(SOURCES) $(LISP) $(TAGS_FILES) list='$(SOURCES) $(HEADERS) $(LISP) $(TAGS_FILES)'; \ unique=`for i in $$list; do \ if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \ done | \ $(AWK) '{ files[$$0] = 1; nonempty = 1; } \ END { if (nonempty) { for (i in files) print i; }; }'`; \ mkid -fID $$unique tags: TAGS TAGS: tags-recursive $(HEADERS) $(SOURCES) $(TAGS_DEPENDENCIES) \ $(TAGS_FILES) $(LISP) set x; \ here=`pwd`; \ if ($(ETAGS) --etags-include --version) >/dev/null 2>&1; then \ include_option=--etags-include; \ empty_fix=.; \ else \ include_option=--include; \ empty_fix=; \ fi; \ list='$(SUBDIRS)'; for subdir in $$list; do \ if test "$$subdir" = .; then :; else \ test ! -f $$subdir/TAGS || \ set "$$@" "$$include_option=$$here/$$subdir/TAGS"; \ fi; \ done; \ list='$(SOURCES) $(HEADERS) $(LISP) $(TAGS_FILES)'; \ unique=`for i in $$list; do \ if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \ done | \ $(AWK) '{ files[$$0] = 1; nonempty = 1; } \ END { if (nonempty) { for (i in files) print i; }; }'`; \ shift; \ if test -z "$(ETAGS_ARGS)$$*$$unique"; then :; else \ test -n "$$unique" || unique=$$empty_fix; \ if test $$# -gt 0; then \ $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ "$$@" $$unique; \ else \ $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ $$unique; \ fi; \ fi ctags: CTAGS CTAGS: ctags-recursive $(HEADERS) $(SOURCES) $(TAGS_DEPENDENCIES) \ $(TAGS_FILES) $(LISP) list='$(SOURCES) $(HEADERS) $(LISP) $(TAGS_FILES)'; \ unique=`for i in $$list; do \ if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \ done | \ $(AWK) '{ files[$$0] = 1; nonempty = 1; } \ END { if (nonempty) { for (i in files) print i; }; }'`; \ test -z "$(CTAGS_ARGS)$$unique" \ || $(CTAGS) $(CTAGSFLAGS) $(AM_CTAGSFLAGS) $(CTAGS_ARGS) \ $$unique GTAGS: here=`$(am__cd) $(top_builddir) && pwd` \ && $(am__cd) $(top_srcdir) \ && gtags -i $(GTAGS_ARGS) "$$here" distclean-tags: -rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags distdir: $(DISTFILES) @srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ topsrcdirstrip=`echo "$(top_srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ list='$(DISTFILES)'; \ dist_files=`for file in $$list; do echo $$file; done | \ sed -e "s|^$$srcdirstrip/||;t" \ -e "s|^$$topsrcdirstrip/|$(top_builddir)/|;t"`; \ case $$dist_files in \ */*) $(MKDIR_P) `echo "$$dist_files" | \ sed '/\//!d;s|^|$(distdir)/|;s,/[^/]*$$,,' | \ sort -u` ;; \ esac; \ for file in $$dist_files; do \ if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \ if test -d $$d/$$file; then \ dir=`echo "/$$file" | sed -e 's,/[^/]*$$,,'`; \ if test -d "$(distdir)/$$file"; then \ find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ fi; \ if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \ cp -fpR $(srcdir)/$$file "$(distdir)$$dir" || exit 1; \ find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ fi; \ cp -fpR $$d/$$file "$(distdir)$$dir" || exit 1; \ else \ test -f "$(distdir)/$$file" \ || cp -p $$d/$$file "$(distdir)/$$file" \ || exit 1; \ fi; \ done @list='$(DIST_SUBDIRS)'; for subdir in $$list; do \ if test "$$subdir" = .; then :; else \ test -d "$(distdir)/$$subdir" \ || $(MKDIR_P) "$(distdir)/$$subdir" \ || exit 1; \ fi; \ done @list='$(DIST_SUBDIRS)'; for subdir in $$list; do \ if test "$$subdir" = .; then :; else \ dir1=$$subdir; dir2="$(distdir)/$$subdir"; \ $(am__relativize); \ new_distdir=$$reldir; \ dir1=$$subdir; dir2="$(top_distdir)"; \ $(am__relativize); \ new_top_distdir=$$reldir; \ echo " (cd $$subdir && $(MAKE) $(AM_MAKEFLAGS) top_distdir="$$new_top_distdir" distdir="$$new_distdir" \\"; \ echo " am__remove_distdir=: am__skip_length_check=: am__skip_mode_fix=: distdir)"; \ ($(am__cd) $$subdir && \ $(MAKE) $(AM_MAKEFLAGS) \ top_distdir="$$new_top_distdir" \ distdir="$$new_distdir" \ am__remove_distdir=: \ am__skip_length_check=: \ am__skip_mode_fix=: \ distdir) \ || exit 1; \ fi; \ done check-am: all-am check: check-recursive all-am: Makefile installdirs: installdirs-recursive installdirs-am: install: install-recursive install-exec: install-exec-recursive install-data: install-data-recursive uninstall: uninstall-recursive install-am: all-am @$(MAKE) $(AM_MAKEFLAGS) install-exec-am install-data-am installcheck: installcheck-recursive install-strip: if test -z '$(STRIP)'; then \ $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \ install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \ install; \ else \ $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \ install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \ "INSTALL_PROGRAM_ENV=STRIPPROG='$(STRIP)'" install; \ fi mostlyclean-generic: clean-generic: distclean-generic: -test -z "$(CONFIG_CLEAN_FILES)" || rm -f $(CONFIG_CLEAN_FILES) -test . = "$(srcdir)" || test -z "$(CONFIG_CLEAN_VPATH_FILES)" || rm -f $(CONFIG_CLEAN_VPATH_FILES) maintainer-clean-generic: @echo "This command is intended for maintainers to use" @echo "it deletes files that may require special tools to rebuild." clean: clean-recursive clean-am: clean-generic mostlyclean-am distclean: distclean-recursive -rm -f Makefile distclean-am: clean-am distclean-generic distclean-tags dvi: dvi-recursive dvi-am: html: html-recursive html-am: info: info-recursive info-am: install-data-am: install-dvi: install-dvi-recursive install-dvi-am: install-exec-am: install-html: install-html-recursive install-html-am: install-info: install-info-recursive install-info-am: install-man: install-pdf: install-pdf-recursive install-pdf-am: install-ps: install-ps-recursive install-ps-am: installcheck-am: maintainer-clean: maintainer-clean-recursive -rm -f Makefile maintainer-clean-am: distclean-am maintainer-clean-generic mostlyclean: mostlyclean-recursive mostlyclean-am: mostlyclean-generic pdf: pdf-recursive pdf-am: ps: ps-recursive ps-am: uninstall-am: .MAKE: $(RECURSIVE_CLEAN_TARGETS) $(RECURSIVE_TARGETS) ctags-recursive \ install-am install-strip tags-recursive .PHONY: $(RECURSIVE_CLEAN_TARGETS) $(RECURSIVE_TARGETS) CTAGS GTAGS \ all all-am check check-am clean clean-generic ctags \ ctags-recursive distclean distclean-generic distclean-tags \ distdir dvi dvi-am html html-am info info-am install \ install-am install-data install-data-am install-dvi \ install-dvi-am install-exec install-exec-am install-html \ install-html-am install-info install-info-am install-man \ install-pdf install-pdf-am install-ps install-ps-am \ install-strip installcheck installcheck-am installdirs \ installdirs-am maintainer-clean maintainer-clean-generic \ mostlyclean mostlyclean-generic pdf pdf-am ps ps-am tags \ tags-recursive uninstall uninstall-am # Tell versions [3.59,3.63) of GNU make to not export all variables. # Otherwise a system limit (for SysV at least) may be exceeded. .NOEXPORT: iok-2.1.3/data/Makefile.am0000644000076400007640000000006611775560316012212 00000000000000# vim:set noet ts=4: # SUBDIRS = \ icons \ $(NULL) iok-2.1.3/data/icons/0000775000076400007640000000000011776460267011356 500000000000000iok-2.1.3/data/icons/scalable/0000775000076400007640000000000011776460267013124 500000000000000iok-2.1.3/data/icons/scalable/iok.svg0000644000076400007640000000564611775560316014353 00000000000000 image/svg+xml iok-2.1.3/data/icons/Makefile.in0000664000076400007640000005003411776460255013342 00000000000000# Makefile.in generated by automake 1.11.3 from Makefile.am. # @configure_input@ # Copyright (C) 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, # 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2010, 2011 Free Software # Foundation, Inc. # This Makefile.in is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, # with or without modifications, as long as this notice is preserved. # This program is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY, to the extent permitted by law; without # even the implied warranty of MERCHANTABILITY or FITNESS FOR A # PARTICULAR PURPOSE. @SET_MAKE@ VPATH = @srcdir@ pkgdatadir = $(datadir)/@PACKAGE@ pkgincludedir = $(includedir)/@PACKAGE@ pkglibdir = $(libdir)/@PACKAGE@ pkglibexecdir = $(libexecdir)/@PACKAGE@ am__cd = CDPATH="$${ZSH_VERSION+.}$(PATH_SEPARATOR)" && cd install_sh_DATA = $(install_sh) -c -m 644 install_sh_PROGRAM = $(install_sh) -c install_sh_SCRIPT = $(install_sh) -c INSTALL_HEADER = $(INSTALL_DATA) transform = $(program_transform_name) NORMAL_INSTALL = : PRE_INSTALL = : POST_INSTALL = : NORMAL_UNINSTALL = : PRE_UNINSTALL = : POST_UNINSTALL = : subdir = data/icons DIST_COMMON = $(srcdir)/Makefile.am $(srcdir)/Makefile.in ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 am__aclocal_m4_deps = $(top_srcdir)/configure.in am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \ $(ACLOCAL_M4) mkinstalldirs = $(SHELL) $(top_srcdir)/mkinstalldirs CONFIG_HEADER = $(top_builddir)/config.h CONFIG_CLEAN_FILES = CONFIG_CLEAN_VPATH_FILES = SOURCES = DIST_SOURCES = am__vpath_adj_setup = srcdirstrip=`echo "$(srcdir)" | sed 's|.|.|g'`; am__vpath_adj = case $$p in \ $(srcdir)/*) f=`echo "$$p" | sed "s|^$$srcdirstrip/||"`;; \ *) f=$$p;; \ esac; am__strip_dir = f=`echo $$p | sed -e 's|^.*/||'`; am__install_max = 40 am__nobase_strip_setup = \ srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*|]/\\\\&/g'` am__nobase_strip = \ for p in $$list; do echo "$$p"; done | sed -e "s|$$srcdirstrip/||" am__nobase_list = $(am__nobase_strip_setup); \ for p in $$list; do echo "$$p $$p"; done | \ sed "s| $$srcdirstrip/| |;"' / .*\//!s/ .*/ ./; s,\( .*\)/[^/]*$$,\1,' | \ $(AWK) 'BEGIN { files["."] = "" } { files[$$2] = files[$$2] " " $$1; \ if (++n[$$2] == $(am__install_max)) \ { print $$2, files[$$2]; n[$$2] = 0; files[$$2] = "" } } \ END { for (dir in files) print dir, files[dir] }' am__base_list = \ sed '$$!N;$$!N;$$!N;$$!N;$$!N;$$!N;$$!N;s/\n/ /g' | \ sed '$$!N;$$!N;$$!N;$$!N;s/\n/ /g' am__uninstall_files_from_dir = { \ test -z "$$files" \ || { test ! -d "$$dir" && test ! -f "$$dir" && test ! -r "$$dir"; } \ || { echo " ( cd '$$dir' && rm -f" $$files ")"; \ $(am__cd) "$$dir" && rm -f $$files; }; \ } am__installdirs = "$(DESTDIR)$(hicolor_icon_16dir)" \ "$(DESTDIR)$(hicolor_icon_22dir)" \ "$(DESTDIR)$(hicolor_icon_24dir)" \ "$(DESTDIR)$(hicolor_icon_32dir)" \ "$(DESTDIR)$(hicolor_icon_48dir)" \ "$(DESTDIR)$(hicolor_icon_scalabledir)" \ "$(DESTDIR)$(iconsdir)" "$(DESTDIR)$(sysiconsdir)" DATA = $(hicolor_icon_16_DATA) $(hicolor_icon_22_DATA) \ $(hicolor_icon_24_DATA) $(hicolor_icon_32_DATA) \ $(hicolor_icon_48_DATA) $(hicolor_icon_scalable_DATA) \ $(icons_DATA) $(sysicons_DATA) DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST) ACLOCAL = @ACLOCAL@ ALL_LINGUAS = @ALL_LINGUAS@ AMTAR = @AMTAR@ AM_DEFAULT_VERBOSITY = @AM_DEFAULT_VERBOSITY@ AUTOCONF = @AUTOCONF@ AUTOHEADER = @AUTOHEADER@ AUTOMAKE = @AUTOMAKE@ AWK = @AWK@ CATALOGS = @CATALOGS@ CATOBJEXT = @CATOBJEXT@ CC = @CC@ CCDEPMODE = @CCDEPMODE@ CFLAGS = @CFLAGS@ CPP = @CPP@ CPPFLAGS = @CPPFLAGS@ CYGPATH_W = @CYGPATH_W@ DATADIRNAME = @DATADIRNAME@ DEFS = @DEFS@ DEPDIR = @DEPDIR@ ECHO_C = @ECHO_C@ ECHO_N = @ECHO_N@ ECHO_T = @ECHO_T@ EGREP = @EGREP@ EXEEXT = @EXEEXT@ GETTEXT_PACKAGE = @GETTEXT_PACKAGE@ GMOFILES = @GMOFILES@ GMSGFMT = @GMSGFMT@ GREP = @GREP@ GTK3_CFLAGS = @GTK3_CFLAGS@ GTK3_LIBS = @GTK3_LIBS@ INSTALL = @INSTALL@ INSTALL_DATA = @INSTALL_DATA@ INSTALL_PROGRAM = @INSTALL_PROGRAM@ INSTALL_SCRIPT = @INSTALL_SCRIPT@ INSTALL_STRIP_PROGRAM = @INSTALL_STRIP_PROGRAM@ INSTOBJEXT = @INSTOBJEXT@ INTLLIBS = @INTLLIBS@ INTLTOOL_EXTRACT = @INTLTOOL_EXTRACT@ INTLTOOL_MERGE = @INTLTOOL_MERGE@ INTLTOOL_PERL = @INTLTOOL_PERL@ INTLTOOL_UPDATE = @INTLTOOL_UPDATE@ INTLTOOL_V_MERGE = @INTLTOOL_V_MERGE@ INTLTOOL_V_MERGE_OPTIONS = @INTLTOOL_V_MERGE_OPTIONS@ INTLTOOL__v_MERGE_ = @INTLTOOL__v_MERGE_@ INTLTOOL__v_MERGE_0 = @INTLTOOL__v_MERGE_0@ LDFLAGS = @LDFLAGS@ LIBOBJS = @LIBOBJS@ LIBS = @LIBS@ LIBXML2_CFLAGS = @LIBXML2_CFLAGS@ LIBXML2_LIBS = @LIBXML2_LIBS@ LTLIBOBJS = @LTLIBOBJS@ MAINT = @MAINT@ MAKEINFO = @MAKEINFO@ MKDIR_P = @MKDIR_P@ MKINSTALLDIRS = @MKINSTALLDIRS@ MSGFMT = @MSGFMT@ MSGFMT_OPTS = @MSGFMT_OPTS@ MSGMERGE = @MSGMERGE@ OBJEXT = @OBJEXT@ PACKAGE = @PACKAGE@ PACKAGE_BUGREPORT = @PACKAGE_BUGREPORT@ PACKAGE_NAME = @PACKAGE_NAME@ PACKAGE_STRING = @PACKAGE_STRING@ PACKAGE_TARNAME = @PACKAGE_TARNAME@ PACKAGE_URL = @PACKAGE_URL@ PACKAGE_VERSION = @PACKAGE_VERSION@ PATH_SEPARATOR = @PATH_SEPARATOR@ PKG_CONFIG = @PKG_CONFIG@ PKG_CONFIG_LIBDIR = @PKG_CONFIG_LIBDIR@ PKG_CONFIG_PATH = @PKG_CONFIG_PATH@ POFILES = @POFILES@ POSUB = @POSUB@ PO_IN_DATADIR_FALSE = @PO_IN_DATADIR_FALSE@ PO_IN_DATADIR_TRUE = @PO_IN_DATADIR_TRUE@ SET_MAKE = @SET_MAKE@ SHELL = @SHELL@ STRIP = @STRIP@ UNIQUE3_CFLAGS = @UNIQUE3_CFLAGS@ UNIQUE3_LIBS = @UNIQUE3_LIBS@ USE_NLS = @USE_NLS@ VERSION = @VERSION@ XGETTEXT = @XGETTEXT@ XMKMF = @XMKMF@ abs_builddir = @abs_builddir@ abs_srcdir = @abs_srcdir@ abs_top_builddir = @abs_top_builddir@ abs_top_srcdir = @abs_top_srcdir@ ac_ct_CC = @ac_ct_CC@ am__include = @am__include@ am__leading_dot = @am__leading_dot@ am__quote = @am__quote@ am__tar = @am__tar@ am__untar = @am__untar@ bindir = @bindir@ build_alias = @build_alias@ builddir = @builddir@ datadir = @datadir@ datarootdir = @datarootdir@ docdir = @docdir@ dvidir = @dvidir@ exec_prefix = @exec_prefix@ host_alias = @host_alias@ htmldir = @htmldir@ includedir = @includedir@ infodir = @infodir@ install_sh = @install_sh@ intltool__v_merge_options_ = @intltool__v_merge_options_@ intltool__v_merge_options_0 = @intltool__v_merge_options_0@ libdir = @libdir@ libexecdir = @libexecdir@ localedir = @localedir@ localstatedir = @localstatedir@ mandir = @mandir@ mkdir_p = @mkdir_p@ oldincludedir = @oldincludedir@ pdfdir = @pdfdir@ prefix = @prefix@ program_transform_name = @program_transform_name@ psdir = @psdir@ sbindir = @sbindir@ sharedstatedir = @sharedstatedir@ srcdir = @srcdir@ sysconfdir = @sysconfdir@ target_alias = @target_alias@ top_build_prefix = @top_build_prefix@ top_builddir = @top_builddir@ top_srcdir = @top_srcdir@ # vim:set noet ts=4: icons_DATA = \ $(NULL) iconsdir = $(pkgdatadir)/icons sysicons_DATA = \ $(NULL) sysiconsdir = $(datadir)/pixmaps hicolor_icon_16_DATA = \ 16/iok.png \ $(NULL) hicolor_icon_16dir = $(datadir)/icons/hicolor/16x16/apps/ hicolor_icon_22_DATA = \ 22/iok.png \ $(NULL) hicolor_icon_22dir = $(datadir)/icons/hicolor/22x22/apps/ hicolor_icon_24_DATA = \ 24/iok.png \ $(NULL) hicolor_icon_24dir = $(datadir)/icons/hicolor/24x24/apps/ hicolor_icon_32_DATA = \ 32/iok.png \ $(NULL) hicolor_icon_32dir = $(datadir)/icons/hicolor/32x32/apps/ hicolor_icon_48_DATA = \ 48/iok.png \ $(NULL) hicolor_icon_48dir = $(datadir)/icons/hicolor/48x48/apps/ hicolor_icon_scalable_DATA = \ scalable/iok.svg \ $(NULL) hicolor_icon_scalabledir = $(datadir)/icons/hicolor/scalable/apps/ EXTRA_DIST = \ $(icons_DATA) \ $(sysicons_DATA) \ $(hicolor_icon_16_DATA) \ $(hicolor_icon_22_DATA) \ $(hicolor_icon_24_DATA) \ $(hicolor_icon_32_DATA) \ $(hicolor_icon_48_DATA) \ $(hicolor_icon_scalable_DATA) \ $(NULL) all: all-am .SUFFIXES: $(srcdir)/Makefile.in: @MAINTAINER_MODE_TRUE@ $(srcdir)/Makefile.am $(am__configure_deps) @for dep in $?; do \ case '$(am__configure_deps)' in \ *$$dep*) \ ( cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh ) \ && { if test -f $@; then exit 0; else break; fi; }; \ exit 1;; \ esac; \ done; \ echo ' cd $(top_srcdir) && $(AUTOMAKE) --gnu data/icons/Makefile'; \ $(am__cd) $(top_srcdir) && \ $(AUTOMAKE) --gnu data/icons/Makefile .PRECIOUS: Makefile Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status @case '$?' in \ *config.status*) \ cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh;; \ *) \ echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe)'; \ cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe);; \ esac; $(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES) cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh $(top_srcdir)/configure: @MAINTAINER_MODE_TRUE@ $(am__configure_deps) cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh $(ACLOCAL_M4): @MAINTAINER_MODE_TRUE@ $(am__aclocal_m4_deps) cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh $(am__aclocal_m4_deps): install-hicolor_icon_16DATA: $(hicolor_icon_16_DATA) @$(NORMAL_INSTALL) test -z "$(hicolor_icon_16dir)" || $(MKDIR_P) "$(DESTDIR)$(hicolor_icon_16dir)" @list='$(hicolor_icon_16_DATA)'; test -n "$(hicolor_icon_16dir)" || list=; \ for p in $$list; do \ if test -f "$$p"; then d=; else d="$(srcdir)/"; fi; \ echo "$$d$$p"; \ done | $(am__base_list) | \ while read files; do \ echo " $(INSTALL_DATA) $$files '$(DESTDIR)$(hicolor_icon_16dir)'"; \ $(INSTALL_DATA) $$files "$(DESTDIR)$(hicolor_icon_16dir)" || exit $$?; \ done uninstall-hicolor_icon_16DATA: @$(NORMAL_UNINSTALL) @list='$(hicolor_icon_16_DATA)'; test -n "$(hicolor_icon_16dir)" || list=; \ files=`for p in $$list; do echo $$p; done | sed -e 's|^.*/||'`; \ dir='$(DESTDIR)$(hicolor_icon_16dir)'; $(am__uninstall_files_from_dir) install-hicolor_icon_22DATA: $(hicolor_icon_22_DATA) @$(NORMAL_INSTALL) test -z "$(hicolor_icon_22dir)" || $(MKDIR_P) "$(DESTDIR)$(hicolor_icon_22dir)" @list='$(hicolor_icon_22_DATA)'; test -n "$(hicolor_icon_22dir)" || list=; \ for p in $$list; do \ if test -f "$$p"; then d=; else d="$(srcdir)/"; fi; \ echo "$$d$$p"; \ done | $(am__base_list) | \ while read files; do \ echo " $(INSTALL_DATA) $$files '$(DESTDIR)$(hicolor_icon_22dir)'"; \ $(INSTALL_DATA) $$files "$(DESTDIR)$(hicolor_icon_22dir)" || exit $$?; \ done uninstall-hicolor_icon_22DATA: @$(NORMAL_UNINSTALL) @list='$(hicolor_icon_22_DATA)'; test -n "$(hicolor_icon_22dir)" || list=; \ files=`for p in $$list; do echo $$p; done | sed -e 's|^.*/||'`; \ dir='$(DESTDIR)$(hicolor_icon_22dir)'; $(am__uninstall_files_from_dir) install-hicolor_icon_24DATA: $(hicolor_icon_24_DATA) @$(NORMAL_INSTALL) test -z "$(hicolor_icon_24dir)" || $(MKDIR_P) "$(DESTDIR)$(hicolor_icon_24dir)" @list='$(hicolor_icon_24_DATA)'; test -n "$(hicolor_icon_24dir)" || list=; \ for p in $$list; do \ if test -f "$$p"; then d=; else d="$(srcdir)/"; fi; \ echo "$$d$$p"; \ done | $(am__base_list) | \ while read files; do \ echo " $(INSTALL_DATA) $$files '$(DESTDIR)$(hicolor_icon_24dir)'"; \ $(INSTALL_DATA) $$files "$(DESTDIR)$(hicolor_icon_24dir)" || exit $$?; \ done uninstall-hicolor_icon_24DATA: @$(NORMAL_UNINSTALL) @list='$(hicolor_icon_24_DATA)'; test -n "$(hicolor_icon_24dir)" || list=; \ files=`for p in $$list; do echo $$p; done | sed -e 's|^.*/||'`; \ dir='$(DESTDIR)$(hicolor_icon_24dir)'; $(am__uninstall_files_from_dir) install-hicolor_icon_32DATA: $(hicolor_icon_32_DATA) @$(NORMAL_INSTALL) test -z "$(hicolor_icon_32dir)" || $(MKDIR_P) "$(DESTDIR)$(hicolor_icon_32dir)" @list='$(hicolor_icon_32_DATA)'; test -n "$(hicolor_icon_32dir)" || list=; \ for p in $$list; do \ if test -f "$$p"; then d=; else d="$(srcdir)/"; fi; \ echo "$$d$$p"; \ done | $(am__base_list) | \ while read files; do \ echo " $(INSTALL_DATA) $$files '$(DESTDIR)$(hicolor_icon_32dir)'"; \ $(INSTALL_DATA) $$files "$(DESTDIR)$(hicolor_icon_32dir)" || exit $$?; \ done uninstall-hicolor_icon_32DATA: @$(NORMAL_UNINSTALL) @list='$(hicolor_icon_32_DATA)'; test -n "$(hicolor_icon_32dir)" || list=; \ files=`for p in $$list; do echo $$p; done | sed -e 's|^.*/||'`; \ dir='$(DESTDIR)$(hicolor_icon_32dir)'; $(am__uninstall_files_from_dir) install-hicolor_icon_48DATA: $(hicolor_icon_48_DATA) @$(NORMAL_INSTALL) test -z "$(hicolor_icon_48dir)" || $(MKDIR_P) "$(DESTDIR)$(hicolor_icon_48dir)" @list='$(hicolor_icon_48_DATA)'; test -n "$(hicolor_icon_48dir)" || list=; \ for p in $$list; do \ if test -f "$$p"; then d=; else d="$(srcdir)/"; fi; \ echo "$$d$$p"; \ done | $(am__base_list) | \ while read files; do \ echo " $(INSTALL_DATA) $$files '$(DESTDIR)$(hicolor_icon_48dir)'"; \ $(INSTALL_DATA) $$files "$(DESTDIR)$(hicolor_icon_48dir)" || exit $$?; \ done uninstall-hicolor_icon_48DATA: @$(NORMAL_UNINSTALL) @list='$(hicolor_icon_48_DATA)'; test -n "$(hicolor_icon_48dir)" || list=; \ files=`for p in $$list; do echo $$p; done | sed -e 's|^.*/||'`; \ dir='$(DESTDIR)$(hicolor_icon_48dir)'; $(am__uninstall_files_from_dir) install-hicolor_icon_scalableDATA: $(hicolor_icon_scalable_DATA) @$(NORMAL_INSTALL) test -z "$(hicolor_icon_scalabledir)" || $(MKDIR_P) "$(DESTDIR)$(hicolor_icon_scalabledir)" @list='$(hicolor_icon_scalable_DATA)'; test -n "$(hicolor_icon_scalabledir)" || list=; \ for p in $$list; do \ if test -f "$$p"; then d=; else d="$(srcdir)/"; fi; \ echo "$$d$$p"; \ done | $(am__base_list) | \ while read files; do \ echo " $(INSTALL_DATA) $$files '$(DESTDIR)$(hicolor_icon_scalabledir)'"; \ $(INSTALL_DATA) $$files "$(DESTDIR)$(hicolor_icon_scalabledir)" || exit $$?; \ done uninstall-hicolor_icon_scalableDATA: @$(NORMAL_UNINSTALL) @list='$(hicolor_icon_scalable_DATA)'; test -n "$(hicolor_icon_scalabledir)" || list=; \ files=`for p in $$list; do echo $$p; done | sed -e 's|^.*/||'`; \ dir='$(DESTDIR)$(hicolor_icon_scalabledir)'; $(am__uninstall_files_from_dir) install-iconsDATA: $(icons_DATA) @$(NORMAL_INSTALL) test -z "$(iconsdir)" || $(MKDIR_P) "$(DESTDIR)$(iconsdir)" @list='$(icons_DATA)'; test -n "$(iconsdir)" || list=; \ for p in $$list; do \ if test -f "$$p"; then d=; else d="$(srcdir)/"; fi; \ echo "$$d$$p"; \ done | $(am__base_list) | \ while read files; do \ echo " $(INSTALL_DATA) $$files '$(DESTDIR)$(iconsdir)'"; \ $(INSTALL_DATA) $$files "$(DESTDIR)$(iconsdir)" || exit $$?; \ done uninstall-iconsDATA: @$(NORMAL_UNINSTALL) @list='$(icons_DATA)'; test -n "$(iconsdir)" || list=; \ files=`for p in $$list; do echo $$p; done | sed -e 's|^.*/||'`; \ dir='$(DESTDIR)$(iconsdir)'; $(am__uninstall_files_from_dir) install-sysiconsDATA: $(sysicons_DATA) @$(NORMAL_INSTALL) test -z "$(sysiconsdir)" || $(MKDIR_P) "$(DESTDIR)$(sysiconsdir)" @list='$(sysicons_DATA)'; test -n "$(sysiconsdir)" || list=; \ for p in $$list; do \ if test -f "$$p"; then d=; else d="$(srcdir)/"; fi; \ echo "$$d$$p"; \ done | $(am__base_list) | \ while read files; do \ echo " $(INSTALL_DATA) $$files '$(DESTDIR)$(sysiconsdir)'"; \ $(INSTALL_DATA) $$files "$(DESTDIR)$(sysiconsdir)" || exit $$?; \ done uninstall-sysiconsDATA: @$(NORMAL_UNINSTALL) @list='$(sysicons_DATA)'; test -n "$(sysiconsdir)" || list=; \ files=`for p in $$list; do echo $$p; done | sed -e 's|^.*/||'`; \ dir='$(DESTDIR)$(sysiconsdir)'; $(am__uninstall_files_from_dir) tags: TAGS TAGS: ctags: CTAGS CTAGS: distdir: $(DISTFILES) @srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ topsrcdirstrip=`echo "$(top_srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ list='$(DISTFILES)'; \ dist_files=`for file in $$list; do echo $$file; done | \ sed -e "s|^$$srcdirstrip/||;t" \ -e "s|^$$topsrcdirstrip/|$(top_builddir)/|;t"`; \ case $$dist_files in \ */*) $(MKDIR_P) `echo "$$dist_files" | \ sed '/\//!d;s|^|$(distdir)/|;s,/[^/]*$$,,' | \ sort -u` ;; \ esac; \ for file in $$dist_files; do \ if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \ if test -d $$d/$$file; then \ dir=`echo "/$$file" | sed -e 's,/[^/]*$$,,'`; \ if test -d "$(distdir)/$$file"; then \ find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ fi; \ if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \ cp -fpR $(srcdir)/$$file "$(distdir)$$dir" || exit 1; \ find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ fi; \ cp -fpR $$d/$$file "$(distdir)$$dir" || exit 1; \ else \ test -f "$(distdir)/$$file" \ || cp -p $$d/$$file "$(distdir)/$$file" \ || exit 1; \ fi; \ done check-am: all-am check: check-am all-am: Makefile $(DATA) installdirs: for dir in "$(DESTDIR)$(hicolor_icon_16dir)" "$(DESTDIR)$(hicolor_icon_22dir)" "$(DESTDIR)$(hicolor_icon_24dir)" "$(DESTDIR)$(hicolor_icon_32dir)" "$(DESTDIR)$(hicolor_icon_48dir)" "$(DESTDIR)$(hicolor_icon_scalabledir)" "$(DESTDIR)$(iconsdir)" "$(DESTDIR)$(sysiconsdir)"; do \ test -z "$$dir" || $(MKDIR_P) "$$dir"; \ done install: install-am install-exec: install-exec-am install-data: install-data-am uninstall: uninstall-am install-am: all-am @$(MAKE) $(AM_MAKEFLAGS) install-exec-am install-data-am installcheck: installcheck-am install-strip: if test -z '$(STRIP)'; then \ $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \ install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \ install; \ else \ $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \ install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \ "INSTALL_PROGRAM_ENV=STRIPPROG='$(STRIP)'" install; \ fi mostlyclean-generic: clean-generic: distclean-generic: -test -z "$(CONFIG_CLEAN_FILES)" || rm -f $(CONFIG_CLEAN_FILES) -test . = "$(srcdir)" || test -z "$(CONFIG_CLEAN_VPATH_FILES)" || rm -f $(CONFIG_CLEAN_VPATH_FILES) maintainer-clean-generic: @echo "This command is intended for maintainers to use" @echo "it deletes files that may require special tools to rebuild." clean: clean-am clean-am: clean-generic mostlyclean-am distclean: distclean-am -rm -f Makefile distclean-am: clean-am distclean-generic dvi: dvi-am dvi-am: html: html-am html-am: info: info-am info-am: install-data-am: install-hicolor_icon_16DATA \ install-hicolor_icon_22DATA install-hicolor_icon_24DATA \ install-hicolor_icon_32DATA install-hicolor_icon_48DATA \ install-hicolor_icon_scalableDATA install-iconsDATA \ install-sysiconsDATA install-dvi: install-dvi-am install-dvi-am: install-exec-am: install-html: install-html-am install-html-am: install-info: install-info-am install-info-am: install-man: install-pdf: install-pdf-am install-pdf-am: install-ps: install-ps-am install-ps-am: installcheck-am: maintainer-clean: maintainer-clean-am -rm -f Makefile maintainer-clean-am: distclean-am maintainer-clean-generic mostlyclean: mostlyclean-am mostlyclean-am: mostlyclean-generic pdf: pdf-am pdf-am: ps: ps-am ps-am: uninstall-am: uninstall-hicolor_icon_16DATA \ uninstall-hicolor_icon_22DATA uninstall-hicolor_icon_24DATA \ uninstall-hicolor_icon_32DATA uninstall-hicolor_icon_48DATA \ uninstall-hicolor_icon_scalableDATA uninstall-iconsDATA \ uninstall-sysiconsDATA .MAKE: install-am install-strip .PHONY: all all-am check check-am clean clean-generic distclean \ distclean-generic distdir dvi dvi-am html html-am info info-am \ install install-am install-data install-data-am install-dvi \ install-dvi-am install-exec install-exec-am \ install-hicolor_icon_16DATA install-hicolor_icon_22DATA \ install-hicolor_icon_24DATA install-hicolor_icon_32DATA \ install-hicolor_icon_48DATA install-hicolor_icon_scalableDATA \ install-html install-html-am install-iconsDATA install-info \ install-info-am install-man install-pdf install-pdf-am \ install-ps install-ps-am install-strip install-sysiconsDATA \ installcheck installcheck-am installdirs maintainer-clean \ maintainer-clean-generic mostlyclean mostlyclean-generic pdf \ pdf-am ps ps-am uninstall uninstall-am \ uninstall-hicolor_icon_16DATA uninstall-hicolor_icon_22DATA \ uninstall-hicolor_icon_24DATA uninstall-hicolor_icon_32DATA \ uninstall-hicolor_icon_48DATA \ uninstall-hicolor_icon_scalableDATA uninstall-iconsDATA \ uninstall-sysiconsDATA # Tell versions [3.59,3.63) of GNU make to not export all variables. # Otherwise a system limit (for SysV at least) may be exceeded. .NOEXPORT: iok-2.1.3/data/icons/24/0000775000076400007640000000000011776460267011603 500000000000000iok-2.1.3/data/icons/24/iok.png0000644000076400007640000000213211775560316013002 00000000000000‰PNG  IHDRàw=øsRGB®ÎébKGDÿÿÿ ½§“ pHYs  šœtIMEÜ ."è?øbÚIDATHǵ•mhUuÇ?ÿsÎ}Øv¼›mnsnfnÉnËÄ}XIùfÕf)eíÅ0²e!B#¤¤7A¤&Q‘,z@ɤ• 6­Uº¶5çvwwvïyøõâÜ͇ÝÙÖèÀŸsþp¾ç{~¿ïÿûûªí«=òbóÝ,¼w9è§A­„ }ñÂà0,®ŸFÇ è# | Ô€Äâ [7¡ªÎ÷Ã’ Ac>—eC&ºšñ•¹È5{(u]ÈìL˽{Œ99;uŠD®ƒSóÔÀÐÁWvMƒ¡y(5syŽóDž510ƒŠÿ'‚ɉ`h þJà/´(‰(P(²¶péRšŒ Z*MÐð ¹âЏŠ¥LÒæåÃÅ)°l¡o0I¤Ìp Â/ÕÍij,僽J)þMÓþv7=g½d'Lâ›í­ã<Ý¢£÷Ïvþ•/ŽþF÷þ (MïžáÐ÷zcƒK @(à¥Ð—ë˜Wcí¶o¨CWçFB$’œȰ®íS|ÆjžhªÀïÕ Àq„íŸsò—aŽwÞGm}y <ï|ÖË…¡4oµ­ ¼ÄOQA¡Ï`ÍêJ:w´²÷Ãnâ‰ìš*¬„IËŽ.~îѳo=µËŠòÍ"CãÀ±~–‡©¬ OùH)¬Esc”³ÆOšLê7ž2yìÍŸ¸˜äÔÁM” ÄTÞcªà¡7UòH×ÜeÙNn¯8×—àヴ?ZOéÄRQ†’™| Pô2Ëæu‰íhšk0Óîºe!¯>^ËÖÝG9~j•›YLŸ^¶ð`C)û»~'Ëà+Éñ (CçtO?Å!?Ež)H*mñrÇ­¤LXûÊ >òxhUé -ÊÚìlYNh}0m %ƇÒ&-!x!ÕØD)JJ¹ˆIG‹ !*8Ãt€¹0}`l…¹ò@¢Õÿédýkïýï³Ö^{/Y¡„³P’2ã@©þ$0ôAtèÄ÷­.\öÇœRáò-ÿoÌ“|t( Žºü¦Ž›@3'…ûÁ̘žQSâøþ§^€R1qüåsW"¿H§K€LUNÎ^½›“Ñlã‹ó}¬È¯Bxë4‡ZVäWñù©f [CpÓ0̲‘¹w!ò`–%…qóΠצDNó /GñË7Ù(c0X?†&‹QûM.Q˜…Ñlu³š¬XíND‡#ÎöxûŒÑló+Àhv !nö5©ó)y7‘+­ýdíÑb±O¯¥ÄGÒÑeÄj÷êcµÙéа41Ú#ôãU|’›Ä•Ö~Ö•5a¶Ø«ŽÅ<âà‡K¯>•Ú&þ'w÷Bpds2ŸnYEƒnˆÌÝu“Dø°u­’…qìÿ¶ƒ{ÅkÕ=`ÿ‰*ÅÏfë;É>Ãôeñë|–—ÄoídìªcØŸ§@ æÜ‘7É<Ø€ú+Û¨—ÎG6d¤©ï6•Z= bDÎ~ç³=FÙÆdds¢(«h!£ô:õå±þKqJ‚ÈÓéœ8õ;5ºü|é/ga¼È¡V²oSs"¿øòÑ©šŠ2vÕMàl.tuF“172ÍzIòð*÷¸³:ÇksRZ¤¢4K1ƒ’ÿGg4]øÄÔæôÅ“l þv 1,OIÖ©IEND®B`‚iok-2.1.3/data/icons/22/0000775000076400007640000000000011776460267011601 500000000000000iok-2.1.3/data/icons/22/iok.png0000644000076400007640000000167311775560316013011 00000000000000‰PNG  IHDRÄ´l;sRGB®ÎébKGDÿÿÿ ½§“ pHYs  šœtIMEÜ . Dƒ";IDAT8Ë¥•[h\U†¿µçœ3ãd’&!éÅš ¦ˆ MAZ¡IZM„‚ æÁ!EjQûà“A j‹ØöA‚ˆ Þ¢"µ‚)‰¤Ò⥢{yHk¡hh‰¶´É¤Èe’ÉtÎìåà 3IfZÓ¸÷Þëßÿú׿֖}m!Ý¿{;e׃ÆAWÃx Ê<ˆM†˜K‚xÍÀ9 ¬…ѸµkÀ¸z¢÷‚U +]ñI¨ ‚–>^°–ˆ¹-èò€Àt<ï®úo`ͱ[n&¹ý•i¬ kj >Kß×c+µÅ uPmõÿpŲ‘œÆª@™›-TNVð „]9àɪ Üã@À ,0HØ'ŽT…ÆO89˜ÈgzòÌ[_¤®ý ¢]´ïîãôÅˈªŠTxÈý|õýˆ~¼8lþŒÏû‡q Áu²Œ¿þá»Þ;ϯ‡·ÒÔÚc79;aÙöBg¿ìdKSÁÞk `8rü/ž=ð;§ÞÝAGK]±Æ~F9xôOz¶ÒÖXAeyʈÇãíõtïíbÿGCàÂŒŽf×_¸ðÎ#t´Ö¡VsŒ,«ÊÈÍ$O¶¬C'¦ò…×”Oç£yããà€ß>v…¿'æ¹ðÍ34æPß"FŠ«fY”²¾ë@òÖ↹tu†èÚrW¸omv8•ê<ð}-ÑlJ* åa[xöƒ—b•£l~q€´o‘\ÉŠ€FØÒPÁÇýWÏä›@\‡žcƒ<ýØðmþ~$âòÓá6V¯¯¤¹ë[Anܽ§™½ïŸçPï?ü1gèò$¯vŸ¦§ïo½´ Mgæ¾å»Cí¬¯ ³qg/‰ùÌb`›sÿ¶M5Äú:º4Nëó}t¼öñéYnœx“躥b®ðó§O­¯¦eϲ¯-¤¯?·òÀÌ(øµèx ‰ajš„ëcP[ÉTÏ!R¿…É$À5èè,RS…ƒˆ£à:Y»¦RÙ¢ˆ š³G2Ó)H¤!âç‹ `³Òɱ€¹48v‰Æ#× â.†úL Œ]2è—úʘ;~9%G¨µEÛÿÙ|#V<¶ÞIEND®B`‚iok-2.1.3/data/icons/48/0000775000076400007640000000000011776460267011611 500000000000000iok-2.1.3/data/icons/48/iok.png0000644000076400007640000000554211775560316013020 00000000000000‰PNG  IHDR00Wù‡sRGB®ÎébKGDÿÿÿ ½§“ pHYs  šœtIMEÜ /I™l, âIDAThÞÕšYp\G†¿î»Ì¾hY²¬Åv"ËKLSÆ!C T(BXª(¡xx€*(à•)*ÅRl8a±MBg³‰-BÇN,äE¶-–FËÌÜ™¹[ópg´XJ<6•oÕ•JRO÷ùûœóŸ¿OK|~ª¿µ…ôvÑ}sc}Ä5P§€ „‚ì,är ©C± çG¡¹::À÷Ap»ñÔ¯Õü³òö1P.hÚâxˆ0[‚DêS ÔesF¡>ü¾òè¬Å#DðÝ*A±! †ÔUO%Y«G°Š0— ˜úµØ¿†ª ¤¸&Ãÿ7¤ŒR |õÙƒw€ë¯®ƒ®ý_èïh(Ìä P„†4˜²Âêzñ€¨xÀ v_×ÛÕõà·Êq½åÀÕ>ÿ-P!Ö¨UFãË刵ç\±¥òy@© €0$Pò¡ìQ“+D@© ÙÙ5!*@WFbQЍµÖBŠ«£)!Àó _~n¬[k\p߇™ùÀsõéë ÀŠò¯GKòE]VTÕMšX ´¥ÅtEaKdÄj¯XI<+Ö«À%ãÕjcªë-Œ ÆëË*† NF®[€û !€šÂz0CXWƒP îä²Ò $ÀÐÞš KˆèÁ:¦M.B`†tžyáO½1EGË,{¶Gè»A€¯PUR€!ñ‹‚×.Xœ~m˜‹bš¹\gÞÂP©Ì(ë[clîheÛF… kg kVŒ¦Æìl‘Ÿþn’ç²}cwô¤ˆÕÉÌ¢êaM2ðò8‡Ï 1q~о›ØySÛR€©qà…a~°ÿ 7véÄÂíôm`/ÍÅ\¶ÄgfxüØ /žÍsvN1;_Âq< ]R— ѵ.Æ®¾<{ÿz»æIÅEàuªK”dó6ßÿý ¹¼Ígîhg׺1].:B@¹ìqq4Ïc‡†xäï£K.XІLje0 -¢!‰®-q¿(yËåOóãýCœ+°>“àÝ}Mt·'‰ãaÍ9;ç108Í‘ßþ‹'žãË÷GøÂ½)âQË“J A4¤c—B†\ب…xWŠ¡Ñßþåë|ñMLSã»÷÷ðÑ»6³e[ÛÊ•¤‹“’|ÑåѧGxôÉa†F ìÝçö÷l`ÇÎ 47DˆX幓Z˜þsóNk&Á'nïàþ] ôv%Ñâf•X®ÏÐXžGþ|Žóô÷$øæÞfö¼¯±¹ ¦f `Àú wîÝ}MLd]NñÈþIÞ³#ÏÎx40T­¾LC!ïpêL–Ÿÿé4¿>8DCLçÁ»zøÊ}7Ю,Ð%Êöj ‚-Ísè¥IÎŽع9ÍÃw·Ó×BJ(\\%¢[ºùÒ}·ây ^æ¯GGˆGL6u×cWy ]BÉeàÌßùÑ1že‚L]ˆï}bw ‹¶–8Œ>_[!“‚³ãGÞ˜!_öØÑâž]êâFÀPJ-p¼R å+ð}ê’îÙ³•í›ÚÈ=޼2ÁÙÑù€~/£KM!˜Î9xî?|ìU^xyœ-]u|ý­|¨¿… -QD%G«P¯IÉ–8y1‡¡Á¦ö8ë:’ðFå©e¶ˆÊåú)iëjeSG=†'Ïd™(¬®ûÌæmž=•å/üñãt·%xè¾yèÉÎ΀òQnPN«ùYsds6s6íS¡•eõ-Ô2>4¥ Úš`"k‘/³À§•¹¥ä‹ÿžåÈÉi,Û§¿·‘ï|ñ]ì¹¹hTƒžºÆ3±«ìa9ŠdÌ ¾:‹h$ã’óã>…’»,|D¥ˆ*`tªHÙQ†¤s]‚Ý;24Ôé0‡D .Û¸š-ñ+9'5”ÔæJ°Š Mó¨UhaSC>ñ˜IÉö8?–#m[vZ[!U,Á’ctm˜†@JeÛñY^$Þ>‡lGQ´}4 ¦¡­0Þó©˜Æ­[h¼88ËÁ£#Xe¯~°îYtȹÖ’ƒtLgb¦Ä\Á ˜äJªŠ²ËyLN+ê“&©˜±ÊgA¦>̃ï_φuSüìÐ0ÏÿkŒ°]F)Ňö¥1㢴¸lm,„šS&Mþy>ÇÈ¥"*ï ¹DmÀr¦|TÎbd²@6ý½Išë#Aâ²,;º.Ù½³™®LŒBÎág‡GxêÕ) 4wgèߦcVdwu-Y“(:›£ÜÜ“B'ÏÏsôä4Žã:`µÏŽãrôÕ3œ<;”п¥‰Îu ðüU륯…’KgGœ‡÷vòÅ{7³¾-Å3'¦øÖŽqàù É-®2„<Å m1îÜÞÈ“{}†Çž¦uO‚®n‰ëQº MD)œãW^æøÉs´Ô…¸sW7lHt¨Vï¶xžMÐÙãÓ{7¡„ä÷Osô•q¢Qe;ìë cÖiQ €ŠêêÂì¾±ž=[8ôÒ%aŒ)Ÿ÷5åÉD hš@æTÁÁ*2‘s8|l”ÇŸÀ*Øwk3»·7“nŠRãmZ>ØÁ–m-|Æu‘¹?ùû(;ö&…¹"ÍŸÜH2N(q59×§)âÛŸí%™4yôÐ0ßøÃ›ìô¸ý–y6u¤ˆ{6…ÙC¹1žye’_›Ä*ÁçöÕóµOehLëàÔXxPrÙ²>ÎCwu"q~óôž;q‰oÙ6_Çäã÷6,Ö(Ú9ËÃq—®¯’í=)>O qƒgÆϱÿð9"¦Žæ{xŽKI ,Û£·³‘ÛnÞɽ·YlÛX@JžZ<Ј îç-ËVXe/¸©z|…ÐZc<¸72 ~{pçNÏ¡ídxº|ÙyÀWd¢´4†Ù´^'×Àg™xÒtÉm·´°cCœ?×ÁsCNda|ª@©hÖ-ÍqnÙÖÈm;7ò‘÷î%Yw ÜãP} )è+L]ÒÛž`>_¢½)¢üE}¥ÊAo_:ŠßdüR¿A,½fíéOSL¥˜Æ#¤‘Œµ‹v •ET¯YC:¾UÆ:}b²žr¦ ÏõPÙ9D±„–i Ó‰ ¢‘›ò%PÁ5«R1nU;ãmÆO]Ä—>±Æ(é¸VtÀZ›Q¹<"_€Öfl©‘Ÿ±ÈC4‚ÞZîßW$£$êMpGÁÖPN@¶Ë8¾ÒHŽÇtâÍQèJ˜· “]€^èJTi_ˆÅÆŽÊ[è¥í=É Ë ØÊ_ô’¨eñfD§¾)J=IˆwÆúrPv!§@yŽYÒx—³“«‚®rÁ ,,8Ák9A{Fy °W(!V æsP’[-o¼].ÑñT`_Áá@Ø©U.¹yù__³Šjì¸bª6Ssypmˆµ‹¸ky|EtbaòŠ›&¯Üήtƒ]bÆ}1ý¶k)„ŸnB:È”+ЯX†«­‚kûW†kRã­ xY\¹2®ÅíM-ýMªáõúüYŽ‘Ph€[[IEND®B`‚iok-2.1.3/data/icons/Makefile.am0000644000076400007640000000200211776460225013314 00000000000000# vim:set noet ts=4: icons_DATA = \ $(NULL) iconsdir = $(pkgdatadir)/icons sysicons_DATA = \ $(NULL) sysiconsdir = $(datadir)/pixmaps hicolor_icon_16_DATA = \ 16/iok.png \ $(NULL) hicolor_icon_16dir= $(datadir)/icons/hicolor/16x16/apps/ hicolor_icon_22_DATA = \ 22/iok.png \ $(NULL) hicolor_icon_22dir= $(datadir)/icons/hicolor/22x22/apps/ hicolor_icon_24_DATA = \ 24/iok.png \ $(NULL) hicolor_icon_24dir= $(datadir)/icons/hicolor/24x24/apps/ hicolor_icon_32_DATA = \ 32/iok.png \ $(NULL) hicolor_icon_32dir= $(datadir)/icons/hicolor/32x32/apps/ hicolor_icon_48_DATA = \ 48/iok.png \ $(NULL) hicolor_icon_48dir= $(datadir)/icons/hicolor/48x48/apps/ hicolor_icon_scalable_DATA = \ scalable/iok.svg \ $(NULL) hicolor_icon_scalabledir= $(datadir)/icons/hicolor/scalable/apps/ EXTRA_DIST = \ $(icons_DATA) \ $(sysicons_DATA) \ $(hicolor_icon_16_DATA) \ $(hicolor_icon_22_DATA) \ $(hicolor_icon_24_DATA) \ $(hicolor_icon_32_DATA) \ $(hicolor_icon_48_DATA) \ $(hicolor_icon_scalable_DATA) \ $(NULL) iok-2.1.3/data/icons/16/0000775000076400007640000000000011776460267011604 500000000000000iok-2.1.3/data/icons/16/iok.png0000644000076400007640000000124511775560316013007 00000000000000‰PNG  IHDRóÿasRGB®ÎébKGDÿÿÿ ½§“ pHYs  šœtIMEÜ -'³x_.%IDAT8Ë•“KHTa†Ÿÿœ™339—0!‰°Z†.ܨYB¹hcB„ w. !“ µ»„r…] Ef·–­ª!™pP2ÈÑMmÎýü-f`r¬w÷ÁËÃÿ}ïû‹¡¶JÙs¹Â˰ ™ ¨®†lbq@CãÈÄ#]…X…­¤ðdqÖ Ð|Ú¶¤³°;Îvú÷„‚`9›=†ù@©B°Üâ,ÄJ%H™¼žþFbÖDøFß,peø£ã³ ©H h*×ï'Á¯€¼O¤¹ý|>x1½@"e"* çÆ˜[óèjÝÇü¢ACÇ-DP¿Âà½$h*S_é¸ñŽÎæ6å2öö;‡kc\=:ƒÔ4„(‰1^¦‘Y3á·ô–Wv•ˆ†}\={€ö®ÇˆhYÚƒÎ#U\™A„|àSAá :Ûk°l—¾î:êë«8ÞýPó7Ð-Û‘ÄÂ~ô7qèü±Ko6ݹä, ¶Çà…:úîÌp´÷%b¨­RöôŸ€à",•ç?Ó†‘DË ç*ÒÈ!™5¡0TÄ`}­°‚逸v~Ó…Ÿ6èÅê ÝÛCøü %¸r6Š@€Ü¦}jPÐ/fôÌ’_û-,IEND®B`‚iok-2.1.3/iok.desktop.in.in0000644000076400007640000000036411776460025012432 00000000000000[Desktop Entry] Version=1.0 _Name=Indic Onscreen Keyboard _Comment=Enter Indic characters with a virtual keyboard Exec=iok Icon=iok StartupNotify=true Terminal=false Type=Application Categories=GNOME;GTK;Utility;Accessibility; NotShowIn=GNOME; iok-2.1.3/aclocal.m40000664000076400007640000020725111776460253011114 00000000000000# generated automatically by aclocal 1.11.3 -*- Autoconf -*- # Copyright (C) 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003, 2004, # 2005, 2006, 2007, 2008, 2009, 2010, 2011 Free Software Foundation, # Inc. # This file is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, # with or without modifications, as long as this notice is preserved. # This program is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY, to the extent permitted by law; without # even the implied warranty of MERCHANTABILITY or FITNESS FOR A # PARTICULAR PURPOSE. m4_ifndef([AC_AUTOCONF_VERSION], [m4_copy([m4_PACKAGE_VERSION], [AC_AUTOCONF_VERSION])])dnl m4_if(m4_defn([AC_AUTOCONF_VERSION]), [2.68],, [m4_warning([this file was generated for autoconf 2.68. You have another version of autoconf. It may work, but is not guaranteed to. If you have problems, you may need to regenerate the build system entirely. To do so, use the procedure documented by the package, typically `autoreconf'.])]) # Copyright (C) 1995-2002 Free Software Foundation, Inc. # Copyright (C) 2001-2003,2004 Red Hat, Inc. # # This file is free software, distributed under the terms of the GNU # General Public License. As a special exception to the GNU General # Public License, this file may be distributed as part of a program # that contains a configuration script generated by Autoconf, under # the same distribution terms as the rest of that program. # # This file can be copied and used freely without restrictions. It can # be used in projects which are not available under the GNU Public License # but which still want to provide support for the GNU gettext functionality. # # Macro to add for using GNU gettext. # Ulrich Drepper , 1995, 1996 # # Modified to never use included libintl. # Owen Taylor , 12/15/1998 # # Major rework to remove unused code # Owen Taylor , 12/11/2002 # # Added better handling of ALL_LINGUAS from GNU gettext version # written by Bruno Haible, Owen Taylor 5/30/3002 # # Modified to require ngettext # Matthias Clasen 08/06/2004 # # We need this here as well, since someone might use autoconf-2.5x # to configure GLib then an older version to configure a package # using AM_GLIB_GNU_GETTEXT AC_PREREQ(2.53) dnl dnl We go to great lengths to make sure that aclocal won't dnl try to pull in the installed version of these macros dnl when running aclocal in the glib directory. dnl m4_copy([AC_DEFUN],[glib_DEFUN]) m4_copy([AC_REQUIRE],[glib_REQUIRE]) dnl dnl At the end, if we're not within glib, we'll define the public dnl definitions in terms of our private definitions. dnl # GLIB_LC_MESSAGES #-------------------- glib_DEFUN([GLIB_LC_MESSAGES], [AC_CHECK_HEADERS([locale.h]) if test $ac_cv_header_locale_h = yes; then AC_CACHE_CHECK([for LC_MESSAGES], am_cv_val_LC_MESSAGES, [AC_TRY_LINK([#include ], [return LC_MESSAGES], am_cv_val_LC_MESSAGES=yes, am_cv_val_LC_MESSAGES=no)]) if test $am_cv_val_LC_MESSAGES = yes; then AC_DEFINE(HAVE_LC_MESSAGES, 1, [Define if your file defines LC_MESSAGES.]) fi fi]) # GLIB_PATH_PROG_WITH_TEST #---------------------------- dnl GLIB_PATH_PROG_WITH_TEST(VARIABLE, PROG-TO-CHECK-FOR, dnl TEST-PERFORMED-ON-FOUND_PROGRAM [, VALUE-IF-NOT-FOUND [, PATH]]) glib_DEFUN([GLIB_PATH_PROG_WITH_TEST], [# Extract the first word of "$2", so it can be a program name with args. set dummy $2; ac_word=[$]2 AC_MSG_CHECKING([for $ac_word]) AC_CACHE_VAL(ac_cv_path_$1, [case "[$]$1" in /*) ac_cv_path_$1="[$]$1" # Let the user override the test with a path. ;; *) IFS="${IFS= }"; ac_save_ifs="$IFS"; IFS="${IFS}:" for ac_dir in ifelse([$5], , $PATH, [$5]); do test -z "$ac_dir" && ac_dir=. if test -f $ac_dir/$ac_word; then if [$3]; then ac_cv_path_$1="$ac_dir/$ac_word" break fi fi done IFS="$ac_save_ifs" dnl If no 4th arg is given, leave the cache variable unset, dnl so AC_PATH_PROGS will keep looking. ifelse([$4], , , [ test -z "[$]ac_cv_path_$1" && ac_cv_path_$1="$4" ])dnl ;; esac])dnl $1="$ac_cv_path_$1" if test ifelse([$4], , [-n "[$]$1"], ["[$]$1" != "$4"]); then AC_MSG_RESULT([$]$1) else AC_MSG_RESULT(no) fi AC_SUBST($1)dnl ]) # GLIB_WITH_NLS #----------------- glib_DEFUN([GLIB_WITH_NLS], dnl NLS is obligatory [USE_NLS=yes AC_SUBST(USE_NLS) gt_cv_have_gettext=no CATOBJEXT=NONE XGETTEXT=: INTLLIBS= AC_CHECK_HEADER(libintl.h, [gt_cv_func_dgettext_libintl="no" libintl_extra_libs="" # # First check in libc # AC_CACHE_CHECK([for ngettext in libc], gt_cv_func_ngettext_libc, [AC_TRY_LINK([ #include ], [return !ngettext ("","", 1)], gt_cv_func_ngettext_libc=yes, gt_cv_func_ngettext_libc=no) ]) if test "$gt_cv_func_ngettext_libc" = "yes" ; then AC_CACHE_CHECK([for dgettext in libc], gt_cv_func_dgettext_libc, [AC_TRY_LINK([ #include ], [return !dgettext ("","")], gt_cv_func_dgettext_libc=yes, gt_cv_func_dgettext_libc=no) ]) fi if test "$gt_cv_func_ngettext_libc" = "yes" ; then AC_CHECK_FUNCS(bind_textdomain_codeset) fi # # If we don't have everything we want, check in libintl # if test "$gt_cv_func_dgettext_libc" != "yes" \ || test "$gt_cv_func_ngettext_libc" != "yes" \ || test "$ac_cv_func_bind_textdomain_codeset" != "yes" ; then AC_CHECK_LIB(intl, bindtextdomain, [AC_CHECK_LIB(intl, ngettext, [AC_CHECK_LIB(intl, dgettext, gt_cv_func_dgettext_libintl=yes)])]) if test "$gt_cv_func_dgettext_libintl" != "yes" ; then AC_MSG_CHECKING([if -liconv is needed to use gettext]) AC_MSG_RESULT([]) AC_CHECK_LIB(intl, ngettext, [AC_CHECK_LIB(intl, dcgettext, [gt_cv_func_dgettext_libintl=yes libintl_extra_libs=-liconv], :,-liconv)], :,-liconv) fi # # If we found libintl, then check in it for bind_textdomain_codeset(); # we'll prefer libc if neither have bind_textdomain_codeset(), # and both have dgettext and ngettext # if test "$gt_cv_func_dgettext_libintl" = "yes" ; then glib_save_LIBS="$LIBS" LIBS="$LIBS -lintl $libintl_extra_libs" unset ac_cv_func_bind_textdomain_codeset AC_CHECK_FUNCS(bind_textdomain_codeset) LIBS="$glib_save_LIBS" if test "$ac_cv_func_bind_textdomain_codeset" = "yes" ; then gt_cv_func_dgettext_libc=no else if test "$gt_cv_func_dgettext_libc" = "yes" \ && test "$gt_cv_func_ngettext_libc" = "yes"; then gt_cv_func_dgettext_libintl=no fi fi fi fi if test "$gt_cv_func_dgettext_libc" = "yes" \ || test "$gt_cv_func_dgettext_libintl" = "yes"; then gt_cv_have_gettext=yes fi if test "$gt_cv_func_dgettext_libintl" = "yes"; then INTLLIBS="-lintl $libintl_extra_libs" fi if test "$gt_cv_have_gettext" = "yes"; then AC_DEFINE(HAVE_GETTEXT,1, [Define if the GNU gettext() function is already present or preinstalled.]) GLIB_PATH_PROG_WITH_TEST(MSGFMT, msgfmt, [test -z "`$ac_dir/$ac_word -h 2>&1 | grep 'dv '`"], no)dnl if test "$MSGFMT" != "no"; then glib_save_LIBS="$LIBS" LIBS="$LIBS $INTLLIBS" AC_CHECK_FUNCS(dcgettext) MSGFMT_OPTS= AC_MSG_CHECKING([if msgfmt accepts -c]) GLIB_RUN_PROG([$MSGFMT -c -o /dev/null],[ msgid "" msgstr "" "Content-Type: text/plain; charset=UTF-8\n" "Project-Id-Version: test 1.0\n" "PO-Revision-Date: 2007-02-15 12:01+0100\n" "Last-Translator: test \n" "Language-Team: C \n" "MIME-Version: 1.0\n" "Content-Transfer-Encoding: 8bit\n" ], [MSGFMT_OPTS=-c; AC_MSG_RESULT([yes])], [AC_MSG_RESULT([no])]) AC_SUBST(MSGFMT_OPTS) AC_PATH_PROG(GMSGFMT, gmsgfmt, $MSGFMT) GLIB_PATH_PROG_WITH_TEST(XGETTEXT, xgettext, [test -z "`$ac_dir/$ac_word -h 2>&1 | grep '(HELP)'`"], :) AC_TRY_LINK(, [extern int _nl_msg_cat_cntr; return _nl_msg_cat_cntr], [CATOBJEXT=.gmo DATADIRNAME=share], [case $host in *-*-solaris*) dnl On Solaris, if bind_textdomain_codeset is in libc, dnl GNU format message catalog is always supported, dnl since both are added to the libc all together. dnl Hence, we'd like to go with DATADIRNAME=share and dnl and CATOBJEXT=.gmo in this case. AC_CHECK_FUNC(bind_textdomain_codeset, [CATOBJEXT=.gmo DATADIRNAME=share], [CATOBJEXT=.mo DATADIRNAME=lib]) ;; *-*-openbsd*) CATOBJEXT=.mo DATADIRNAME=share ;; *) CATOBJEXT=.mo DATADIRNAME=lib ;; esac]) LIBS="$glib_save_LIBS" INSTOBJEXT=.mo else gt_cv_have_gettext=no fi fi ]) if test "$gt_cv_have_gettext" = "yes" ; then AC_DEFINE(ENABLE_NLS, 1, [always defined to indicate that i18n is enabled]) fi dnl Test whether we really found GNU xgettext. if test "$XGETTEXT" != ":"; then dnl If it is not GNU xgettext we define it as : so that the dnl Makefiles still can work. if $XGETTEXT --omit-header /dev/null 2> /dev/null; then : ; else AC_MSG_RESULT( [found xgettext program is not GNU xgettext; ignore it]) XGETTEXT=":" fi fi # We need to process the po/ directory. POSUB=po AC_OUTPUT_COMMANDS( [case "$CONFIG_FILES" in *po/Makefile.in*) sed -e "/POTFILES =/r po/POTFILES" po/Makefile.in > po/Makefile esac]) dnl These rules are solely for the distribution goal. While doing this dnl we only have to keep exactly one list of the available catalogs dnl in configure.ac. for lang in $ALL_LINGUAS; do GMOFILES="$GMOFILES $lang.gmo" POFILES="$POFILES $lang.po" done dnl Make all variables we use known to autoconf. AC_SUBST(CATALOGS) AC_SUBST(CATOBJEXT) AC_SUBST(DATADIRNAME) AC_SUBST(GMOFILES) AC_SUBST(INSTOBJEXT) AC_SUBST(INTLLIBS) AC_SUBST(PO_IN_DATADIR_TRUE) AC_SUBST(PO_IN_DATADIR_FALSE) AC_SUBST(POFILES) AC_SUBST(POSUB) ]) # AM_GLIB_GNU_GETTEXT # ------------------- # Do checks necessary for use of gettext. If a suitable implementation # of gettext is found in either in libintl or in the C library, # it will set INTLLIBS to the libraries needed for use of gettext # and AC_DEFINE() HAVE_GETTEXT and ENABLE_NLS. (The shell variable # gt_cv_have_gettext will be set to "yes".) It will also call AC_SUBST() # on various variables needed by the Makefile.in.in installed by # glib-gettextize. dnl glib_DEFUN([GLIB_GNU_GETTEXT], [AC_REQUIRE([AC_PROG_CC])dnl AC_REQUIRE([AC_HEADER_STDC])dnl GLIB_LC_MESSAGES GLIB_WITH_NLS if test "$gt_cv_have_gettext" = "yes"; then if test "x$ALL_LINGUAS" = "x"; then LINGUAS= else AC_MSG_CHECKING(for catalogs to be installed) NEW_LINGUAS= for presentlang in $ALL_LINGUAS; do useit=no if test "%UNSET%" != "${LINGUAS-%UNSET%}"; then desiredlanguages="$LINGUAS" else desiredlanguages="$ALL_LINGUAS" fi for desiredlang in $desiredlanguages; do # Use the presentlang catalog if desiredlang is # a. equal to presentlang, or # b. a variant of presentlang (because in this case, # presentlang can be used as a fallback for messages # which are not translated in the desiredlang catalog). case "$desiredlang" in "$presentlang"*) useit=yes;; esac done if test $useit = yes; then NEW_LINGUAS="$NEW_LINGUAS $presentlang" fi done LINGUAS=$NEW_LINGUAS AC_MSG_RESULT($LINGUAS) fi dnl Construct list of names of catalog files to be constructed. if test -n "$LINGUAS"; then for lang in $LINGUAS; do CATALOGS="$CATALOGS $lang$CATOBJEXT"; done fi fi dnl If the AC_CONFIG_AUX_DIR macro for autoconf is used we possibly dnl find the mkinstalldirs script in another subdir but ($top_srcdir). dnl Try to locate is. MKINSTALLDIRS= if test -n "$ac_aux_dir"; then MKINSTALLDIRS="$ac_aux_dir/mkinstalldirs" fi if test -z "$MKINSTALLDIRS"; then MKINSTALLDIRS="\$(top_srcdir)/mkinstalldirs" fi AC_SUBST(MKINSTALLDIRS) dnl Generate list of files to be processed by xgettext which will dnl be included in po/Makefile. test -d po || mkdir po if test "x$srcdir" != "x."; then if test "x`echo $srcdir | sed 's@/.*@@'`" = "x"; then posrcprefix="$srcdir/" else posrcprefix="../$srcdir/" fi else posrcprefix="../" fi rm -f po/POTFILES sed -e "/^#/d" -e "/^\$/d" -e "s,.*, $posrcprefix& \\\\," -e "\$s/\(.*\) \\\\/\1/" \ < $srcdir/po/POTFILES.in > po/POTFILES ]) # AM_GLIB_DEFINE_LOCALEDIR(VARIABLE) # ------------------------------- # Define VARIABLE to the location where catalog files will # be installed by po/Makefile. glib_DEFUN([GLIB_DEFINE_LOCALEDIR], [glib_REQUIRE([GLIB_GNU_GETTEXT])dnl glib_save_prefix="$prefix" glib_save_exec_prefix="$exec_prefix" glib_save_datarootdir="$datarootdir" test "x$prefix" = xNONE && prefix=$ac_default_prefix test "x$exec_prefix" = xNONE && exec_prefix=$prefix datarootdir=`eval echo "${datarootdir}"` if test "x$CATOBJEXT" = "x.mo" ; then localedir=`eval echo "${libdir}/locale"` else localedir=`eval echo "${datadir}/locale"` fi prefix="$glib_save_prefix" exec_prefix="$glib_save_exec_prefix" datarootdir="$glib_save_datarootdir" AC_DEFINE_UNQUOTED($1, "$localedir", [Define the location where the catalogs will be installed]) ]) dnl dnl Now the definitions that aclocal will find dnl ifdef(glib_configure_ac,[],[ AC_DEFUN([AM_GLIB_GNU_GETTEXT],[GLIB_GNU_GETTEXT($@)]) AC_DEFUN([AM_GLIB_DEFINE_LOCALEDIR],[GLIB_DEFINE_LOCALEDIR($@)]) ])dnl # GLIB_RUN_PROG(PROGRAM, TEST-FILE, [ACTION-IF-PASS], [ACTION-IF-FAIL]) # # Create a temporary file with TEST-FILE as its contents and pass the # file name to PROGRAM. Perform ACTION-IF-PASS if PROGRAM exits with # 0 and perform ACTION-IF-FAIL for any other exit status. AC_DEFUN([GLIB_RUN_PROG], [cat >conftest.foo <<_ACEOF $2 _ACEOF if AC_RUN_LOG([$1 conftest.foo]); then m4_ifval([$3], [$3], [:]) m4_ifvaln([$4], [else $4])dnl echo "$as_me: failed input was:" >&AS_MESSAGE_LOG_FD sed 's/^/| /' conftest.foo >&AS_MESSAGE_LOG_FD fi]) dnl IT_PROG_INTLTOOL([MINIMUM-VERSION], [no-xml]) # serial 42 IT_PROG_INTLTOOL AC_DEFUN([IT_PROG_INTLTOOL], [ AC_PREREQ([2.50])dnl AC_REQUIRE([AM_NLS])dnl case "$am__api_version" in 1.[01234]) AC_MSG_ERROR([Automake 1.5 or newer is required to use intltool]) ;; *) ;; esac INTLTOOL_REQUIRED_VERSION_AS_INT=`echo $1 | awk -F. '{ print $ 1 * 1000 + $ 2 * 100 + $ 3; }'` INTLTOOL_APPLIED_VERSION=`intltool-update --version | head -1 | cut -d" " -f3` INTLTOOL_APPLIED_VERSION_AS_INT=`echo $INTLTOOL_APPLIED_VERSION | awk -F. '{ print $ 1 * 1000 + $ 2 * 100 + $ 3; }'` if test -n "$1"; then AC_MSG_CHECKING([for intltool >= $1]) AC_MSG_RESULT([$INTLTOOL_APPLIED_VERSION found]) test "$INTLTOOL_APPLIED_VERSION_AS_INT" -ge "$INTLTOOL_REQUIRED_VERSION_AS_INT" || AC_MSG_ERROR([Your intltool is too old. You need intltool $1 or later.]) fi AC_PATH_PROG(INTLTOOL_UPDATE, [intltool-update]) AC_PATH_PROG(INTLTOOL_MERGE, [intltool-merge]) AC_PATH_PROG(INTLTOOL_EXTRACT, [intltool-extract]) if test -z "$INTLTOOL_UPDATE" -o -z "$INTLTOOL_MERGE" -o -z "$INTLTOOL_EXTRACT"; then AC_MSG_ERROR([The intltool scripts were not found. Please install intltool.]) fi if test -z "$AM_DEFAULT_VERBOSITY"; then AM_DEFAULT_VERBOSITY=1 fi AC_SUBST([AM_DEFAULT_VERBOSITY]) INTLTOOL_V_MERGE='$(INTLTOOL__v_MERGE_$(V))' INTLTOOL__v_MERGE_='$(INTLTOOL__v_MERGE_$(AM_DEFAULT_VERBOSITY))' INTLTOOL__v_MERGE_0='@echo " ITMRG " [$]@;' AC_SUBST(INTLTOOL_V_MERGE) AC_SUBST(INTLTOOL__v_MERGE_) AC_SUBST(INTLTOOL__v_MERGE_0) INTLTOOL_V_MERGE_OPTIONS='$(intltool__v_merge_options_$(V))' intltool__v_merge_options_='$(intltool__v_merge_options_$(AM_DEFAULT_VERBOSITY))' intltool__v_merge_options_0='-q' AC_SUBST(INTLTOOL_V_MERGE_OPTIONS) AC_SUBST(intltool__v_merge_options_) AC_SUBST(intltool__v_merge_options_0) INTLTOOL_DESKTOP_RULE='%.desktop: %.desktop.in $(INTLTOOL_MERGE) $(wildcard $(top_srcdir)/po/*.po) ; $(INTLTOOL_V_MERGE)LC_ALL=C $(INTLTOOL_MERGE) $(INTLTOOL_V_MERGE_OPTIONS) -d -u -c $(top_builddir)/po/.intltool-merge-cache $(top_srcdir)/po $< [$]@' INTLTOOL_DIRECTORY_RULE='%.directory: %.directory.in $(INTLTOOL_MERGE) $(wildcard $(top_srcdir)/po/*.po) ; $(INTLTOOL_V_MERGE)LC_ALL=C $(INTLTOOL_MERGE) $(INTLTOOL_V_MERGE_OPTIONS) -d -u -c $(top_builddir)/po/.intltool-merge-cache $(top_srcdir)/po $< [$]@' INTLTOOL_KEYS_RULE='%.keys: %.keys.in $(INTLTOOL_MERGE) $(wildcard $(top_srcdir)/po/*.po) ; $(INTLTOOL_V_MERGE)LC_ALL=C $(INTLTOOL_MERGE) $(INTLTOOL_V_MERGE_OPTIONS) -k -u -c $(top_builddir)/po/.intltool-merge-cache $(top_srcdir)/po $< [$]@' INTLTOOL_PROP_RULE='%.prop: %.prop.in $(INTLTOOL_MERGE) $(wildcard $(top_srcdir)/po/*.po) ; $(INTLTOOL_V_MERGE)LC_ALL=C $(INTLTOOL_MERGE) $(INTLTOOL_V_MERGE_OPTIONS) -d -u -c $(top_builddir)/po/.intltool-merge-cache $(top_srcdir)/po $< [$]@' INTLTOOL_OAF_RULE='%.oaf: %.oaf.in $(INTLTOOL_MERGE) $(wildcard $(top_srcdir)/po/*.po) ; $(INTLTOOL_V_MERGE)LC_ALL=C $(INTLTOOL_MERGE) $(INTLTOOL_V_MERGE_OPTIONS) -o -p $(top_srcdir)/po $< [$]@' INTLTOOL_PONG_RULE='%.pong: %.pong.in $(INTLTOOL_MERGE) $(wildcard $(top_srcdir)/po/*.po) ; $(INTLTOOL_V_MERGE)LC_ALL=C $(INTLTOOL_MERGE) $(INTLTOOL_V_MERGE_OPTIONS) -x -u -c $(top_builddir)/po/.intltool-merge-cache $(top_srcdir)/po $< [$]@' INTLTOOL_SERVER_RULE='%.server: %.server.in $(INTLTOOL_MERGE) $(wildcard $(top_srcdir)/po/*.po) ; $(INTLTOOL_V_MERGE)LC_ALL=C $(INTLTOOL_MERGE) $(INTLTOOL_V_MERGE_OPTIONS) -o -u -c $(top_builddir)/po/.intltool-merge-cache $(top_srcdir)/po $< [$]@' INTLTOOL_SHEET_RULE='%.sheet: %.sheet.in $(INTLTOOL_MERGE) $(wildcard $(top_srcdir)/po/*.po) ; $(INTLTOOL_V_MERGE)LC_ALL=C $(INTLTOOL_MERGE) $(INTLTOOL_V_MERGE_OPTIONS) -x -u -c $(top_builddir)/po/.intltool-merge-cache $(top_srcdir)/po $< [$]@' INTLTOOL_SOUNDLIST_RULE='%.soundlist: %.soundlist.in $(INTLTOOL_MERGE) $(wildcard $(top_srcdir)/po/*.po) ; $(INTLTOOL_V_MERGE)LC_ALL=C $(INTLTOOL_MERGE) $(INTLTOOL_V_MERGE_OPTIONS) -d -u -c $(top_builddir)/po/.intltool-merge-cache $(top_srcdir)/po $< [$]@' INTLTOOL_UI_RULE='%.ui: %.ui.in $(INTLTOOL_MERGE) $(wildcard $(top_srcdir)/po/*.po) ; $(INTLTOOL_V_MERGE)LC_ALL=C $(INTLTOOL_MERGE) $(INTLTOOL_V_MERGE_OPTIONS) -x -u -c $(top_builddir)/po/.intltool-merge-cache $(top_srcdir)/po $< [$]@' INTLTOOL_XML_RULE='%.xml: %.xml.in $(INTLTOOL_MERGE) $(wildcard $(top_srcdir)/po/*.po) ; $(INTLTOOL_V_MERGE)LC_ALL=C $(INTLTOOL_MERGE) $(INTLTOOL_V_MERGE_OPTIONS) -x -u -c $(top_builddir)/po/.intltool-merge-cache $(top_srcdir)/po $< [$]@' if test "$INTLTOOL_APPLIED_VERSION_AS_INT" -ge 5000; then INTLTOOL_XML_NOMERGE_RULE='%.xml: %.xml.in $(INTLTOOL_MERGE) ; $(INTLTOOL_V_MERGE)LC_ALL=C $(INTLTOOL_MERGE) $(INTLTOOL_V_MERGE_OPTIONS) -x -u --no-translations $< [$]@' else INTLTOOL_XML_NOMERGE_RULE='%.xml: %.xml.in $(INTLTOOL_MERGE) ; $(INTLTOOL_V_MERGE)_it_tmp_dir=tmp.intltool.[$][$]RANDOM && mkdir [$][$]_it_tmp_dir && LC_ALL=C $(INTLTOOL_MERGE) $(INTLTOOL_V_MERGE_OPTIONS) -x -u [$][$]_it_tmp_dir $< [$]@ && rmdir [$][$]_it_tmp_dir' fi INTLTOOL_XAM_RULE='%.xam: %.xml.in $(INTLTOOL_MERGE) $(wildcard $(top_srcdir)/po/*.po) ; $(INTLTOOL_V_MERGE)LC_ALL=C $(INTLTOOL_MERGE) $(INTLTOOL_V_MERGE_OPTIONS) -x -u -c $(top_builddir)/po/.intltool-merge-cache $(top_srcdir)/po $< [$]@' INTLTOOL_KBD_RULE='%.kbd: %.kbd.in $(INTLTOOL_MERGE) $(wildcard $(top_srcdir)/po/*.po) ; $(INTLTOOL_V_MERGE)LC_ALL=C $(INTLTOOL_MERGE) $(INTLTOOL_V_MERGE_OPTIONS) -x -u -m -c $(top_builddir)/po/.intltool-merge-cache $(top_srcdir)/po $< [$]@' INTLTOOL_CAVES_RULE='%.caves: %.caves.in $(INTLTOOL_MERGE) $(wildcard $(top_srcdir)/po/*.po) ; $(INTLTOOL_V_MERGE)LC_ALL=C $(INTLTOOL_MERGE) $(INTLTOOL_V_MERGE_OPTIONS) -d -u -c $(top_builddir)/po/.intltool-merge-cache $(top_srcdir)/po $< [$]@' INTLTOOL_SCHEMAS_RULE='%.schemas: %.schemas.in $(INTLTOOL_MERGE) $(wildcard $(top_srcdir)/po/*.po) ; $(INTLTOOL_V_MERGE)LC_ALL=C $(INTLTOOL_MERGE) $(INTLTOOL_V_MERGE_OPTIONS) -s -u -c $(top_builddir)/po/.intltool-merge-cache $(top_srcdir)/po $< [$]@' INTLTOOL_THEME_RULE='%.theme: %.theme.in $(INTLTOOL_MERGE) $(wildcard $(top_srcdir)/po/*.po) ; $(INTLTOOL_V_MERGE)LC_ALL=C $(INTLTOOL_MERGE) $(INTLTOOL_V_MERGE_OPTIONS) -d -u -c $(top_builddir)/po/.intltool-merge-cache $(top_srcdir)/po $< [$]@' INTLTOOL_SERVICE_RULE='%.service: %.service.in $(INTLTOOL_MERGE) $(wildcard $(top_srcdir)/po/*.po) ; $(INTLTOOL_V_MERGE)LC_ALL=C $(INTLTOOL_MERGE) $(INTLTOOL_V_MERGE_OPTIONS) -d -u -c $(top_builddir)/po/.intltool-merge-cache $(top_srcdir)/po $< [$]@' INTLTOOL_POLICY_RULE='%.policy: %.policy.in $(INTLTOOL_MERGE) $(wildcard $(top_srcdir)/po/*.po) ; $(INTLTOOL_V_MERGE)LC_ALL=C $(INTLTOOL_MERGE) $(INTLTOOL_V_MERGE_OPTIONS) -x -u -c $(top_builddir)/po/.intltool-merge-cache $(top_srcdir)/po $< [$]@' _IT_SUBST(INTLTOOL_DESKTOP_RULE) _IT_SUBST(INTLTOOL_DIRECTORY_RULE) _IT_SUBST(INTLTOOL_KEYS_RULE) _IT_SUBST(INTLTOOL_PROP_RULE) _IT_SUBST(INTLTOOL_OAF_RULE) _IT_SUBST(INTLTOOL_PONG_RULE) _IT_SUBST(INTLTOOL_SERVER_RULE) _IT_SUBST(INTLTOOL_SHEET_RULE) _IT_SUBST(INTLTOOL_SOUNDLIST_RULE) _IT_SUBST(INTLTOOL_UI_RULE) _IT_SUBST(INTLTOOL_XAM_RULE) _IT_SUBST(INTLTOOL_KBD_RULE) _IT_SUBST(INTLTOOL_XML_RULE) _IT_SUBST(INTLTOOL_XML_NOMERGE_RULE) _IT_SUBST(INTLTOOL_CAVES_RULE) _IT_SUBST(INTLTOOL_SCHEMAS_RULE) _IT_SUBST(INTLTOOL_THEME_RULE) _IT_SUBST(INTLTOOL_SERVICE_RULE) _IT_SUBST(INTLTOOL_POLICY_RULE) # Check the gettext tools to make sure they are GNU AC_PATH_PROG(XGETTEXT, xgettext) AC_PATH_PROG(MSGMERGE, msgmerge) AC_PATH_PROG(MSGFMT, msgfmt) AC_PATH_PROG(GMSGFMT, gmsgfmt, $MSGFMT) if test -z "$XGETTEXT" -o -z "$MSGMERGE" -o -z "$MSGFMT"; then AC_MSG_ERROR([GNU gettext tools not found; required for intltool]) fi xgversion="`$XGETTEXT --version|grep '(GNU ' 2> /dev/null`" mmversion="`$MSGMERGE --version|grep '(GNU ' 2> /dev/null`" mfversion="`$MSGFMT --version|grep '(GNU ' 2> /dev/null`" if test -z "$xgversion" -o -z "$mmversion" -o -z "$mfversion"; then AC_MSG_ERROR([GNU gettext tools not found; required for intltool]) fi AC_PATH_PROG(INTLTOOL_PERL, perl) if test -z "$INTLTOOL_PERL"; then AC_MSG_ERROR([perl not found]) fi AC_MSG_CHECKING([for perl >= 5.8.1]) $INTLTOOL_PERL -e "use 5.8.1;" > /dev/null 2>&1 if test $? -ne 0; then AC_MSG_ERROR([perl 5.8.1 is required for intltool]) else IT_PERL_VERSION=`$INTLTOOL_PERL -e "printf '%vd', $^V"` AC_MSG_RESULT([$IT_PERL_VERSION]) fi if test "x$2" != "xno-xml"; then AC_MSG_CHECKING([for XML::Parser]) if `$INTLTOOL_PERL -e "require XML::Parser" 2>/dev/null`; then AC_MSG_RESULT([ok]) else AC_MSG_ERROR([XML::Parser perl module is required for intltool]) fi fi # Substitute ALL_LINGUAS so we can use it in po/Makefile AC_SUBST(ALL_LINGUAS) # Set DATADIRNAME correctly if it is not set yet # (copied from glib-gettext.m4) if test -z "$DATADIRNAME"; then AC_LINK_IFELSE( [AC_LANG_PROGRAM([[]], [[extern int _nl_msg_cat_cntr; return _nl_msg_cat_cntr]])], [DATADIRNAME=share], [case $host in *-*-solaris*) dnl On Solaris, if bind_textdomain_codeset is in libc, dnl GNU format message catalog is always supported, dnl since both are added to the libc all together. dnl Hence, we'd like to go with DATADIRNAME=share dnl in this case. AC_CHECK_FUNC(bind_textdomain_codeset, [DATADIRNAME=share], [DATADIRNAME=lib]) ;; *) [DATADIRNAME=lib] ;; esac]) fi AC_SUBST(DATADIRNAME) IT_PO_SUBDIR([po]) ]) # IT_PO_SUBDIR(DIRNAME) # --------------------- # All po subdirs have to be declared with this macro; the subdir "po" is # declared by IT_PROG_INTLTOOL. # AC_DEFUN([IT_PO_SUBDIR], [AC_PREREQ([2.53])dnl We use ac_top_srcdir inside AC_CONFIG_COMMANDS. dnl dnl The following CONFIG_COMMANDS should be executed at the very end dnl of config.status. AC_CONFIG_COMMANDS_PRE([ AC_CONFIG_COMMANDS([$1/stamp-it], [ if [ ! grep "^# INTLTOOL_MAKEFILE$" "$1/Makefile.in" > /dev/null ]; then AC_MSG_ERROR([$1/Makefile.in.in was not created by intltoolize.]) fi rm -f "$1/stamp-it" "$1/stamp-it.tmp" "$1/POTFILES" "$1/Makefile.tmp" >"$1/stamp-it.tmp" [sed '/^#/d s/^[[].*] *// /^[ ]*$/d '"s|^| $ac_top_srcdir/|" \ "$srcdir/$1/POTFILES.in" | sed '$!s/$/ \\/' >"$1/POTFILES" ] [sed '/^POTFILES =/,/[^\\]$/ { /^POTFILES =/!d r $1/POTFILES } ' "$1/Makefile.in" >"$1/Makefile"] rm -f "$1/Makefile.tmp" mv "$1/stamp-it.tmp" "$1/stamp-it" ]) ])dnl ]) # _IT_SUBST(VARIABLE) # ------------------- # Abstract macro to do either _AM_SUBST_NOTMAKE or AC_SUBST # AC_DEFUN([_IT_SUBST], [ AC_SUBST([$1]) m4_ifdef([_AM_SUBST_NOTMAKE], [_AM_SUBST_NOTMAKE([$1])]) ] ) # deprecated macros AU_ALIAS([AC_PROG_INTLTOOL], [IT_PROG_INTLTOOL]) # A hint is needed for aclocal from Automake <= 1.9.4: # AC_DEFUN([AC_PROG_INTLTOOL], ...) # nls.m4 serial 5 (gettext-0.18) dnl Copyright (C) 1995-2003, 2005-2006, 2008-2010 Free Software Foundation, dnl Inc. dnl This file is free software; the Free Software Foundation dnl gives unlimited permission to copy and/or distribute it, dnl with or without modifications, as long as this notice is preserved. dnl dnl This file can can be used in projects which are not available under dnl the GNU General Public License or the GNU Library General Public dnl License but which still want to provide support for the GNU gettext dnl functionality. dnl Please note that the actual code of the GNU gettext library is covered dnl by the GNU Library General Public License, and the rest of the GNU dnl gettext package package is covered by the GNU General Public License. dnl They are *not* in the public domain. dnl Authors: dnl Ulrich Drepper , 1995-2000. dnl Bruno Haible , 2000-2003. AC_PREREQ([2.50]) AC_DEFUN([AM_NLS], [ AC_MSG_CHECKING([whether NLS is requested]) dnl Default is enabled NLS AC_ARG_ENABLE([nls], [ --disable-nls do not use Native Language Support], USE_NLS=$enableval, USE_NLS=yes) AC_MSG_RESULT([$USE_NLS]) AC_SUBST([USE_NLS]) ]) # pkg.m4 - Macros to locate and utilise pkg-config. -*- Autoconf -*- # serial 1 (pkg-config-0.24) # # Copyright © 2004 Scott James Remnant . # # This program is free software; you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by # the Free Software Foundation; either version 2 of the License, or # (at your option) any later version. # # This program is distributed in the hope that it will be useful, but # WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU # General Public License for more details. # # You should have received a copy of the GNU General Public License # along with this program; if not, write to the Free Software # Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. # # As a special exception to the GNU General Public License, if you # distribute this file as part of a program that contains a # configuration script generated by Autoconf, you may include it under # the same distribution terms that you use for the rest of that program. # PKG_PROG_PKG_CONFIG([MIN-VERSION]) # ---------------------------------- AC_DEFUN([PKG_PROG_PKG_CONFIG], [m4_pattern_forbid([^_?PKG_[A-Z_]+$]) m4_pattern_allow([^PKG_CONFIG(_PATH)?$]) AC_ARG_VAR([PKG_CONFIG], [path to pkg-config utility]) AC_ARG_VAR([PKG_CONFIG_PATH], [directories to add to pkg-config's search path]) AC_ARG_VAR([PKG_CONFIG_LIBDIR], [path overriding pkg-config's built-in search path]) if test "x$ac_cv_env_PKG_CONFIG_set" != "xset"; then AC_PATH_TOOL([PKG_CONFIG], [pkg-config]) fi if test -n "$PKG_CONFIG"; then _pkg_min_version=m4_default([$1], [0.9.0]) AC_MSG_CHECKING([pkg-config is at least version $_pkg_min_version]) if $PKG_CONFIG --atleast-pkgconfig-version $_pkg_min_version; then AC_MSG_RESULT([yes]) else AC_MSG_RESULT([no]) PKG_CONFIG="" fi fi[]dnl ])# PKG_PROG_PKG_CONFIG # PKG_CHECK_EXISTS(MODULES, [ACTION-IF-FOUND], [ACTION-IF-NOT-FOUND]) # # Check to see whether a particular set of modules exists. Similar # to PKG_CHECK_MODULES(), but does not set variables or print errors. # # Please remember that m4 expands AC_REQUIRE([PKG_PROG_PKG_CONFIG]) # only at the first occurence in configure.ac, so if the first place # it's called might be skipped (such as if it is within an "if", you # have to call PKG_CHECK_EXISTS manually # -------------------------------------------------------------- AC_DEFUN([PKG_CHECK_EXISTS], [AC_REQUIRE([PKG_PROG_PKG_CONFIG])dnl if test -n "$PKG_CONFIG" && \ AC_RUN_LOG([$PKG_CONFIG --exists --print-errors "$1"]); then m4_default([$2], [:]) m4_ifvaln([$3], [else $3])dnl fi]) # _PKG_CONFIG([VARIABLE], [COMMAND], [MODULES]) # --------------------------------------------- m4_define([_PKG_CONFIG], [if test -n "$$1"; then pkg_cv_[]$1="$$1" elif test -n "$PKG_CONFIG"; then PKG_CHECK_EXISTS([$3], [pkg_cv_[]$1=`$PKG_CONFIG --[]$2 "$3" 2>/dev/null`], [pkg_failed=yes]) else pkg_failed=untried fi[]dnl ])# _PKG_CONFIG # _PKG_SHORT_ERRORS_SUPPORTED # ----------------------------- AC_DEFUN([_PKG_SHORT_ERRORS_SUPPORTED], [AC_REQUIRE([PKG_PROG_PKG_CONFIG]) if $PKG_CONFIG --atleast-pkgconfig-version 0.20; then _pkg_short_errors_supported=yes else _pkg_short_errors_supported=no fi[]dnl ])# _PKG_SHORT_ERRORS_SUPPORTED # PKG_CHECK_MODULES(VARIABLE-PREFIX, MODULES, [ACTION-IF-FOUND], # [ACTION-IF-NOT-FOUND]) # # # Note that if there is a possibility the first call to # PKG_CHECK_MODULES might not happen, you should be sure to include an # explicit call to PKG_PROG_PKG_CONFIG in your configure.ac # # # -------------------------------------------------------------- AC_DEFUN([PKG_CHECK_MODULES], [AC_REQUIRE([PKG_PROG_PKG_CONFIG])dnl AC_ARG_VAR([$1][_CFLAGS], [C compiler flags for $1, overriding pkg-config])dnl AC_ARG_VAR([$1][_LIBS], [linker flags for $1, overriding pkg-config])dnl pkg_failed=no AC_MSG_CHECKING([for $1]) _PKG_CONFIG([$1][_CFLAGS], [cflags], [$2]) _PKG_CONFIG([$1][_LIBS], [libs], [$2]) m4_define([_PKG_TEXT], [Alternatively, you may set the environment variables $1[]_CFLAGS and $1[]_LIBS to avoid the need to call pkg-config. See the pkg-config man page for more details.]) if test $pkg_failed = yes; then AC_MSG_RESULT([no]) _PKG_SHORT_ERRORS_SUPPORTED if test $_pkg_short_errors_supported = yes; then $1[]_PKG_ERRORS=`$PKG_CONFIG --short-errors --print-errors "$2" 2>&1` else $1[]_PKG_ERRORS=`$PKG_CONFIG --print-errors "$2" 2>&1` fi # Put the nasty error message in config.log where it belongs echo "$$1[]_PKG_ERRORS" >&AS_MESSAGE_LOG_FD m4_default([$4], [AC_MSG_ERROR( [Package requirements ($2) were not met: $$1_PKG_ERRORS Consider adjusting the PKG_CONFIG_PATH environment variable if you installed software in a non-standard prefix. _PKG_TEXT]) ]) elif test $pkg_failed = untried; then AC_MSG_RESULT([no]) m4_default([$4], [AC_MSG_FAILURE( [The pkg-config script could not be found or is too old. Make sure it is in your PATH or set the PKG_CONFIG environment variable to the full path to pkg-config. _PKG_TEXT To get pkg-config, see .]) ]) else $1[]_CFLAGS=$pkg_cv_[]$1[]_CFLAGS $1[]_LIBS=$pkg_cv_[]$1[]_LIBS AC_MSG_RESULT([yes]) $3 fi[]dnl ])# PKG_CHECK_MODULES # Copyright (C) 2002, 2003, 2005, 2006, 2007, 2008, 2011 Free Software # Foundation, Inc. # # This file is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, # with or without modifications, as long as this notice is preserved. # serial 1 # AM_AUTOMAKE_VERSION(VERSION) # ---------------------------- # Automake X.Y traces this macro to ensure aclocal.m4 has been # generated from the m4 files accompanying Automake X.Y. # (This private macro should not be called outside this file.) AC_DEFUN([AM_AUTOMAKE_VERSION], [am__api_version='1.11' dnl Some users find AM_AUTOMAKE_VERSION and mistake it for a way to dnl require some minimum version. Point them to the right macro. m4_if([$1], [1.11.3], [], [AC_FATAL([Do not call $0, use AM_INIT_AUTOMAKE([$1]).])])dnl ]) # _AM_AUTOCONF_VERSION(VERSION) # ----------------------------- # aclocal traces this macro to find the Autoconf version. # This is a private macro too. Using m4_define simplifies # the logic in aclocal, which can simply ignore this definition. m4_define([_AM_AUTOCONF_VERSION], []) # AM_SET_CURRENT_AUTOMAKE_VERSION # ------------------------------- # Call AM_AUTOMAKE_VERSION and AM_AUTOMAKE_VERSION so they can be traced. # This function is AC_REQUIREd by AM_INIT_AUTOMAKE. AC_DEFUN([AM_SET_CURRENT_AUTOMAKE_VERSION], [AM_AUTOMAKE_VERSION([1.11.3])dnl m4_ifndef([AC_AUTOCONF_VERSION], [m4_copy([m4_PACKAGE_VERSION], [AC_AUTOCONF_VERSION])])dnl _AM_AUTOCONF_VERSION(m4_defn([AC_AUTOCONF_VERSION]))]) # AM_AUX_DIR_EXPAND -*- Autoconf -*- # Copyright (C) 2001, 2003, 2005, 2011 Free Software Foundation, Inc. # # This file is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, # with or without modifications, as long as this notice is preserved. # serial 1 # For projects using AC_CONFIG_AUX_DIR([foo]), Autoconf sets # $ac_aux_dir to `$srcdir/foo'. In other projects, it is set to # `$srcdir', `$srcdir/..', or `$srcdir/../..'. # # Of course, Automake must honor this variable whenever it calls a # tool from the auxiliary directory. The problem is that $srcdir (and # therefore $ac_aux_dir as well) can be either absolute or relative, # depending on how configure is run. This is pretty annoying, since # it makes $ac_aux_dir quite unusable in subdirectories: in the top # source directory, any form will work fine, but in subdirectories a # relative path needs to be adjusted first. # # $ac_aux_dir/missing # fails when called from a subdirectory if $ac_aux_dir is relative # $top_srcdir/$ac_aux_dir/missing # fails if $ac_aux_dir is absolute, # fails when called from a subdirectory in a VPATH build with # a relative $ac_aux_dir # # The reason of the latter failure is that $top_srcdir and $ac_aux_dir # are both prefixed by $srcdir. In an in-source build this is usually # harmless because $srcdir is `.', but things will broke when you # start a VPATH build or use an absolute $srcdir. # # So we could use something similar to $top_srcdir/$ac_aux_dir/missing, # iff we strip the leading $srcdir from $ac_aux_dir. That would be: # am_aux_dir='\$(top_srcdir)/'`expr "$ac_aux_dir" : "$srcdir//*\(.*\)"` # and then we would define $MISSING as # MISSING="\${SHELL} $am_aux_dir/missing" # This will work as long as MISSING is not called from configure, because # unfortunately $(top_srcdir) has no meaning in configure. # However there are other variables, like CC, which are often used in # configure, and could therefore not use this "fixed" $ac_aux_dir. # # Another solution, used here, is to always expand $ac_aux_dir to an # absolute PATH. The drawback is that using absolute paths prevent a # configured tree to be moved without reconfiguration. AC_DEFUN([AM_AUX_DIR_EXPAND], [dnl Rely on autoconf to set up CDPATH properly. AC_PREREQ([2.50])dnl # expand $ac_aux_dir to an absolute path am_aux_dir=`cd $ac_aux_dir && pwd` ]) # Copyright (C) 1996, 1997, 1999, 2000, 2001, 2002, 2003, 2005 # Free Software Foundation, Inc. # # This file is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, # with or without modifications, as long as this notice is preserved. # serial 4 # This was merged into AC_PROG_CC in Autoconf. AU_DEFUN([AM_PROG_CC_STDC], [AC_PROG_CC AC_DIAGNOSE([obsolete], [$0: your code should no longer depend upon `am_cv_prog_cc_stdc', but upon `ac_cv_prog_cc_stdc'. Remove this warning and the assignment when you adjust the code. You can also remove the above call to AC_PROG_CC if you already called it elsewhere.]) am_cv_prog_cc_stdc=$ac_cv_prog_cc_stdc ]) AU_DEFUN([fp_PROG_CC_STDC]) # AM_CONDITIONAL -*- Autoconf -*- # Copyright (C) 1997, 2000, 2001, 2003, 2004, 2005, 2006, 2008 # Free Software Foundation, Inc. # # This file is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, # with or without modifications, as long as this notice is preserved. # serial 9 # AM_CONDITIONAL(NAME, SHELL-CONDITION) # ------------------------------------- # Define a conditional. AC_DEFUN([AM_CONDITIONAL], [AC_PREREQ(2.52)dnl ifelse([$1], [TRUE], [AC_FATAL([$0: invalid condition: $1])], [$1], [FALSE], [AC_FATAL([$0: invalid condition: $1])])dnl AC_SUBST([$1_TRUE])dnl AC_SUBST([$1_FALSE])dnl _AM_SUBST_NOTMAKE([$1_TRUE])dnl _AM_SUBST_NOTMAKE([$1_FALSE])dnl m4_define([_AM_COND_VALUE_$1], [$2])dnl if $2; then $1_TRUE= $1_FALSE='#' else $1_TRUE='#' $1_FALSE= fi AC_CONFIG_COMMANDS_PRE( [if test -z "${$1_TRUE}" && test -z "${$1_FALSE}"; then AC_MSG_ERROR([[conditional "$1" was never defined. Usually this means the macro was only invoked conditionally.]]) fi])]) # Copyright (C) 1999, 2000, 2001, 2002, 2003, 2004, 2005, 2006, 2009, # 2010, 2011 Free Software Foundation, Inc. # # This file is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, # with or without modifications, as long as this notice is preserved. # serial 12 # There are a few dirty hacks below to avoid letting `AC_PROG_CC' be # written in clear, in which case automake, when reading aclocal.m4, # will think it sees a *use*, and therefore will trigger all it's # C support machinery. Also note that it means that autoscan, seeing # CC etc. in the Makefile, will ask for an AC_PROG_CC use... # _AM_DEPENDENCIES(NAME) # ---------------------- # See how the compiler implements dependency checking. # NAME is "CC", "CXX", "GCJ", or "OBJC". # We try a few techniques and use that to set a single cache variable. # # We don't AC_REQUIRE the corresponding AC_PROG_CC since the latter was # modified to invoke _AM_DEPENDENCIES(CC); we would have a circular # dependency, and given that the user is not expected to run this macro, # just rely on AC_PROG_CC. AC_DEFUN([_AM_DEPENDENCIES], [AC_REQUIRE([AM_SET_DEPDIR])dnl AC_REQUIRE([AM_OUTPUT_DEPENDENCY_COMMANDS])dnl AC_REQUIRE([AM_MAKE_INCLUDE])dnl AC_REQUIRE([AM_DEP_TRACK])dnl ifelse([$1], CC, [depcc="$CC" am_compiler_list=], [$1], CXX, [depcc="$CXX" am_compiler_list=], [$1], OBJC, [depcc="$OBJC" am_compiler_list='gcc3 gcc'], [$1], UPC, [depcc="$UPC" am_compiler_list=], [$1], GCJ, [depcc="$GCJ" am_compiler_list='gcc3 gcc'], [depcc="$$1" am_compiler_list=]) AC_CACHE_CHECK([dependency style of $depcc], [am_cv_$1_dependencies_compiler_type], [if test -z "$AMDEP_TRUE" && test -f "$am_depcomp"; then # We make a subdir and do the tests there. Otherwise we can end up # making bogus files that we don't know about and never remove. For # instance it was reported that on HP-UX the gcc test will end up # making a dummy file named `D' -- because `-MD' means `put the output # in D'. rm -rf conftest.dir mkdir conftest.dir # Copy depcomp to subdir because otherwise we won't find it if we're # using a relative directory. cp "$am_depcomp" conftest.dir cd conftest.dir # We will build objects and dependencies in a subdirectory because # it helps to detect inapplicable dependency modes. For instance # both Tru64's cc and ICC support -MD to output dependencies as a # side effect of compilation, but ICC will put the dependencies in # the current directory while Tru64 will put them in the object # directory. mkdir sub am_cv_$1_dependencies_compiler_type=none if test "$am_compiler_list" = ""; then am_compiler_list=`sed -n ['s/^#*\([a-zA-Z0-9]*\))$/\1/p'] < ./depcomp` fi am__universal=false m4_case([$1], [CC], [case " $depcc " in #( *\ -arch\ *\ -arch\ *) am__universal=true ;; esac], [CXX], [case " $depcc " in #( *\ -arch\ *\ -arch\ *) am__universal=true ;; esac]) for depmode in $am_compiler_list; do # Setup a source with many dependencies, because some compilers # like to wrap large dependency lists on column 80 (with \), and # we should not choose a depcomp mode which is confused by this. # # We need to recreate these files for each test, as the compiler may # overwrite some of them when testing with obscure command lines. # This happens at least with the AIX C compiler. : > sub/conftest.c for i in 1 2 3 4 5 6; do echo '#include "conftst'$i'.h"' >> sub/conftest.c # Using `: > sub/conftst$i.h' creates only sub/conftst1.h with # Solaris 8's {/usr,}/bin/sh. touch sub/conftst$i.h done echo "${am__include} ${am__quote}sub/conftest.Po${am__quote}" > confmf # We check with `-c' and `-o' for the sake of the "dashmstdout" # mode. It turns out that the SunPro C++ compiler does not properly # handle `-M -o', and we need to detect this. Also, some Intel # versions had trouble with output in subdirs am__obj=sub/conftest.${OBJEXT-o} am__minus_obj="-o $am__obj" case $depmode in gcc) # This depmode causes a compiler race in universal mode. test "$am__universal" = false || continue ;; nosideeffect) # after this tag, mechanisms are not by side-effect, so they'll # only be used when explicitly requested if test "x$enable_dependency_tracking" = xyes; then continue else break fi ;; msvc7 | msvc7msys | msvisualcpp | msvcmsys) # This compiler won't grok `-c -o', but also, the minuso test has # not run yet. These depmodes are late enough in the game, and # so weak that their functioning should not be impacted. am__obj=conftest.${OBJEXT-o} am__minus_obj= ;; none) break ;; esac if depmode=$depmode \ source=sub/conftest.c object=$am__obj \ depfile=sub/conftest.Po tmpdepfile=sub/conftest.TPo \ $SHELL ./depcomp $depcc -c $am__minus_obj sub/conftest.c \ >/dev/null 2>conftest.err && grep sub/conftst1.h sub/conftest.Po > /dev/null 2>&1 && grep sub/conftst6.h sub/conftest.Po > /dev/null 2>&1 && grep $am__obj sub/conftest.Po > /dev/null 2>&1 && ${MAKE-make} -s -f confmf > /dev/null 2>&1; then # icc doesn't choke on unknown options, it will just issue warnings # or remarks (even with -Werror). So we grep stderr for any message # that says an option was ignored or not supported. # When given -MP, icc 7.0 and 7.1 complain thusly: # icc: Command line warning: ignoring option '-M'; no argument required # The diagnosis changed in icc 8.0: # icc: Command line remark: option '-MP' not supported if (grep 'ignoring option' conftest.err || grep 'not supported' conftest.err) >/dev/null 2>&1; then :; else am_cv_$1_dependencies_compiler_type=$depmode break fi fi done cd .. rm -rf conftest.dir else am_cv_$1_dependencies_compiler_type=none fi ]) AC_SUBST([$1DEPMODE], [depmode=$am_cv_$1_dependencies_compiler_type]) AM_CONDITIONAL([am__fastdep$1], [ test "x$enable_dependency_tracking" != xno \ && test "$am_cv_$1_dependencies_compiler_type" = gcc3]) ]) # AM_SET_DEPDIR # ------------- # Choose a directory name for dependency files. # This macro is AC_REQUIREd in _AM_DEPENDENCIES AC_DEFUN([AM_SET_DEPDIR], [AC_REQUIRE([AM_SET_LEADING_DOT])dnl AC_SUBST([DEPDIR], ["${am__leading_dot}deps"])dnl ]) # AM_DEP_TRACK # ------------ AC_DEFUN([AM_DEP_TRACK], [AC_ARG_ENABLE(dependency-tracking, [ --disable-dependency-tracking speeds up one-time build --enable-dependency-tracking do not reject slow dependency extractors]) if test "x$enable_dependency_tracking" != xno; then am_depcomp="$ac_aux_dir/depcomp" AMDEPBACKSLASH='\' am__nodep='_no' fi AM_CONDITIONAL([AMDEP], [test "x$enable_dependency_tracking" != xno]) AC_SUBST([AMDEPBACKSLASH])dnl _AM_SUBST_NOTMAKE([AMDEPBACKSLASH])dnl AC_SUBST([am__nodep])dnl _AM_SUBST_NOTMAKE([am__nodep])dnl ]) # Generate code to set up dependency tracking. -*- Autoconf -*- # Copyright (C) 1999, 2000, 2001, 2002, 2003, 2004, 2005, 2008 # Free Software Foundation, Inc. # # This file is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, # with or without modifications, as long as this notice is preserved. #serial 5 # _AM_OUTPUT_DEPENDENCY_COMMANDS # ------------------------------ AC_DEFUN([_AM_OUTPUT_DEPENDENCY_COMMANDS], [{ # Autoconf 2.62 quotes --file arguments for eval, but not when files # are listed without --file. Let's play safe and only enable the eval # if we detect the quoting. case $CONFIG_FILES in *\'*) eval set x "$CONFIG_FILES" ;; *) set x $CONFIG_FILES ;; esac shift for mf do # Strip MF so we end up with the name of the file. mf=`echo "$mf" | sed -e 's/:.*$//'` # Check whether this is an Automake generated Makefile or not. # We used to match only the files named `Makefile.in', but # some people rename them; so instead we look at the file content. # Grep'ing the first line is not enough: some people post-process # each Makefile.in and add a new line on top of each file to say so. # Grep'ing the whole file is not good either: AIX grep has a line # limit of 2048, but all sed's we know have understand at least 4000. if sed -n 's,^#.*generated by automake.*,X,p' "$mf" | grep X >/dev/null 2>&1; then dirpart=`AS_DIRNAME("$mf")` else continue fi # Extract the definition of DEPDIR, am__include, and am__quote # from the Makefile without running `make'. DEPDIR=`sed -n 's/^DEPDIR = //p' < "$mf"` test -z "$DEPDIR" && continue am__include=`sed -n 's/^am__include = //p' < "$mf"` test -z "am__include" && continue am__quote=`sed -n 's/^am__quote = //p' < "$mf"` # When using ansi2knr, U may be empty or an underscore; expand it U=`sed -n 's/^U = //p' < "$mf"` # Find all dependency output files, they are included files with # $(DEPDIR) in their names. We invoke sed twice because it is the # simplest approach to changing $(DEPDIR) to its actual value in the # expansion. for file in `sed -n " s/^$am__include $am__quote\(.*(DEPDIR).*\)$am__quote"'$/\1/p' <"$mf" | \ sed -e 's/\$(DEPDIR)/'"$DEPDIR"'/g' -e 's/\$U/'"$U"'/g'`; do # Make sure the directory exists. test -f "$dirpart/$file" && continue fdir=`AS_DIRNAME(["$file"])` AS_MKDIR_P([$dirpart/$fdir]) # echo "creating $dirpart/$file" echo '# dummy' > "$dirpart/$file" done done } ])# _AM_OUTPUT_DEPENDENCY_COMMANDS # AM_OUTPUT_DEPENDENCY_COMMANDS # ----------------------------- # This macro should only be invoked once -- use via AC_REQUIRE. # # This code is only required when automatic dependency tracking # is enabled. FIXME. This creates each `.P' file that we will # need in order to bootstrap the dependency handling code. AC_DEFUN([AM_OUTPUT_DEPENDENCY_COMMANDS], [AC_CONFIG_COMMANDS([depfiles], [test x"$AMDEP_TRUE" != x"" || _AM_OUTPUT_DEPENDENCY_COMMANDS], [AMDEP_TRUE="$AMDEP_TRUE" ac_aux_dir="$ac_aux_dir"]) ]) # Copyright (C) 1996, 1997, 2000, 2001, 2003, 2005 # Free Software Foundation, Inc. # # This file is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, # with or without modifications, as long as this notice is preserved. # serial 8 # AM_CONFIG_HEADER is obsolete. It has been replaced by AC_CONFIG_HEADERS. AU_DEFUN([AM_CONFIG_HEADER], [AC_CONFIG_HEADERS($@)]) # Do all the work for Automake. -*- Autoconf -*- # Copyright (C) 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003, 2004, # 2005, 2006, 2008, 2009 Free Software Foundation, Inc. # # This file is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, # with or without modifications, as long as this notice is preserved. # serial 16 # This macro actually does too much. Some checks are only needed if # your package does certain things. But this isn't really a big deal. # AM_INIT_AUTOMAKE(PACKAGE, VERSION, [NO-DEFINE]) # AM_INIT_AUTOMAKE([OPTIONS]) # ----------------------------------------------- # The call with PACKAGE and VERSION arguments is the old style # call (pre autoconf-2.50), which is being phased out. PACKAGE # and VERSION should now be passed to AC_INIT and removed from # the call to AM_INIT_AUTOMAKE. # We support both call styles for the transition. After # the next Automake release, Autoconf can make the AC_INIT # arguments mandatory, and then we can depend on a new Autoconf # release and drop the old call support. AC_DEFUN([AM_INIT_AUTOMAKE], [AC_PREREQ([2.62])dnl dnl Autoconf wants to disallow AM_ names. We explicitly allow dnl the ones we care about. m4_pattern_allow([^AM_[A-Z]+FLAGS$])dnl AC_REQUIRE([AM_SET_CURRENT_AUTOMAKE_VERSION])dnl AC_REQUIRE([AC_PROG_INSTALL])dnl if test "`cd $srcdir && pwd`" != "`pwd`"; then # Use -I$(srcdir) only when $(srcdir) != ., so that make's output # is not polluted with repeated "-I." AC_SUBST([am__isrc], [' -I$(srcdir)'])_AM_SUBST_NOTMAKE([am__isrc])dnl # test to see if srcdir already configured if test -f $srcdir/config.status; then AC_MSG_ERROR([source directory already configured; run "make distclean" there first]) fi fi # test whether we have cygpath if test -z "$CYGPATH_W"; then if (cygpath --version) >/dev/null 2>/dev/null; then CYGPATH_W='cygpath -w' else CYGPATH_W=echo fi fi AC_SUBST([CYGPATH_W]) # Define the identity of the package. dnl Distinguish between old-style and new-style calls. m4_ifval([$2], [m4_ifval([$3], [_AM_SET_OPTION([no-define])])dnl AC_SUBST([PACKAGE], [$1])dnl AC_SUBST([VERSION], [$2])], [_AM_SET_OPTIONS([$1])dnl dnl Diagnose old-style AC_INIT with new-style AM_AUTOMAKE_INIT. m4_if(m4_ifdef([AC_PACKAGE_NAME], 1)m4_ifdef([AC_PACKAGE_VERSION], 1), 11,, [m4_fatal([AC_INIT should be called with package and version arguments])])dnl AC_SUBST([PACKAGE], ['AC_PACKAGE_TARNAME'])dnl AC_SUBST([VERSION], ['AC_PACKAGE_VERSION'])])dnl _AM_IF_OPTION([no-define],, [AC_DEFINE_UNQUOTED(PACKAGE, "$PACKAGE", [Name of package]) AC_DEFINE_UNQUOTED(VERSION, "$VERSION", [Version number of package])])dnl # Some tools Automake needs. AC_REQUIRE([AM_SANITY_CHECK])dnl AC_REQUIRE([AC_ARG_PROGRAM])dnl AM_MISSING_PROG(ACLOCAL, aclocal-${am__api_version}) AM_MISSING_PROG(AUTOCONF, autoconf) AM_MISSING_PROG(AUTOMAKE, automake-${am__api_version}) AM_MISSING_PROG(AUTOHEADER, autoheader) AM_MISSING_PROG(MAKEINFO, makeinfo) AC_REQUIRE([AM_PROG_INSTALL_SH])dnl AC_REQUIRE([AM_PROG_INSTALL_STRIP])dnl AC_REQUIRE([AM_PROG_MKDIR_P])dnl # We need awk for the "check" target. The system "awk" is bad on # some platforms. AC_REQUIRE([AC_PROG_AWK])dnl AC_REQUIRE([AC_PROG_MAKE_SET])dnl AC_REQUIRE([AM_SET_LEADING_DOT])dnl _AM_IF_OPTION([tar-ustar], [_AM_PROG_TAR([ustar])], [_AM_IF_OPTION([tar-pax], [_AM_PROG_TAR([pax])], [_AM_PROG_TAR([v7])])]) _AM_IF_OPTION([no-dependencies],, [AC_PROVIDE_IFELSE([AC_PROG_CC], [_AM_DEPENDENCIES(CC)], [define([AC_PROG_CC], defn([AC_PROG_CC])[_AM_DEPENDENCIES(CC)])])dnl AC_PROVIDE_IFELSE([AC_PROG_CXX], [_AM_DEPENDENCIES(CXX)], [define([AC_PROG_CXX], defn([AC_PROG_CXX])[_AM_DEPENDENCIES(CXX)])])dnl AC_PROVIDE_IFELSE([AC_PROG_OBJC], [_AM_DEPENDENCIES(OBJC)], [define([AC_PROG_OBJC], defn([AC_PROG_OBJC])[_AM_DEPENDENCIES(OBJC)])])dnl ]) _AM_IF_OPTION([silent-rules], [AC_REQUIRE([AM_SILENT_RULES])])dnl dnl The `parallel-tests' driver may need to know about EXEEXT, so add the dnl `am__EXEEXT' conditional if _AM_COMPILER_EXEEXT was seen. This macro dnl is hooked onto _AC_COMPILER_EXEEXT early, see below. AC_CONFIG_COMMANDS_PRE(dnl [m4_provide_if([_AM_COMPILER_EXEEXT], [AM_CONDITIONAL([am__EXEEXT], [test -n "$EXEEXT"])])])dnl ]) dnl Hook into `_AC_COMPILER_EXEEXT' early to learn its expansion. Do not dnl add the conditional right here, as _AC_COMPILER_EXEEXT may be further dnl mangled by Autoconf and run in a shell conditional statement. m4_define([_AC_COMPILER_EXEEXT], m4_defn([_AC_COMPILER_EXEEXT])[m4_provide([_AM_COMPILER_EXEEXT])]) # When config.status generates a header, we must update the stamp-h file. # This file resides in the same directory as the config header # that is generated. The stamp files are numbered to have different names. # Autoconf calls _AC_AM_CONFIG_HEADER_HOOK (when defined) in the # loop where config.status creates the headers, so we can generate # our stamp files there. AC_DEFUN([_AC_AM_CONFIG_HEADER_HOOK], [# Compute $1's index in $config_headers. _am_arg=$1 _am_stamp_count=1 for _am_header in $config_headers :; do case $_am_header in $_am_arg | $_am_arg:* ) break ;; * ) _am_stamp_count=`expr $_am_stamp_count + 1` ;; esac done echo "timestamp for $_am_arg" >`AS_DIRNAME(["$_am_arg"])`/stamp-h[]$_am_stamp_count]) # Copyright (C) 2001, 2003, 2005, 2008, 2011 Free Software Foundation, # Inc. # # This file is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, # with or without modifications, as long as this notice is preserved. # serial 1 # AM_PROG_INSTALL_SH # ------------------ # Define $install_sh. AC_DEFUN([AM_PROG_INSTALL_SH], [AC_REQUIRE([AM_AUX_DIR_EXPAND])dnl if test x"${install_sh}" != xset; then case $am_aux_dir in *\ * | *\ *) install_sh="\${SHELL} '$am_aux_dir/install-sh'" ;; *) install_sh="\${SHELL} $am_aux_dir/install-sh" esac fi AC_SUBST(install_sh)]) # Copyright (C) 2003, 2005 Free Software Foundation, Inc. # # This file is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, # with or without modifications, as long as this notice is preserved. # serial 2 # Check whether the underlying file-system supports filenames # with a leading dot. For instance MS-DOS doesn't. AC_DEFUN([AM_SET_LEADING_DOT], [rm -rf .tst 2>/dev/null mkdir .tst 2>/dev/null if test -d .tst; then am__leading_dot=. else am__leading_dot=_ fi rmdir .tst 2>/dev/null AC_SUBST([am__leading_dot])]) # Add --enable-maintainer-mode option to configure. -*- Autoconf -*- # From Jim Meyering # Copyright (C) 1996, 1998, 2000, 2001, 2002, 2003, 2004, 2005, 2008, # 2011 Free Software Foundation, Inc. # # This file is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, # with or without modifications, as long as this notice is preserved. # serial 5 # AM_MAINTAINER_MODE([DEFAULT-MODE]) # ---------------------------------- # Control maintainer-specific portions of Makefiles. # Default is to disable them, unless `enable' is passed literally. # For symmetry, `disable' may be passed as well. Anyway, the user # can override the default with the --enable/--disable switch. AC_DEFUN([AM_MAINTAINER_MODE], [m4_case(m4_default([$1], [disable]), [enable], [m4_define([am_maintainer_other], [disable])], [disable], [m4_define([am_maintainer_other], [enable])], [m4_define([am_maintainer_other], [enable]) m4_warn([syntax], [unexpected argument to AM@&t@_MAINTAINER_MODE: $1])]) AC_MSG_CHECKING([whether to enable maintainer-specific portions of Makefiles]) dnl maintainer-mode's default is 'disable' unless 'enable' is passed AC_ARG_ENABLE([maintainer-mode], [ --][am_maintainer_other][-maintainer-mode am_maintainer_other make rules and dependencies not useful (and sometimes confusing) to the casual installer], [USE_MAINTAINER_MODE=$enableval], [USE_MAINTAINER_MODE=]m4_if(am_maintainer_other, [enable], [no], [yes])) AC_MSG_RESULT([$USE_MAINTAINER_MODE]) AM_CONDITIONAL([MAINTAINER_MODE], [test $USE_MAINTAINER_MODE = yes]) MAINT=$MAINTAINER_MODE_TRUE AC_SUBST([MAINT])dnl ] ) AU_DEFUN([jm_MAINTAINER_MODE], [AM_MAINTAINER_MODE]) # Check to see how 'make' treats includes. -*- Autoconf -*- # Copyright (C) 2001, 2002, 2003, 2005, 2009 Free Software Foundation, Inc. # # This file is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, # with or without modifications, as long as this notice is preserved. # serial 4 # AM_MAKE_INCLUDE() # ----------------- # Check to see how make treats includes. AC_DEFUN([AM_MAKE_INCLUDE], [am_make=${MAKE-make} cat > confinc << 'END' am__doit: @echo this is the am__doit target .PHONY: am__doit END # If we don't find an include directive, just comment out the code. AC_MSG_CHECKING([for style of include used by $am_make]) am__include="#" am__quote= _am_result=none # First try GNU make style include. echo "include confinc" > confmf # Ignore all kinds of additional output from `make'. case `$am_make -s -f confmf 2> /dev/null` in #( *the\ am__doit\ target*) am__include=include am__quote= _am_result=GNU ;; esac # Now try BSD make style include. if test "$am__include" = "#"; then echo '.include "confinc"' > confmf case `$am_make -s -f confmf 2> /dev/null` in #( *the\ am__doit\ target*) am__include=.include am__quote="\"" _am_result=BSD ;; esac fi AC_SUBST([am__include]) AC_SUBST([am__quote]) AC_MSG_RESULT([$_am_result]) rm -f confinc confmf ]) # Fake the existence of programs that GNU maintainers use. -*- Autoconf -*- # Copyright (C) 1997, 1999, 2000, 2001, 2003, 2004, 2005, 2008 # Free Software Foundation, Inc. # # This file is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, # with or without modifications, as long as this notice is preserved. # serial 6 # AM_MISSING_PROG(NAME, PROGRAM) # ------------------------------ AC_DEFUN([AM_MISSING_PROG], [AC_REQUIRE([AM_MISSING_HAS_RUN]) $1=${$1-"${am_missing_run}$2"} AC_SUBST($1)]) # AM_MISSING_HAS_RUN # ------------------ # Define MISSING if not defined so far and test if it supports --run. # If it does, set am_missing_run to use it, otherwise, to nothing. AC_DEFUN([AM_MISSING_HAS_RUN], [AC_REQUIRE([AM_AUX_DIR_EXPAND])dnl AC_REQUIRE_AUX_FILE([missing])dnl if test x"${MISSING+set}" != xset; then case $am_aux_dir in *\ * | *\ *) MISSING="\${SHELL} \"$am_aux_dir/missing\"" ;; *) MISSING="\${SHELL} $am_aux_dir/missing" ;; esac fi # Use eval to expand $SHELL if eval "$MISSING --run true"; then am_missing_run="$MISSING --run " else am_missing_run= AC_MSG_WARN([`missing' script is too old or missing]) fi ]) # Copyright (C) 2003, 2004, 2005, 2006, 2011 Free Software Foundation, # Inc. # # This file is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, # with or without modifications, as long as this notice is preserved. # serial 1 # AM_PROG_MKDIR_P # --------------- # Check for `mkdir -p'. AC_DEFUN([AM_PROG_MKDIR_P], [AC_PREREQ([2.60])dnl AC_REQUIRE([AC_PROG_MKDIR_P])dnl dnl Automake 1.8 to 1.9.6 used to define mkdir_p. We now use MKDIR_P, dnl while keeping a definition of mkdir_p for backward compatibility. dnl @MKDIR_P@ is magic: AC_OUTPUT adjusts its value for each Makefile. dnl However we cannot define mkdir_p as $(MKDIR_P) for the sake of dnl Makefile.ins that do not define MKDIR_P, so we do our own dnl adjustment using top_builddir (which is defined more often than dnl MKDIR_P). AC_SUBST([mkdir_p], ["$MKDIR_P"])dnl case $mkdir_p in [[\\/$]]* | ?:[[\\/]]*) ;; */*) mkdir_p="\$(top_builddir)/$mkdir_p" ;; esac ]) # Helper functions for option handling. -*- Autoconf -*- # Copyright (C) 2001, 2002, 2003, 2005, 2008, 2010 Free Software # Foundation, Inc. # # This file is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, # with or without modifications, as long as this notice is preserved. # serial 5 # _AM_MANGLE_OPTION(NAME) # ----------------------- AC_DEFUN([_AM_MANGLE_OPTION], [[_AM_OPTION_]m4_bpatsubst($1, [[^a-zA-Z0-9_]], [_])]) # _AM_SET_OPTION(NAME) # -------------------- # Set option NAME. Presently that only means defining a flag for this option. AC_DEFUN([_AM_SET_OPTION], [m4_define(_AM_MANGLE_OPTION([$1]), 1)]) # _AM_SET_OPTIONS(OPTIONS) # ------------------------ # OPTIONS is a space-separated list of Automake options. AC_DEFUN([_AM_SET_OPTIONS], [m4_foreach_w([_AM_Option], [$1], [_AM_SET_OPTION(_AM_Option)])]) # _AM_IF_OPTION(OPTION, IF-SET, [IF-NOT-SET]) # ------------------------------------------- # Execute IF-SET if OPTION is set, IF-NOT-SET otherwise. AC_DEFUN([_AM_IF_OPTION], [m4_ifset(_AM_MANGLE_OPTION([$1]), [$2], [$3])]) # Check to make sure that the build environment is sane. -*- Autoconf -*- # Copyright (C) 1996, 1997, 2000, 2001, 2003, 2005, 2008 # Free Software Foundation, Inc. # # This file is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, # with or without modifications, as long as this notice is preserved. # serial 5 # AM_SANITY_CHECK # --------------- AC_DEFUN([AM_SANITY_CHECK], [AC_MSG_CHECKING([whether build environment is sane]) # Just in case sleep 1 echo timestamp > conftest.file # Reject unsafe characters in $srcdir or the absolute working directory # name. Accept space and tab only in the latter. am_lf=' ' case `pwd` in *[[\\\"\#\$\&\'\`$am_lf]]*) AC_MSG_ERROR([unsafe absolute working directory name]);; esac case $srcdir in *[[\\\"\#\$\&\'\`$am_lf\ \ ]]*) AC_MSG_ERROR([unsafe srcdir value: `$srcdir']);; esac # Do `set' in a subshell so we don't clobber the current shell's # arguments. Must try -L first in case configure is actually a # symlink; some systems play weird games with the mod time of symlinks # (eg FreeBSD returns the mod time of the symlink's containing # directory). if ( set X `ls -Lt "$srcdir/configure" conftest.file 2> /dev/null` if test "$[*]" = "X"; then # -L didn't work. set X `ls -t "$srcdir/configure" conftest.file` fi rm -f conftest.file if test "$[*]" != "X $srcdir/configure conftest.file" \ && test "$[*]" != "X conftest.file $srcdir/configure"; then # If neither matched, then we have a broken ls. This can happen # if, for instance, CONFIG_SHELL is bash and it inherits a # broken ls alias from the environment. This has actually # happened. Such a system could not be considered "sane". AC_MSG_ERROR([ls -t appears to fail. Make sure there is not a broken alias in your environment]) fi test "$[2]" = conftest.file ) then # Ok. : else AC_MSG_ERROR([newly created file is older than distributed files! Check your system clock]) fi AC_MSG_RESULT(yes)]) # Copyright (C) 2001, 2003, 2005, 2011 Free Software Foundation, Inc. # # This file is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, # with or without modifications, as long as this notice is preserved. # serial 1 # AM_PROG_INSTALL_STRIP # --------------------- # One issue with vendor `install' (even GNU) is that you can't # specify the program used to strip binaries. This is especially # annoying in cross-compiling environments, where the build's strip # is unlikely to handle the host's binaries. # Fortunately install-sh will honor a STRIPPROG variable, so we # always use install-sh in `make install-strip', and initialize # STRIPPROG with the value of the STRIP variable (set by the user). AC_DEFUN([AM_PROG_INSTALL_STRIP], [AC_REQUIRE([AM_PROG_INSTALL_SH])dnl # Installed binaries are usually stripped using `strip' when the user # run `make install-strip'. However `strip' might not be the right # tool to use in cross-compilation environments, therefore Automake # will honor the `STRIP' environment variable to overrule this program. dnl Don't test for $cross_compiling = yes, because it might be `maybe'. if test "$cross_compiling" != no; then AC_CHECK_TOOL([STRIP], [strip], :) fi INSTALL_STRIP_PROGRAM="\$(install_sh) -c -s" AC_SUBST([INSTALL_STRIP_PROGRAM])]) # Copyright (C) 2006, 2008, 2010 Free Software Foundation, Inc. # # This file is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, # with or without modifications, as long as this notice is preserved. # serial 3 # _AM_SUBST_NOTMAKE(VARIABLE) # --------------------------- # Prevent Automake from outputting VARIABLE = @VARIABLE@ in Makefile.in. # This macro is traced by Automake. AC_DEFUN([_AM_SUBST_NOTMAKE]) # AM_SUBST_NOTMAKE(VARIABLE) # -------------------------- # Public sister of _AM_SUBST_NOTMAKE. AC_DEFUN([AM_SUBST_NOTMAKE], [_AM_SUBST_NOTMAKE($@)]) # Check how to create a tarball. -*- Autoconf -*- # Copyright (C) 2004, 2005, 2012 Free Software Foundation, Inc. # # This file is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, # with or without modifications, as long as this notice is preserved. # serial 2 # _AM_PROG_TAR(FORMAT) # -------------------- # Check how to create a tarball in format FORMAT. # FORMAT should be one of `v7', `ustar', or `pax'. # # Substitute a variable $(am__tar) that is a command # writing to stdout a FORMAT-tarball containing the directory # $tardir. # tardir=directory && $(am__tar) > result.tar # # Substitute a variable $(am__untar) that extract such # a tarball read from stdin. # $(am__untar) < result.tar AC_DEFUN([_AM_PROG_TAR], [# Always define AMTAR for backward compatibility. Yes, it's still used # in the wild :-( We should find a proper way to deprecate it ... AC_SUBST([AMTAR], ['$${TAR-tar}']) m4_if([$1], [v7], [am__tar='$${TAR-tar} chof - "$$tardir"' am__untar='$${TAR-tar} xf -'], [m4_case([$1], [ustar],, [pax],, [m4_fatal([Unknown tar format])]) AC_MSG_CHECKING([how to create a $1 tar archive]) # Loop over all known methods to create a tar archive until one works. _am_tools='gnutar m4_if([$1], [ustar], [plaintar]) pax cpio none' _am_tools=${am_cv_prog_tar_$1-$_am_tools} # Do not fold the above two line into one, because Tru64 sh and # Solaris sh will not grok spaces in the rhs of `-'. for _am_tool in $_am_tools do case $_am_tool in gnutar) for _am_tar in tar gnutar gtar; do AM_RUN_LOG([$_am_tar --version]) && break done am__tar="$_am_tar --format=m4_if([$1], [pax], [posix], [$1]) -chf - "'"$$tardir"' am__tar_="$_am_tar --format=m4_if([$1], [pax], [posix], [$1]) -chf - "'"$tardir"' am__untar="$_am_tar -xf -" ;; plaintar) # Must skip GNU tar: if it does not support --format= it doesn't create # ustar tarball either. (tar --version) >/dev/null 2>&1 && continue am__tar='tar chf - "$$tardir"' am__tar_='tar chf - "$tardir"' am__untar='tar xf -' ;; pax) am__tar='pax -L -x $1 -w "$$tardir"' am__tar_='pax -L -x $1 -w "$tardir"' am__untar='pax -r' ;; cpio) am__tar='find "$$tardir" -print | cpio -o -H $1 -L' am__tar_='find "$tardir" -print | cpio -o -H $1 -L' am__untar='cpio -i -H $1 -d' ;; none) am__tar=false am__tar_=false am__untar=false ;; esac # If the value was cached, stop now. We just wanted to have am__tar # and am__untar set. test -n "${am_cv_prog_tar_$1}" && break # tar/untar a dummy directory, and stop if the command works rm -rf conftest.dir mkdir conftest.dir echo GrepMe > conftest.dir/file AM_RUN_LOG([tardir=conftest.dir && eval $am__tar_ >conftest.tar]) rm -rf conftest.dir if test -s conftest.tar; then AM_RUN_LOG([$am__untar /dev/null 2>&1 && break fi done rm -rf conftest.dir AC_CACHE_VAL([am_cv_prog_tar_$1], [am_cv_prog_tar_$1=$_am_tool]) AC_MSG_RESULT([$am_cv_prog_tar_$1])]) AC_SUBST([am__tar]) AC_SUBST([am__untar]) ]) # _AM_PROG_TAR iok-2.1.3/AUTHORS0000644000076400007640000000010111776460025010300 00000000000000Parag Nemade Suji A iok-2.1.3/NEWS0000644000076400007640000000307111776460025007740 0000000000000009 July 2012 ------------------ - update to release 2.1.3 05 April 2012 ------------------ - update to release 2.1.2 28 March 2012 ------------------ - update to release 2.1.1 12 March 2012 ------------------ - update to release 2.1.0 17 October 2011 ------------------- - update to release 1.3.13 15 November 2010 ------------------- - update to release 1.3.12 02 June 2010 ------------------- - update to release 1.3.11 08 March 2010 ------------------- - update to release 1.3.10 09 February 2010 ------------------- - update to release 1.3.9 26 October 2009 ------------------- - update to release 1.3.8 11 September 2009 -------------------- - update to release 1.3.7 20 July 2009 -------------------- - update to release 1.3.6 25 June 2009 --------------------- - update to release 1.3.5 14 April 2009 ---------------------- - update to release 1.3.4 20 March 2009 ---------------------- - update to release 1.3.3 04 March 2009 --------------------- - update to release 1.3.2 27 February 2009 ---------------------- - update to release 1.3.1 24 January 2009 ---------------------- - update to release 1.3.0 19 February 2009 ---------------------- - minor update to release 1.2.1 19 January 2009 ---------------------- - update to release 1.2.0 13 January 2009 ---------------------- - update to release 1.1.0 17 December 2008 ---------------------- - update to release 1.0.9 02 September 2008 ---------------------- - update to release 1.0.8 16 June 2008 ---------------------- - update to release 1.0.7 12 June 2008 ---------------------- - First Public Release iok-2.1.3/configure.in0000644000076400007640000000261311776460025011553 00000000000000dnl Process this file with autoconf to produce a configure script. AC_INIT(configure.in) AM_INIT_AUTOMAKE(iok, 2.1.3) AM_CONFIG_HEADER(config.h) AM_MAINTAINER_MODE AC_ISC_POSIX AC_PROG_CC AM_PROG_CC_STDC AC_HEADER_STDC AC_PROG_INTLTOOL([0.35.0]) # Xtest extension AC_PATH_X AC_CHECK_LIB(Xtst, XTestFakeKeyEvent, [], [AC_ERROR(XTest library not found or outdated! Please install the latest libxtst-dev package.)]) # X11 library check AC_CHECK_LIB(X11, XKeysymToString) # check for GTK3 pkg_modules="gtk+-3.0 >= 3.0.0" PKG_CHECK_MODULES(GTK3, [$pkg_modules]) AC_SUBST(GTK3_CFLAGS) AC_SUBST(GTK3_LIBS) # check for LIBXML2 pkg_modules="libxml-2.0 >= 2.4.0" PKG_CHECK_MODULES(LIBXML2, [$pkg_modules]) AC_SUBST(LIBXML2_CFLAGS) AC_SUBST(LIBXML2_LIBS) # check for UNIQUE3 pkg_modules="unique-3.0 >= 2.91.0" PKG_CHECK_MODULES(UNIQUE3, [$pkg_modules]) AC_SUBST(UNIQUE3_CFLAGS) AC_SUBST(UNIQUE3_LIBS) GETTEXT_PACKAGE=iok AC_SUBST(GETTEXT_PACKAGE) AC_DEFINE_UNQUOTED(GETTEXT_PACKAGE,"$GETTEXT_PACKAGE", [Gettext package.]) dnl Add the languages which your application supports here. ALL_LINGUAS="ar as bho bn_IN brx bs ca da de de_CH doi el es fa fr gu hi hne hu it ja kn ko mai ml mni mr nds nl or pa pl pt_BR pt ru sa sat sd sr@latin sr sv ta te th uk zh_CN zh_TW" AM_GLIB_GNU_GETTEXT AC_OUTPUT([ Makefile iok.desktop.in src/Makefile po/Makefile.in data/Makefile data/icons/Makefile ]) iok-2.1.3/config.h.in0000644000076400007640000000416311776460266011276 00000000000000/* config.h.in. Generated from configure.in by autoheader. */ /* always defined to indicate that i18n is enabled */ #undef ENABLE_NLS /* Gettext package. */ #undef GETTEXT_PACKAGE /* Define to 1 if you have the `bind_textdomain_codeset' function. */ #undef HAVE_BIND_TEXTDOMAIN_CODESET /* Define to 1 if you have the `dcgettext' function. */ #undef HAVE_DCGETTEXT /* Define if the GNU gettext() function is already present or preinstalled. */ #undef HAVE_GETTEXT /* Define to 1 if you have the header file. */ #undef HAVE_INTTYPES_H /* Define if your file defines LC_MESSAGES. */ #undef HAVE_LC_MESSAGES /* Define to 1 if you have the `X11' library (-lX11). */ #undef HAVE_LIBX11 /* Define to 1 if you have the `Xtst' library (-lXtst). */ #undef HAVE_LIBXTST /* Define to 1 if you have the header file. */ #undef HAVE_LOCALE_H /* Define to 1 if you have the header file. */ #undef HAVE_MEMORY_H /* Define to 1 if you have the header file. */ #undef HAVE_STDINT_H /* Define to 1 if you have the header file. */ #undef HAVE_STDLIB_H /* Define to 1 if you have the header file. */ #undef HAVE_STRINGS_H /* Define to 1 if you have the header file. */ #undef HAVE_STRING_H /* Define to 1 if you have the header file. */ #undef HAVE_SYS_STAT_H /* Define to 1 if you have the header file. */ #undef HAVE_SYS_TYPES_H /* Define to 1 if you have the header file. */ #undef HAVE_UNISTD_H /* Name of package */ #undef PACKAGE /* Define to the address where bug reports for this package should be sent. */ #undef PACKAGE_BUGREPORT /* Define to the full name of this package. */ #undef PACKAGE_NAME /* Define to the full name and version of this package. */ #undef PACKAGE_STRING /* Define to the one symbol short name of this package. */ #undef PACKAGE_TARNAME /* Define to the home page for this package. */ #undef PACKAGE_URL /* Define to the version of this package. */ #undef PACKAGE_VERSION /* Define to 1 if you have the ANSI C header files. */ #undef STDC_HEADERS /* Version number of package */ #undef VERSION iok-2.1.3/missing0000755000076400007640000002415211776460025010643 00000000000000#! /bin/sh # Common stub for a few missing GNU programs while installing. scriptversion=2012-01-06.13; # UTC # Copyright (C) 1996, 1997, 1999, 2000, 2002, 2003, 2004, 2005, 2006, # 2008, 2009, 2010, 2011, 2012 Free Software Foundation, Inc. # Originally by Fran,cois Pinard , 1996. # This program is free software; you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by # the Free Software Foundation; either version 2, or (at your option) # any later version. # This program is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU General Public License for more details. # You should have received a copy of the GNU General Public License # along with this program. If not, see . # As a special exception to the GNU General Public License, if you # distribute this file as part of a program that contains a # configuration script generated by Autoconf, you may include it under # the same distribution terms that you use for the rest of that program. if test $# -eq 0; then echo 1>&2 "Try \`$0 --help' for more information" exit 1 fi run=: sed_output='s/.* --output[ =]\([^ ]*\).*/\1/p' sed_minuso='s/.* -o \([^ ]*\).*/\1/p' # In the cases where this matters, `missing' is being run in the # srcdir already. if test -f configure.ac; then configure_ac=configure.ac else configure_ac=configure.in fi msg="missing on your system" case $1 in --run) # Try to run requested program, and just exit if it succeeds. run= shift "$@" && exit 0 # Exit code 63 means version mismatch. This often happens # when the user try to use an ancient version of a tool on # a file that requires a minimum version. In this case we # we should proceed has if the program had been absent, or # if --run hadn't been passed. if test $? = 63; then run=: msg="probably too old" fi ;; -h|--h|--he|--hel|--help) echo "\ $0 [OPTION]... PROGRAM [ARGUMENT]... Handle \`PROGRAM [ARGUMENT]...' for when PROGRAM is missing, or return an error status if there is no known handling for PROGRAM. Options: -h, --help display this help and exit -v, --version output version information and exit --run try to run the given command, and emulate it if it fails Supported PROGRAM values: aclocal touch file \`aclocal.m4' autoconf touch file \`configure' autoheader touch file \`config.h.in' autom4te touch the output file, or create a stub one automake touch all \`Makefile.in' files bison create \`y.tab.[ch]', if possible, from existing .[ch] flex create \`lex.yy.c', if possible, from existing .c help2man touch the output file lex create \`lex.yy.c', if possible, from existing .c makeinfo touch the output file yacc create \`y.tab.[ch]', if possible, from existing .[ch] Version suffixes to PROGRAM as well as the prefixes \`gnu-', \`gnu', and \`g' are ignored when checking the name. Send bug reports to ." exit $? ;; -v|--v|--ve|--ver|--vers|--versi|--versio|--version) echo "missing $scriptversion (GNU Automake)" exit $? ;; -*) echo 1>&2 "$0: Unknown \`$1' option" echo 1>&2 "Try \`$0 --help' for more information" exit 1 ;; esac # normalize program name to check for. program=`echo "$1" | sed ' s/^gnu-//; t s/^gnu//; t s/^g//; t'` # Now exit if we have it, but it failed. Also exit now if we # don't have it and --version was passed (most likely to detect # the program). This is about non-GNU programs, so use $1 not # $program. case $1 in lex*|yacc*) # Not GNU programs, they don't have --version. ;; *) if test -z "$run" && ($1 --version) > /dev/null 2>&1; then # We have it, but it failed. exit 1 elif test "x$2" = "x--version" || test "x$2" = "x--help"; then # Could not run --version or --help. This is probably someone # running `$TOOL --version' or `$TOOL --help' to check whether # $TOOL exists and not knowing $TOOL uses missing. exit 1 fi ;; esac # If it does not exist, or fails to run (possibly an outdated version), # try to emulate it. case $program in aclocal*) echo 1>&2 "\ WARNING: \`$1' is $msg. You should only need it if you modified \`acinclude.m4' or \`${configure_ac}'. You might want to install the \`Automake' and \`Perl' packages. Grab them from any GNU archive site." touch aclocal.m4 ;; autoconf*) echo 1>&2 "\ WARNING: \`$1' is $msg. You should only need it if you modified \`${configure_ac}'. You might want to install the \`Autoconf' and \`GNU m4' packages. Grab them from any GNU archive site." touch configure ;; autoheader*) echo 1>&2 "\ WARNING: \`$1' is $msg. You should only need it if you modified \`acconfig.h' or \`${configure_ac}'. You might want to install the \`Autoconf' and \`GNU m4' packages. Grab them from any GNU archive site." files=`sed -n 's/^[ ]*A[CM]_CONFIG_HEADER(\([^)]*\)).*/\1/p' ${configure_ac}` test -z "$files" && files="config.h" touch_files= for f in $files; do case $f in *:*) touch_files="$touch_files "`echo "$f" | sed -e 's/^[^:]*://' -e 's/:.*//'`;; *) touch_files="$touch_files $f.in";; esac done touch $touch_files ;; automake*) echo 1>&2 "\ WARNING: \`$1' is $msg. You should only need it if you modified \`Makefile.am', \`acinclude.m4' or \`${configure_ac}'. You might want to install the \`Automake' and \`Perl' packages. Grab them from any GNU archive site." find . -type f -name Makefile.am -print | sed 's/\.am$/.in/' | while read f; do touch "$f"; done ;; autom4te*) echo 1>&2 "\ WARNING: \`$1' is needed, but is $msg. You might have modified some files without having the proper tools for further handling them. You can get \`$1' as part of \`Autoconf' from any GNU archive site." file=`echo "$*" | sed -n "$sed_output"` test -z "$file" && file=`echo "$*" | sed -n "$sed_minuso"` if test -f "$file"; then touch $file else test -z "$file" || exec >$file echo "#! /bin/sh" echo "# Created by GNU Automake missing as a replacement of" echo "# $ $@" echo "exit 0" chmod +x $file exit 1 fi ;; bison*|yacc*) echo 1>&2 "\ WARNING: \`$1' $msg. You should only need it if you modified a \`.y' file. You may need the \`Bison' package in order for those modifications to take effect. You can get \`Bison' from any GNU archive site." rm -f y.tab.c y.tab.h if test $# -ne 1; then eval LASTARG=\${$#} case $LASTARG in *.y) SRCFILE=`echo "$LASTARG" | sed 's/y$/c/'` if test -f "$SRCFILE"; then cp "$SRCFILE" y.tab.c fi SRCFILE=`echo "$LASTARG" | sed 's/y$/h/'` if test -f "$SRCFILE"; then cp "$SRCFILE" y.tab.h fi ;; esac fi if test ! -f y.tab.h; then echo >y.tab.h fi if test ! -f y.tab.c; then echo 'main() { return 0; }' >y.tab.c fi ;; lex*|flex*) echo 1>&2 "\ WARNING: \`$1' is $msg. You should only need it if you modified a \`.l' file. You may need the \`Flex' package in order for those modifications to take effect. You can get \`Flex' from any GNU archive site." rm -f lex.yy.c if test $# -ne 1; then eval LASTARG=\${$#} case $LASTARG in *.l) SRCFILE=`echo "$LASTARG" | sed 's/l$/c/'` if test -f "$SRCFILE"; then cp "$SRCFILE" lex.yy.c fi ;; esac fi if test ! -f lex.yy.c; then echo 'main() { return 0; }' >lex.yy.c fi ;; help2man*) echo 1>&2 "\ WARNING: \`$1' is $msg. You should only need it if you modified a dependency of a manual page. You may need the \`Help2man' package in order for those modifications to take effect. You can get \`Help2man' from any GNU archive site." file=`echo "$*" | sed -n "$sed_output"` test -z "$file" && file=`echo "$*" | sed -n "$sed_minuso"` if test -f "$file"; then touch $file else test -z "$file" || exec >$file echo ".ab help2man is required to generate this page" exit $? fi ;; makeinfo*) echo 1>&2 "\ WARNING: \`$1' is $msg. You should only need it if you modified a \`.texi' or \`.texinfo' file, or any other file indirectly affecting the aspect of the manual. The spurious call might also be the consequence of using a buggy \`make' (AIX, DU, IRIX). You might want to install the \`Texinfo' package or the \`GNU make' package. Grab either from any GNU archive site." # The file to touch is that specified with -o ... file=`echo "$*" | sed -n "$sed_output"` test -z "$file" && file=`echo "$*" | sed -n "$sed_minuso"` if test -z "$file"; then # ... or it is the one specified with @setfilename ... infile=`echo "$*" | sed 's/.* \([^ ]*\) *$/\1/'` file=`sed -n ' /^@setfilename/{ s/.* \([^ ]*\) *$/\1/ p q }' $infile` # ... or it is derived from the source name (dir/f.texi becomes f.info) test -z "$file" && file=`echo "$infile" | sed 's,.*/,,;s,.[^.]*$,,'`.info fi # If the file does not exist, the user really needs makeinfo; # let's fail without touching anything. test -f $file || exit 1 touch $file ;; *) echo 1>&2 "\ WARNING: \`$1' is needed, and is $msg. You might have modified some files without having the proper tools for further handling them. Check the \`README' file, it often tells you about the needed prerequisites for installing this package. You may also peek at any GNU archive site, in case some other package would contain this missing \`$1' program." exit 1 ;; esac exit 0 # Local variables: # eval: (add-hook 'write-file-hooks 'time-stamp) # time-stamp-start: "scriptversion=" # time-stamp-format: "%:y-%02m-%02d.%02H" # time-stamp-time-zone: "UTC" # time-stamp-end: "; # UTC" # End: iok-2.1.3/ChangeLog0000644000076400007640000001234611776460025011020 00000000000000Release 2.1.3 ------------------ - Fix rh#836198: Replace gtk deprecated calls in iok-2.1.2 source - Fix rh#824106: Fix abrt by replacing langname with mapname - Fix rh#814570: Save File option should suggests a predefined file name format - Fix rh#814524: iok does not fetch any .mim file name which does not contain "inscript2" word. - Added new translations for some Indic languages. Release 2.1.2 ------------------- - Remove strings "English" and "to English" from translations. - Update the translations for above change. - Add some new Indic language translations(bho,brx,doi,hne,mni,sa,sat,sd) Release 2.1.1 -------------------- - Fix default language code setting when iok run in Inscript2 supported locale - Added updated translations Release 2.1.0 --------------------- - Rewritten parser to include Inscript2 keymap support - iok now defaults to Inscript2 standard - Updated man page of iok - Updated parsers for m17n as well as xkb keymaps Release 1.3.13 --------------------- - Fix rh#684652: iok looks for ~/.m17n not ~/.m17n.d (patch by Daiki Ueno) - Fix rh#734372: too many xkb-(null) in the list - Fix rh#734387: "English" and "To English" isn't translatable - Restrict keymap name that ends with inscript.mim - Update zanata instance url in zanata.xml Release 1.3.12 --------------------- - Include updated translations. - Fix rh#608256:input fail on touch-screen with finger, while mouse click is working for iok Now to use button drag and drop feature, one need to start this application as "iok -a" Release 1.3.11 --------------------- - Include updated translations. - Fix rh#598710: xkb-Tamil Keyboard with Numerals keymap issue Release 1.3.10 --------------------- - Add missing libX11 DSO check in configure.in - Fix warnings from compilation. - Fix rh#571316:Fix parsing problem for tam_keyboard_with_numerals layout. Release 1.3.9 --------------------- - Include updated translations. - Add man page (requested by Suji A) Release 1.3.8 --------------------- - Update desktop file for not to show in GNOME menus. - Update keymap lists to show ne-trad.mim and ne-rom.mim keymaps. - Update iok code to always have only single instance running. - Update translations. Release 1.3.7 --------------------- - Update translations. Release 1.3.6 --------------------- - Fix bug for unable to parse Hindi Wx xkb map. - Make desktop file available for translations. Release 1.3.5 --------------------- - Fix bug for reading language names from iso-codes. Release 1.3.4 ---------------------- - Fix some translations strings and remove unnecessary strings. Release 1.3.3 ----------------------- - Make Shift buttons non-sticky. - Show map list(combo box) for locales whose map is not available in iok. - Add updated tranlations. Release 1.3.2 ----------------------- - Added command line options to start iok from ibus IM. - Now defualt iok will start without menus and combobox. To see them use "iok -a" command. - Change label for switch button to "to English" Release 1.3.1 ------------------------ - Added Fn keys. - improve keymap loading faster. - Enhance open_file function. - Make non-supported keymaps added to end of combo list. Release 1.3.0 ------------------------- - Add partial xkb layout parsing support Release 1.2.1 ------------------------ - Make iok UI to be always on top - Add tooltips to iok UI - when used toggle "ToEnglish" inactivate keyboard selection list. Release 1.2.0 ------------------------- - Added new feature of DragNDrop buttons on keyboard UI. This is additional to swap dialog. This DragNDrop will be helpful for instant keyvalues swapping for keyboard buttons. Release 1.1.0 ------------------------- - Tried different way(table widget) to draw keyboard in a window. - modified swap functionality interface with automatic focus change to next widget in swap dialog window. - load default keymap depending on current locale. Release 1.0.9 -------------------------- - Reorganized menubar items. - Dropped "Advanced Options" check menuitem. - Enhanced Open and Save Keymap menuitems. - Combobox now lists language names for standard inscript keymaps from /usr/share/m17n path. Release 1.0.8 -------------------------- - Reorganized Menu options. Advanced options are now available under checkbox menu item "Advanced Options" - Added toggle button between English and any selected keymap on combo box list. 20080814 -------------------------- - Fixed open_file() function bug. - Reformatted some files. - removed unnecessary files form svn Release 1.0.7 -------------------------- - Bug Fix for m key button functionality - Added feature to open keymap other than keymaps listed in combo box. - Added missing code for ZWJ and ZWNJ characters. Release 1.0.6 -------------------------- - Added code to handle various combinations for Caps and left/right Shift keys. - Reduced size for iok GUI. Release 1.0.4 ------------------------- - Removed button's label text from key pair(key,value) to only value - Added Menu interface and removed key swapping and reassiging buttons. - Added functionality to write a new cutomized keymap from exiting system keymap Release 1.0.2 -------------------------- - Added English layout functionality - Added keys swapping and reassigining buttons Release 1.0.0 -------------------------- - First release. iok-2.1.3/src/0000775000076400007640000000000011776460266010120 500000000000000iok-2.1.3/src/callbacks.c0000644000076400007640000000175611776460064012126 00000000000000 /* * * iok - Virtual onscreen keyboard for Indic Inscript keymaps. * Copyright (C) 2011 Parag Nemade * * This program is free software; you can redistribute it and/or * modify it under the terms of the GNU General Public License * as published by the Free Software Foundation; either version 2 * of the License, or (at your option) any later version. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License * along with this program; if not, write to the Free Software * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. * * */ #ifdef HAVE_CONFIG_H # include #endif #include #include "callbacks.h" #include "interface.h" #include "support.h" iok-2.1.3/src/Makefile.in0000664000076400007640000003747011776460255012116 00000000000000# Makefile.in generated by automake 1.11.3 from Makefile.am. # @configure_input@ # Copyright (C) 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, # 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2010, 2011 Free Software # Foundation, Inc. # This Makefile.in is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, # with or without modifications, as long as this notice is preserved. # This program is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY, to the extent permitted by law; without # even the implied warranty of MERCHANTABILITY or FITNESS FOR A # PARTICULAR PURPOSE. @SET_MAKE@ VPATH = @srcdir@ pkgdatadir = $(datadir)/@PACKAGE@ pkgincludedir = $(includedir)/@PACKAGE@ pkglibdir = $(libdir)/@PACKAGE@ pkglibexecdir = $(libexecdir)/@PACKAGE@ am__cd = CDPATH="$${ZSH_VERSION+.}$(PATH_SEPARATOR)" && cd install_sh_DATA = $(install_sh) -c -m 644 install_sh_PROGRAM = $(install_sh) -c install_sh_SCRIPT = $(install_sh) -c INSTALL_HEADER = $(INSTALL_DATA) transform = $(program_transform_name) NORMAL_INSTALL = : PRE_INSTALL = : POST_INSTALL = : NORMAL_UNINSTALL = : PRE_UNINSTALL = : POST_UNINSTALL = : bin_PROGRAMS = iok$(EXEEXT) subdir = src DIST_COMMON = $(srcdir)/Makefile.am $(srcdir)/Makefile.in ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 am__aclocal_m4_deps = $(top_srcdir)/configure.in am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \ $(ACLOCAL_M4) mkinstalldirs = $(SHELL) $(top_srcdir)/mkinstalldirs CONFIG_HEADER = $(top_builddir)/config.h CONFIG_CLEAN_FILES = CONFIG_CLEAN_VPATH_FILES = am__installdirs = "$(DESTDIR)$(bindir)" PROGRAMS = $(bin_PROGRAMS) am_iok_OBJECTS = main.$(OBJEXT) keyevent.$(OBJEXT) support.$(OBJEXT) \ interface.$(OBJEXT) callbacks.$(OBJEXT) iok_OBJECTS = $(am_iok_OBJECTS) am__DEPENDENCIES_1 = iok_DEPENDENCIES = $(am__DEPENDENCIES_1) DEFAULT_INCLUDES = -I.@am__isrc@ -I$(top_builddir) depcomp = $(SHELL) $(top_srcdir)/depcomp am__depfiles_maybe = depfiles am__mv = mv -f COMPILE = $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) \ $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) CCLD = $(CC) LINK = $(CCLD) $(AM_CFLAGS) $(CFLAGS) $(AM_LDFLAGS) $(LDFLAGS) -o $@ SOURCES = $(iok_SOURCES) DIST_SOURCES = $(iok_SOURCES) ETAGS = etags CTAGS = ctags DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST) ACLOCAL = @ACLOCAL@ ALL_LINGUAS = @ALL_LINGUAS@ AMTAR = @AMTAR@ AM_DEFAULT_VERBOSITY = @AM_DEFAULT_VERBOSITY@ AUTOCONF = @AUTOCONF@ AUTOHEADER = @AUTOHEADER@ AUTOMAKE = @AUTOMAKE@ AWK = @AWK@ CATALOGS = @CATALOGS@ CATOBJEXT = @CATOBJEXT@ CC = @CC@ CCDEPMODE = @CCDEPMODE@ CFLAGS = @CFLAGS@ CPP = @CPP@ CPPFLAGS = @CPPFLAGS@ CYGPATH_W = @CYGPATH_W@ DATADIRNAME = @DATADIRNAME@ DEFS = @DEFS@ DEPDIR = @DEPDIR@ ECHO_C = @ECHO_C@ ECHO_N = @ECHO_N@ ECHO_T = @ECHO_T@ EGREP = @EGREP@ EXEEXT = @EXEEXT@ GETTEXT_PACKAGE = @GETTEXT_PACKAGE@ GMOFILES = @GMOFILES@ GMSGFMT = @GMSGFMT@ GREP = @GREP@ GTK3_CFLAGS = @GTK3_CFLAGS@ GTK3_LIBS = @GTK3_LIBS@ INSTALL = @INSTALL@ INSTALL_DATA = @INSTALL_DATA@ INSTALL_PROGRAM = @INSTALL_PROGRAM@ INSTALL_SCRIPT = @INSTALL_SCRIPT@ INSTALL_STRIP_PROGRAM = @INSTALL_STRIP_PROGRAM@ INSTOBJEXT = @INSTOBJEXT@ INTLLIBS = @INTLLIBS@ INTLTOOL_EXTRACT = @INTLTOOL_EXTRACT@ INTLTOOL_MERGE = @INTLTOOL_MERGE@ INTLTOOL_PERL = @INTLTOOL_PERL@ INTLTOOL_UPDATE = @INTLTOOL_UPDATE@ INTLTOOL_V_MERGE = @INTLTOOL_V_MERGE@ INTLTOOL_V_MERGE_OPTIONS = @INTLTOOL_V_MERGE_OPTIONS@ INTLTOOL__v_MERGE_ = @INTLTOOL__v_MERGE_@ INTLTOOL__v_MERGE_0 = @INTLTOOL__v_MERGE_0@ LDFLAGS = @LDFLAGS@ LIBOBJS = @LIBOBJS@ LIBS = @LIBS@ LIBXML2_CFLAGS = @LIBXML2_CFLAGS@ LIBXML2_LIBS = @LIBXML2_LIBS@ LTLIBOBJS = @LTLIBOBJS@ MAINT = @MAINT@ MAKEINFO = @MAKEINFO@ MKDIR_P = @MKDIR_P@ MKINSTALLDIRS = @MKINSTALLDIRS@ MSGFMT = @MSGFMT@ MSGFMT_OPTS = @MSGFMT_OPTS@ MSGMERGE = @MSGMERGE@ OBJEXT = @OBJEXT@ PACKAGE = @PACKAGE@ PACKAGE_BUGREPORT = @PACKAGE_BUGREPORT@ PACKAGE_NAME = @PACKAGE_NAME@ PACKAGE_STRING = @PACKAGE_STRING@ PACKAGE_TARNAME = @PACKAGE_TARNAME@ PACKAGE_URL = @PACKAGE_URL@ PACKAGE_VERSION = @PACKAGE_VERSION@ PATH_SEPARATOR = @PATH_SEPARATOR@ PKG_CONFIG = @PKG_CONFIG@ PKG_CONFIG_LIBDIR = @PKG_CONFIG_LIBDIR@ PKG_CONFIG_PATH = @PKG_CONFIG_PATH@ POFILES = @POFILES@ POSUB = @POSUB@ PO_IN_DATADIR_FALSE = @PO_IN_DATADIR_FALSE@ PO_IN_DATADIR_TRUE = @PO_IN_DATADIR_TRUE@ SET_MAKE = @SET_MAKE@ SHELL = @SHELL@ STRIP = @STRIP@ UNIQUE3_CFLAGS = @UNIQUE3_CFLAGS@ UNIQUE3_LIBS = @UNIQUE3_LIBS@ USE_NLS = @USE_NLS@ VERSION = @VERSION@ XGETTEXT = @XGETTEXT@ XMKMF = @XMKMF@ abs_builddir = @abs_builddir@ abs_srcdir = @abs_srcdir@ abs_top_builddir = @abs_top_builddir@ abs_top_srcdir = @abs_top_srcdir@ ac_ct_CC = @ac_ct_CC@ am__include = @am__include@ am__leading_dot = @am__leading_dot@ am__quote = @am__quote@ am__tar = @am__tar@ am__untar = @am__untar@ bindir = @bindir@ build_alias = @build_alias@ builddir = @builddir@ datadir = @datadir@ datarootdir = @datarootdir@ docdir = @docdir@ dvidir = @dvidir@ exec_prefix = @exec_prefix@ host_alias = @host_alias@ htmldir = @htmldir@ includedir = @includedir@ infodir = @infodir@ install_sh = @install_sh@ intltool__v_merge_options_ = @intltool__v_merge_options_@ intltool__v_merge_options_0 = @intltool__v_merge_options_0@ libdir = @libdir@ libexecdir = @libexecdir@ localedir = @localedir@ localstatedir = @localstatedir@ mandir = @mandir@ mkdir_p = @mkdir_p@ oldincludedir = @oldincludedir@ pdfdir = @pdfdir@ prefix = @prefix@ program_transform_name = @program_transform_name@ psdir = @psdir@ sbindir = @sbindir@ sharedstatedir = @sharedstatedir@ srcdir = @srcdir@ sysconfdir = @sysconfdir@ target_alias = @target_alias@ top_build_prefix = @top_build_prefix@ top_builddir = @top_builddir@ top_srcdir = @top_srcdir@ INCLUDES = \ -DPACKAGE_DATA_DIR=\""$(datadir)"\" \ -DPACKAGE_LOCALE_DIR=\""$(prefix)/$(DATADIRNAME)/locale"\" \ @GTK3_CFLAGS@ @LIBXML2_CFLAGS@ @UNIQUE3_CFLAGS@ iok_SOURCES = \ main.c keyevent.c keys.h\ support.c support.h \ interface.c interface.h \ callbacks.c callbacks.h iok_LDADD = @GTK3_LIBS@ @LIBXML2_LIBS@ @UNIQUE3_LIBS@ $(INTLLIBS) all: all-am .SUFFIXES: .SUFFIXES: .c .o .obj $(srcdir)/Makefile.in: @MAINTAINER_MODE_TRUE@ $(srcdir)/Makefile.am $(am__configure_deps) @for dep in $?; do \ case '$(am__configure_deps)' in \ *$$dep*) \ ( cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh ) \ && { if test -f $@; then exit 0; else break; fi; }; \ exit 1;; \ esac; \ done; \ echo ' cd $(top_srcdir) && $(AUTOMAKE) --gnu src/Makefile'; \ $(am__cd) $(top_srcdir) && \ $(AUTOMAKE) --gnu src/Makefile .PRECIOUS: Makefile Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status @case '$?' in \ *config.status*) \ cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh;; \ *) \ echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe)'; \ cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe);; \ esac; $(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES) cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh $(top_srcdir)/configure: @MAINTAINER_MODE_TRUE@ $(am__configure_deps) cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh $(ACLOCAL_M4): @MAINTAINER_MODE_TRUE@ $(am__aclocal_m4_deps) cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh $(am__aclocal_m4_deps): install-binPROGRAMS: $(bin_PROGRAMS) @$(NORMAL_INSTALL) test -z "$(bindir)" || $(MKDIR_P) "$(DESTDIR)$(bindir)" @list='$(bin_PROGRAMS)'; test -n "$(bindir)" || list=; \ for p in $$list; do echo "$$p $$p"; done | \ sed 's/$(EXEEXT)$$//' | \ while read p p1; do if test -f $$p; \ then echo "$$p"; echo "$$p"; else :; fi; \ done | \ sed -e 'p;s,.*/,,;n;h' -e 's|.*|.|' \ -e 'p;x;s,.*/,,;s/$(EXEEXT)$$//;$(transform);s/$$/$(EXEEXT)/' | \ sed 'N;N;N;s,\n, ,g' | \ $(AWK) 'BEGIN { files["."] = ""; dirs["."] = 1 } \ { d=$$3; if (dirs[d] != 1) { print "d", d; dirs[d] = 1 } \ if ($$2 == $$4) files[d] = files[d] " " $$1; \ else { print "f", $$3 "/" $$4, $$1; } } \ END { for (d in files) print "f", d, files[d] }' | \ while read type dir files; do \ if test "$$dir" = .; then dir=; else dir=/$$dir; fi; \ test -z "$$files" || { \ echo " $(INSTALL_PROGRAM_ENV) $(INSTALL_PROGRAM) $$files '$(DESTDIR)$(bindir)$$dir'"; \ $(INSTALL_PROGRAM_ENV) $(INSTALL_PROGRAM) $$files "$(DESTDIR)$(bindir)$$dir" || exit $$?; \ } \ ; done uninstall-binPROGRAMS: @$(NORMAL_UNINSTALL) @list='$(bin_PROGRAMS)'; test -n "$(bindir)" || list=; \ files=`for p in $$list; do echo "$$p"; done | \ sed -e 'h;s,^.*/,,;s/$(EXEEXT)$$//;$(transform)' \ -e 's/$$/$(EXEEXT)/' `; \ test -n "$$list" || exit 0; \ echo " ( cd '$(DESTDIR)$(bindir)' && rm -f" $$files ")"; \ cd "$(DESTDIR)$(bindir)" && rm -f $$files clean-binPROGRAMS: -test -z "$(bin_PROGRAMS)" || rm -f $(bin_PROGRAMS) iok$(EXEEXT): $(iok_OBJECTS) $(iok_DEPENDENCIES) $(EXTRA_iok_DEPENDENCIES) @rm -f iok$(EXEEXT) $(LINK) $(iok_OBJECTS) $(iok_LDADD) $(LIBS) mostlyclean-compile: -rm -f *.$(OBJEXT) distclean-compile: -rm -f *.tab.c @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/callbacks.Po@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/interface.Po@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/keyevent.Po@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/main.Po@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/support.Po@am__quote@ .c.o: @am__fastdepCC_TRUE@ $(COMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ $< @am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='$<' object='$@' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCC_FALSE@ $(COMPILE) -c $< .c.obj: @am__fastdepCC_TRUE@ $(COMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ `$(CYGPATH_W) '$<'` @am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='$<' object='$@' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCC_FALSE@ $(COMPILE) -c `$(CYGPATH_W) '$<'` ID: $(HEADERS) $(SOURCES) $(LISP) $(TAGS_FILES) list='$(SOURCES) $(HEADERS) $(LISP) $(TAGS_FILES)'; \ unique=`for i in $$list; do \ if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \ done | \ $(AWK) '{ files[$$0] = 1; nonempty = 1; } \ END { if (nonempty) { for (i in files) print i; }; }'`; \ mkid -fID $$unique tags: TAGS TAGS: $(HEADERS) $(SOURCES) $(TAGS_DEPENDENCIES) \ $(TAGS_FILES) $(LISP) set x; \ here=`pwd`; \ list='$(SOURCES) $(HEADERS) $(LISP) $(TAGS_FILES)'; \ unique=`for i in $$list; do \ if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \ done | \ $(AWK) '{ files[$$0] = 1; nonempty = 1; } \ END { if (nonempty) { for (i in files) print i; }; }'`; \ shift; \ if test -z "$(ETAGS_ARGS)$$*$$unique"; then :; else \ test -n "$$unique" || unique=$$empty_fix; \ if test $$# -gt 0; then \ $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ "$$@" $$unique; \ else \ $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ $$unique; \ fi; \ fi ctags: CTAGS CTAGS: $(HEADERS) $(SOURCES) $(TAGS_DEPENDENCIES) \ $(TAGS_FILES) $(LISP) list='$(SOURCES) $(HEADERS) $(LISP) $(TAGS_FILES)'; \ unique=`for i in $$list; do \ if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \ done | \ $(AWK) '{ files[$$0] = 1; nonempty = 1; } \ END { if (nonempty) { for (i in files) print i; }; }'`; \ test -z "$(CTAGS_ARGS)$$unique" \ || $(CTAGS) $(CTAGSFLAGS) $(AM_CTAGSFLAGS) $(CTAGS_ARGS) \ $$unique GTAGS: here=`$(am__cd) $(top_builddir) && pwd` \ && $(am__cd) $(top_srcdir) \ && gtags -i $(GTAGS_ARGS) "$$here" distclean-tags: -rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags distdir: $(DISTFILES) @srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ topsrcdirstrip=`echo "$(top_srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ list='$(DISTFILES)'; \ dist_files=`for file in $$list; do echo $$file; done | \ sed -e "s|^$$srcdirstrip/||;t" \ -e "s|^$$topsrcdirstrip/|$(top_builddir)/|;t"`; \ case $$dist_files in \ */*) $(MKDIR_P) `echo "$$dist_files" | \ sed '/\//!d;s|^|$(distdir)/|;s,/[^/]*$$,,' | \ sort -u` ;; \ esac; \ for file in $$dist_files; do \ if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \ if test -d $$d/$$file; then \ dir=`echo "/$$file" | sed -e 's,/[^/]*$$,,'`; \ if test -d "$(distdir)/$$file"; then \ find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ fi; \ if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \ cp -fpR $(srcdir)/$$file "$(distdir)$$dir" || exit 1; \ find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ fi; \ cp -fpR $$d/$$file "$(distdir)$$dir" || exit 1; \ else \ test -f "$(distdir)/$$file" \ || cp -p $$d/$$file "$(distdir)/$$file" \ || exit 1; \ fi; \ done check-am: all-am check: check-am all-am: Makefile $(PROGRAMS) installdirs: for dir in "$(DESTDIR)$(bindir)"; do \ test -z "$$dir" || $(MKDIR_P) "$$dir"; \ done install: install-am install-exec: install-exec-am install-data: install-data-am uninstall: uninstall-am install-am: all-am @$(MAKE) $(AM_MAKEFLAGS) install-exec-am install-data-am installcheck: installcheck-am install-strip: if test -z '$(STRIP)'; then \ $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \ install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \ install; \ else \ $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \ install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \ "INSTALL_PROGRAM_ENV=STRIPPROG='$(STRIP)'" install; \ fi mostlyclean-generic: clean-generic: distclean-generic: -test -z "$(CONFIG_CLEAN_FILES)" || rm -f $(CONFIG_CLEAN_FILES) -test . = "$(srcdir)" || test -z "$(CONFIG_CLEAN_VPATH_FILES)" || rm -f $(CONFIG_CLEAN_VPATH_FILES) maintainer-clean-generic: @echo "This command is intended for maintainers to use" @echo "it deletes files that may require special tools to rebuild." clean: clean-am clean-am: clean-binPROGRAMS clean-generic mostlyclean-am distclean: distclean-am -rm -rf ./$(DEPDIR) -rm -f Makefile distclean-am: clean-am distclean-compile distclean-generic \ distclean-tags dvi: dvi-am dvi-am: html: html-am html-am: info: info-am info-am: install-data-am: install-dvi: install-dvi-am install-dvi-am: install-exec-am: install-binPROGRAMS install-html: install-html-am install-html-am: install-info: install-info-am install-info-am: install-man: install-pdf: install-pdf-am install-pdf-am: install-ps: install-ps-am install-ps-am: installcheck-am: maintainer-clean: maintainer-clean-am -rm -rf ./$(DEPDIR) -rm -f Makefile maintainer-clean-am: distclean-am maintainer-clean-generic mostlyclean: mostlyclean-am mostlyclean-am: mostlyclean-compile mostlyclean-generic pdf: pdf-am pdf-am: ps: ps-am ps-am: uninstall-am: uninstall-binPROGRAMS .MAKE: install-am install-strip .PHONY: CTAGS GTAGS all all-am check check-am clean clean-binPROGRAMS \ clean-generic ctags distclean distclean-compile \ distclean-generic distclean-tags distdir dvi dvi-am html \ html-am info info-am install install-am install-binPROGRAMS \ install-data install-data-am install-dvi install-dvi-am \ install-exec install-exec-am install-html install-html-am \ install-info install-info-am install-man install-pdf \ install-pdf-am install-ps install-ps-am install-strip \ installcheck installcheck-am installdirs maintainer-clean \ maintainer-clean-generic mostlyclean mostlyclean-compile \ mostlyclean-generic pdf pdf-am ps ps-am tags uninstall \ uninstall-am uninstall-binPROGRAMS # Tell versions [3.59,3.63) of GNU make to not export all variables. # Otherwise a system limit (for SysV at least) may be exceeded. .NOEXPORT: iok-2.1.3/src/callbacks.h0000644000076400007640000000002611776460064012120 00000000000000#include iok-2.1.3/src/keyevent.c0000644000076400007640000004126611776460064012041 00000000000000 /* * iok - Virtual onscreen keyboard for Indic Inscript keymaps. * * Copyright (C) 2007 Michael Levin * Copyright (C) 2011-2012 Parag Nemade * * This program is free software; you can redistribute it and/or * modify it under the terms of the GNU General Public License * as published by the Free Software Foundation; either version 2 * of the License, or (at your option) any later version. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License * along with this program; if not, write to the Free Software * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. * - Added functions to handle space,backspace,tab keys like enter key handling functions. * - Added va(),nvav() functions definition from cellwriter's main.c and common.h */ #include "keys.h" #include #include #include #include #include #include #include #include /* Define this to always overwrite an unused KeyCode to send any KeySym */ /* #define ALWAYS_OVERWRITE */ extern int key_recycles, key_overwrites, key_disable_overwrite; void key_event_cleanup(void); void bad_keycodes_write(void); void bad_keycodes_read(void); GdkDisplay *display; Display *xdisplay; /* X11 KeyCodes */ enum { KEY_TAKEN = 0, /* Has KeySyms, cannot be overwritten */ KEY_BAD, /* Manually marked as unusable */ KEY_USABLE, /* Has no KeySyms, can be overwritten */ KEY_ALLOCATED, /* Normally usable, but currently allocated */ /* Values greater than this represent multiple allocations */ }; char *nvav(int *plen, const char *fmt, va_list va) { static char buffer[2][16000]; static int which; int len; which = !which; len = g_vsnprintf(buffer[which], sizeof(buffer[which]), fmt, va); if (plen) *plen = len; return buffer[which]; } char *va(const char *fmt, ...) { va_list va; char *string; va_start(va, fmt); string = nvav(NULL, fmt, va); va_end(va); return string; } static char usable[256], pressed[256]; static int key_min, key_max, key_offset, key_codes; static KeySym *keysyms; static XModifierKeymap *modmap; /* Bad keycodes: Despite having no KeySym entries, certain KeyCodes will generate special KeySyms even if their KeySym entries have been overwritten. For instance, KeyCode 204 attempts to eject the CD-ROM even if there is no CD-ROM device present! KeyCode 229 will launch GNOME file search even if there is no search button on the physical keyboard. There is no programatic way around this but to keep a list of commonly used "bad" KeyCodes. */ static void press_keycode(KeyCode k) /* Called from various places to generate a key-down event */ { if (k >= key_min && k <= key_max) XTestFakeKeyEvent(xdisplay, k, True, CurrentTime); } static void release_keycode(KeyCode k) /* Called from various places to generate a key-up event */ { if (k >= key_min && k <= key_max) XTestFakeKeyEvent(xdisplay, k, False, CurrentTime); } static void type_keycode(KeyCode k) /* Key-down + key-up */ { press_keycode(k); release_keycode(k); } static void setup_usable(void) /* Find unused slots in the key mapping */ { int i, found; /* Find all free keys */ memset(usable, 0, sizeof (usable)); for (i = key_min, found = 0; i <= key_max; i++) { int j; for (j = 0; j < key_codes && keysyms[(i - key_min) * key_codes + j] == NoSymbol; j++); if (j < key_codes) { usable[i] = KEY_TAKEN; continue; } usable[i] = KEY_USABLE; found++; } key_offset = 0; /* If we haven't found a usable key, it's probably because we have already ran once and used them all up without setting them back */ if (!found) { usable[key_max - key_min - 1] = KEY_USABLE; } } static void cleanup_usable(void) /* Clear all the usable KeyCodes or we won't have any when we run again! */ { int i, bad, unused = 0, freed; for (i = 0, freed = 0, bad = 0; i <= key_max; i++) if (usable[i] >= KEY_USABLE) { int j, kc_used = FALSE; for (j = 0; j < key_codes; j++) { int index = (i - key_min) * key_codes + j; if (keysyms[index] != NoSymbol) kc_used = TRUE; keysyms[index] = NoSymbol; } if (kc_used) freed++; else unused++; } else if (usable[i] == KEY_BAD) bad++; if (freed) { XChangeKeyboardMapping(xdisplay, key_min, key_codes, keysyms, key_max - key_min + 1); XFlush(xdisplay); } g_print("Free'd %d KeyCode(s), %d unused, %d marked bad", freed, unused, bad); } static void release_held_keys(void) /* Release all held keys that were not pressed by us */ { int i; char keys[32]; XQueryKeymap(xdisplay, keys); for (i = 0; i < 32; i++) { int j; for (j = 0; j < 8; j++) { KeyCode keycode; keycode = i * 8 + j; if (keys[i] & (1 << j) && !pressed[keycode]) { g_print("Released held KeyCode %d", keycode); release_keycode(keycode); } } } } /* Key Events */ int key_overwrites = 0, key_recycles = 0, key_shifted = 0, key_num_locked = FALSE, key_caps_locked = FALSE, key_disable_overwrite = FALSE; static int alt_mask, num_lock_mask, meta_mask; static KeyEvent ke_shift, ke_enter, ke_num_lock, ke_caps_lock,ke_tab,ke_backspace,ke_space,ke_escape; static KeyEvent ke_f1,ke_f2,ke_f3,ke_f4,ke_f5,ke_f6,ke_f7,ke_f8,ke_f9,ke_f10,ke_f11,ke_f12; static void reset_keyboard(void) /* In order to reliably predict key event behavior we need to be able to reset the keyboard modifier and pressed state */ { Window root, child; int root_x, root_y, win_x, win_y; unsigned int mask; release_held_keys(); XQueryPointer(xdisplay, GDK_WINDOW_XID(gdk_get_default_root_window ()), &root, &child, &root_x, &root_y, &win_x, &win_y, &mask); if (mask & LockMask) type_keycode(ke_caps_lock.keycode); if (mask & num_lock_mask) type_keycode(ke_num_lock.keycode); } static int is_modifier(unsigned int keysym) /* Returns TRUE for KeySyms that are tracked internally */ { switch (keysym) { case XK_Shift_L: case XK_Shift_R: case XK_Num_Lock: case XK_Caps_Lock: return TRUE; default: return FALSE; } } static void key_event_allocate(KeyEvent *key_event, unsigned int keysym) /* Either finds the KeyCode associated with the given keysym or overwrites a usable one to generate it */ { int i, start; /* Invalid KeySym */ if (!keysym) { key_event->keycode = -1; key_event->keysym = 0; return; } /* First see if our KeySym is already in the mapping */ key_event->shift = FALSE; #ifndef ALWAYS_OVERWRITE for (i = 0; i <= key_max - key_min; i++) { if (keysyms[i * key_codes + 1] == keysym) key_event->shift = TRUE; if (keysyms[i * key_codes] == keysym || key_event->shift) { key_event->keycode = key_min + i; key_recycles++; /* Bump the allocation count if this is an allocateable KeyCode */ if (usable[key_event->keycode] >= KEY_USABLE) usable[key_event->keycode]++; return; } } #endif /* Key overwrites may be disabled, in which case we're out of luck */ if (key_disable_overwrite) { key_event->keycode = -1; key_event->keysym = 0; g_print("Not allowed to overwrite KeyCode for %s", XKeysymToString(keysym)); return; } /* If not, find a usable KeyCode in the mapping */ for (start = key_offset++; ; key_offset++) { if (key_offset > key_max - key_min) key_offset = 0; if (usable[key_min + key_offset] == KEY_USABLE && !pressed[key_min + key_offset]) break; /* If we can't find one, invalidate the event */ if (key_offset == start) { key_event->keycode = -1; key_event->keysym = 0; g_print("Failed to allocate KeyCode for %s", XKeysymToString(keysym)); return; } } key_overwrites++; key_event->keycode = key_min + key_offset; usable[key_event->keycode] = KEY_ALLOCATED; /* Modify the slot to hold our character */ keysyms[key_offset * key_codes] = keysym; keysyms[key_offset * key_codes + 1] = keysym; XChangeKeyboardMapping(xdisplay, key_event->keycode, key_codes, keysyms + key_offset * key_codes, 1); XSync(xdisplay, False); // g_print("Overwrote KeyCode %d for %s", key_event->keycode,XKeysymToString(keysym)); } void key_event_new(KeyEvent *key_event, unsigned int keysym) /* Filters locks and shifts but allocates other keys normally */ { key_event->keysym = keysym; if (is_modifier(keysym)) return; key_event_allocate(key_event, keysym); } void key_event_free(KeyEvent *key_event) /* Release resources associated with and invalidate a key event */ { if (key_event->keycode >= key_min && key_event->keycode <= key_max && usable[key_event->keycode] == KEY_ALLOCATED) usable[key_event->keycode] = KEY_USABLE; key_event->keycode = -1; key_event->keysym = 0; } void key_event_press(KeyEvent *key_event) /* Press the KeyCode specified in the event */ { /* Track modifiers without actually using them */ if (key_event->keysym == XK_Shift_L || key_event->keysym == XK_Shift_R) { key_shifted++; return; } else if (key_event->keysym == XK_Caps_Lock) { key_caps_locked = !key_caps_locked; return; } else if (key_event->keysym == XK_Num_Lock) { key_num_locked = !key_num_locked; return; } /* Invalid event */ if (key_event->keycode < key_min || key_event->keycode > key_max) return; /* If this KeyCode is already pressed, something is wrong */ if (pressed[key_event->keycode]) { g_print("KeyCode %d is already pressed", key_event->keycode); return; } /* Keep track of what KeyCodes are pressed down because of us */ pressed[key_event->keycode] = TRUE; /* Reset the keyboard so we don't have to worry about locks etc */ reset_keyboard(); /* Press our keycode */ if (key_event->shift) press_keycode(ke_shift.keycode); press_keycode(key_event->keycode); XSync(xdisplay, False); } void key_event_release(KeyEvent *key_event) { /* Track modifiers without actually using them */ if (key_event->keysym == XK_Shift_L || key_event->keysym == XK_Shift_R) { key_shifted--; return; } /* Invalid key event */ if (key_event->keycode < key_min || key_event->keycode > key_max) return; /* Keep track of what KeyCodes are pressed because of us */ pressed[key_event->keycode] = FALSE; /* Release our keycode */ release_keycode(key_event->keycode); if (key_event->shift) release_keycode(ke_shift.keycode); XSync(xdisplay, False); } #ifdef X_HAVE_UTF8_STRING void key_event_send_char(int unichar) { KeyEvent key_event; KeySym keysym; /* Get the keysym for the unichar (may be unsupported) */ keysym = XStringToKeysym(va("U%04X", unichar)); if (!keysym) { g_print("XStringToKeysym failed to get Keysym for '%C'", unichar); return; } key_event_new(&key_event, keysym); key_event_press(&key_event); key_event_release(&key_event); key_event_free(&key_event); } #else #printf X_HAVE_UTF8_STRING is undefined, Unicode support is disabled! void key_event_send_char(int unichar) { KeyCode keycode; /* Get the keycode for an existing key */ keycode = XKeysymToKeycode(display, keysym); if (!keycode) { g_print("XKeysymToKeycode failed to find KeyCode for '%C'", unichar); return; } type_keycode(keycode); } #endif void key_event_send_enter() { type_keycode(ke_enter.keycode); XSync(xdisplay, False); } void key_event_send_tab() { type_keycode(ke_tab.keycode); XSync(xdisplay, False); } void key_event_send_space() { type_keycode(ke_space.keycode); XSync(xdisplay, False); } void key_event_send_backspace() { type_keycode(ke_backspace.keycode); XSync(xdisplay, False); } void key_event_send_escape() { type_keycode(ke_escape.keycode); XSync(xdisplay, False); } void key_event_send_f1() { type_keycode(ke_f1.keycode); XSync(xdisplay, False); } void key_event_send_f2() { type_keycode(ke_f2.keycode); XSync(xdisplay, False); } void key_event_send_f3() { type_keycode(ke_f3.keycode); XSync(xdisplay, False); } void key_event_send_f4() { type_keycode(ke_f4.keycode); XSync(xdisplay, False); } void key_event_send_f5() { type_keycode(ke_f5.keycode); XSync(xdisplay, False); } void key_event_send_f6() { type_keycode(ke_f6.keycode); XSync(xdisplay, False); } void key_event_send_f7() { type_keycode(ke_f7.keycode); XSync(xdisplay, False); } void key_event_send_f8() { type_keycode(ke_f8.keycode); XSync(xdisplay, False); } void key_event_send_f9() { type_keycode(ke_f9.keycode); XSync(xdisplay, False); } void key_event_send_f10() { type_keycode(ke_f10.keycode); XSync(xdisplay, False); } void key_event_send_f11() { type_keycode(ke_f11.keycode); XSync(xdisplay, False); } void key_event_send_f12() { type_keycode(ke_f12.keycode); XSync(xdisplay, False); } int key_event_init(void) { int i, j, a, b, c, d; #ifndef X_HAVE_UTF8_STRING g_print("Compiled without Unicode support!"); #endif display = gdk_display_get_default (); xdisplay = GDK_DISPLAY_XDISPLAY (display); if ( display == NULL ) return 1; /* Make sure Xtest is supported */ if (!XTestQueryExtension(xdisplay, &a, &b, &c, &d)) g_print("Xtest not supported!"); else g_print("Xtest version %d.%d.%d.%d\n", a, b, c, d); /* Get the keyboard mapping */ XDisplayKeycodes(xdisplay, &key_min, &key_max); keysyms = XGetKeyboardMapping(xdisplay, key_min, key_max - key_min + 1, &key_codes); /* Get the modifier mapping and variable masks */ modmap = XGetModifierMapping(xdisplay); for (i = 0; i < 8; i++) for (j = 0; j < modmap->max_keypermod; j++) { KeyCode keycode; KeySym keysym; keycode = modmap->modifiermap [i * modmap->max_keypermod + j]; if (keycode < key_min || keycode > key_max) continue; keysym = keysyms[(keycode - key_min) * key_codes]; if (keysym == XK_Alt_L || keysym == XK_Alt_R) { alt_mask = 1 << i; break; } else if (keysym == XK_Meta_L || keysym == XK_Meta_R) { meta_mask = 1 << i; break; } else if (keysym == XK_Num_Lock) { num_lock_mask = 1 << i; break; } } /* Clear the array that keeps track of our pressed keys */ memset(pressed, 0, sizeof (pressed)); /* Scan for available KeyCodes */ setup_usable(); /* Get some common key events */ release_held_keys(); key_event_allocate(&ke_shift, XK_Shift_L); key_event_allocate(&ke_caps_lock, XK_Caps_Lock); key_event_allocate(&ke_num_lock, XK_Num_Lock); key_event_allocate(&ke_enter, XK_Return); key_event_allocate(&ke_tab, XK_KP_Tab); key_event_allocate(&ke_backspace, XK_BackSpace); key_event_allocate(&ke_space, XK_KP_Space); key_event_allocate(&ke_escape, XK_Escape); key_event_allocate(&ke_f1, XK_F1); key_event_allocate(&ke_f2, XK_F2); key_event_allocate(&ke_f3, XK_F3); key_event_allocate(&ke_f4, XK_F4); key_event_allocate(&ke_f5, XK_F5); key_event_allocate(&ke_f6, XK_F6); key_event_allocate(&ke_f7, XK_F7); key_event_allocate(&ke_f8, XK_F8); key_event_allocate(&ke_f9, XK_F9); key_event_allocate(&ke_f10, XK_F10); key_event_allocate(&ke_f11, XK_F11); key_event_allocate(&ke_f12, XK_F12); return 0; } void key_event_cleanup(void) { cleanup_usable(); } iok-2.1.3/src/interface.c0000644000076400007640000147514511776460064012157 00000000000000/* * * iok - Virtual onscreen keyboard for Indic Inscript keymaps. * Copyright (C) 2008-2012 Parag Nemade * * This program is free software; you can redistribute it and/or * modify it under the terms of the GNU General Public License * as published by the Free Software Foundation; either version 2 * of the License, or (at your option) any later version. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License * along with this program; if not, write to the Free Software * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. * * */ #ifdef HAVE_CONFIG_H # include #endif #include #include #include #include #include #include #include #include #include "callbacks.h" #include "interface.h" #include "support.h" #include "keys.h" #include #include #include #include #include #include #include #include GtkWidget *IndicMapper; GtkWidget *vbox1; GtkWidget *hbox0; GtkWidget *table0; GtkWidget *table1; GtkWidget *table2; GtkWidget *table3; GtkWidget *table4; GtkWidget *table5; GtkWidget *table6; GtkWidget *hbox1; GtkWidget *btn_esc; GtkWidget *bt_back_quote; GtkWidget *bt_f1; GtkWidget *bt_f2; GtkWidget *bt_f3; GtkWidget *bt_f4; GtkWidget *bt_f5; GtkWidget *bt_f6; GtkWidget *bt_f7; GtkWidget *bt_f8; GtkWidget *bt_f9; GtkWidget *bt_f10; GtkWidget *bt_f11; GtkWidget *bt_f12; GtkWidget *bt_1; GtkWidget *bt_2; GtkWidget *bt_3; GtkWidget *bt_4; GtkWidget *bt_5; GtkWidget *bt_6; GtkWidget *bt_7; GtkWidget *bt_8; GtkWidget *bt_9; GtkWidget *bt_0; GtkWidget *bt_dash; GtkWidget *bt_equal; GtkWidget *backspace_btn; GtkWidget *hbox2; GtkWidget *tab_btn; GtkWidget *bt_q; GtkWidget *bt_w; GtkWidget *bt_e; GtkWidget *bt_r; GtkWidget *bt_t; GtkWidget *bt_y; GtkWidget *bt_u; GtkWidget *bt_i; GtkWidget *bt_o; GtkWidget *bt_p; GtkWidget *bt_sq_bra_left; GtkWidget *bt_sq_bra_right; GtkWidget *bt_win_slash; GtkWidget *hbox3; GtkWidget *caps_btn; GtkWidget *bt_a; GtkWidget *bt_s; GtkWidget *bt_d; GtkWidget *bt_f; GtkWidget *bt_g; GtkWidget *bt_h; GtkWidget *bt_j; GtkWidget *bt_k; GtkWidget *bt_l; GtkWidget *bt_semi_colon; GtkWidget *bt_quote; GtkWidget *enter_btn; GtkWidget *hbox4; GtkWidget *l_shift_btn; GtkWidget *bt_z; GtkWidget *bt_x; GtkWidget *bt_c; GtkWidget *bt_v; GtkWidget *bt_b; GtkWidget *bt_n; GtkWidget *bt_m; GtkWidget *bt_coma; GtkWidget *bt_dot; GtkWidget *bt_linux_slash; GtkWidget *r_shift_btn; GtkWidget *hbox9; GtkWidget *altgr_btn; GtkWidget *keyswitch_btn; GtkWidget *space_btn; GtkWidget *hbox8; GtkWidget *bt_about; GtkWidget *bt_wrmap; GtkWidget *combo_mim; GtkWidget *hbox6; int ii=0,mimcnt=0; char *localename; char lname[20]; char line[25]; GtkWidget *Swap_Keys; GtkWidget *vbox1; GtkWidget *hbox2; GtkWidget *swap_dialog, *dnd_dialog; GtkWidget *keya; GtkWidget *keya_entry; GtkWidget *hbox3; GtkWidget *keyb; GtkWidget *keyb_entry; GtkWidget *hbox1; GtkWidget *btn_swap; GtkWidget *btn_cancel_swap; GtkWidget *slabel; wchar_t *tmpkey; char *gtxtkeya,*gtxtkeyb,toggle_keymap[80],map_to_read[80]; wchar_t *gtxtvaluea,*gtxtvalueb; GtkWidget *Reassign_Key; GtkWidget *lbl_rk1; GtkWidget *reakeya_entry; GtkWidget *lbl_rk2; GtkWidget *reakeyb_entry; GtkWidget *hbox1; GtkWidget *btn_reassign_reakey; GtkWidget *btn_cancel_reakey; GtkWidget *lbl_wrmap1; GtkWidget *wrmap_entry; GtkWidget *btn_writemap; GtkWidget *btn_cancel_wrmap; GtkWidget *menu_bar; GtkWidget *file_menu,*keys_menu,*help_menu,*file_item,*keys_item,*help_item; GtkWidget *menu_items,*separator_item,*open_item,*save_item,*advopt_item,*quit_item,*reassign_item,*swap_item,*about_item; GtkTooltip *tooltips; char *mlinecpy,*langname,*scriptname,*mapname; FILE *f_config; char *row1 = "1234567890-+"; char *row2 = "qwertyuiop[]"; char *row3 = "asdfghjkl;'"; char *row4 = ""}, {"AB10", "/", "?"}, {NULL,NULL} }; typedef struct { char keyname[1]; wchar_t keyvalue[4]; } Mappings; Mappings map[95]; typedef struct { char xkeynamel[1]; char xkeynameu[1]; char xkeyvaluel[15]; char xkeyvalueu[15]; } xMappings; xMappings xmap[50]; Mappings extmap[95]; typedef struct { char l_name[80]; } Layouts; Layouts lout[80]; typedef struct { char locale_code[4]; char script_code[5]; } loc_list; loc_list ll[100]; int addmap=0,mapcnt=0,xmapcnt=0, extmapcnt=0,llcnt=0; char* srch(char *searchkey) { int nitems=mapcnt; int jj=0; for (jj=0; jj")); gtk_button_set_label((GtkButton *)bt_dot,lname); sprintf(lname,"%s",extsrch("?")); gtk_button_set_label((GtkButton *)bt_linux_slash,lname); } void load_ext_mappings() { sprintf(lname,"%s",extsrch("`")); gtk_button_set_label((GtkButton *)bt_back_quote,lname); sprintf(lname,"%s",extsrch("1")); gtk_button_set_label((GtkButton *)bt_1,lname); sprintf(lname,"%s",extsrch("2")); gtk_button_set_label((GtkButton *)bt_2,lname); sprintf(lname,"%s",extsrch("3")); gtk_button_set_label((GtkButton *)bt_3,lname); sprintf(lname,"%s",extsrch("4")); gtk_button_set_label((GtkButton *)bt_4,lname); sprintf(lname,"%s",extsrch("5")); gtk_button_set_label((GtkButton *)bt_5,lname); sprintf(lname,"%s",extsrch("6")); gtk_button_set_label((GtkButton *)bt_6,lname); sprintf(lname,"%s",extsrch("7")); gtk_button_set_label((GtkButton *)bt_7,lname); sprintf(lname,"%s",extsrch("8")); gtk_button_set_label((GtkButton *)bt_8,lname); sprintf(lname,"%s",extsrch("9")); gtk_button_set_label((GtkButton *)bt_9,lname); sprintf(lname,"%s",extsrch("0")); gtk_button_set_label((GtkButton *)bt_0,lname); sprintf(lname,"%s",extsrch("-")); gtk_button_set_label((GtkButton *)bt_dash,lname); sprintf(lname,"%s",extsrch("=")); gtk_button_set_label((GtkButton *)bt_equal,lname); sprintf(lname,"%s",extsrch("q")); gtk_button_set_label((GtkButton *)bt_q,lname); sprintf(lname,"%s",extsrch("w")); gtk_button_set_label((GtkButton *)bt_w,lname); sprintf(lname,"%s",extsrch("e")); gtk_button_set_label((GtkButton *)bt_e,lname); sprintf(lname,"%s",extsrch("r")); gtk_button_set_label((GtkButton *)bt_r,lname); sprintf(lname,"%s",extsrch("t")); gtk_button_set_label((GtkButton *)bt_t,lname); sprintf(lname,"%s",extsrch("y")); gtk_button_set_label((GtkButton *)bt_y,lname); sprintf(lname,"%s",extsrch("u")); gtk_button_set_label((GtkButton *)bt_u,lname); sprintf(lname,"%s",extsrch("i")); gtk_button_set_label((GtkButton *)bt_i,lname); sprintf(lname,"%s",extsrch("o")); gtk_button_set_label((GtkButton *)bt_o,lname); sprintf(lname,"%s",extsrch("p")); gtk_button_set_label((GtkButton *)bt_p,lname); sprintf(lname,"%s",extsrch("[")); gtk_button_set_label((GtkButton *)bt_sq_bra_left,lname); sprintf(lname,"%s",extsrch("]")); gtk_button_set_label((GtkButton *)bt_sq_bra_right,lname); sprintf(lname,"%s",extsrch("\\")); gtk_button_set_label((GtkButton *)bt_win_slash,lname); sprintf(lname,"%s",extsrch("a")); gtk_button_set_label((GtkButton *)bt_a,lname); sprintf(lname,"%s",extsrch("s")); gtk_button_set_label((GtkButton *)bt_s,lname); sprintf(lname,"%s",extsrch("d")); gtk_button_set_label((GtkButton *)bt_d,lname); sprintf(lname,"%s",extsrch("f")); gtk_button_set_label((GtkButton *)bt_f,lname); sprintf(lname,"%s",extsrch("g")); gtk_button_set_label((GtkButton *)bt_g,lname); sprintf(lname,"%s",extsrch("h")); gtk_button_set_label((GtkButton *)bt_h,lname); sprintf(lname,"%s",extsrch("j")); gtk_button_set_label((GtkButton *)bt_j,lname); sprintf(lname,"%s",extsrch("k")); gtk_button_set_label((GtkButton *)bt_k,lname); sprintf(lname,"%s",extsrch("l")); gtk_button_set_label((GtkButton *)bt_l,lname); sprintf(lname,"%s",extsrch(";")); gtk_button_set_label((GtkButton *)bt_semi_colon,lname); sprintf(lname,"%s",extsrch("'")); gtk_button_set_label((GtkButton *)bt_quote,lname); sprintf(lname,"%s",extsrch("z")); gtk_button_set_label((GtkButton *)bt_z,lname); sprintf(lname,"%s",extsrch("x")); gtk_button_set_label((GtkButton *)bt_x,lname); sprintf(lname,"%s",extsrch("c")); gtk_button_set_label((GtkButton *)bt_c,lname); sprintf(lname,"%s",extsrch("v")); gtk_button_set_label((GtkButton *)bt_v,lname); sprintf(lname,"%s",extsrch("b")); gtk_button_set_label((GtkButton *)bt_b,lname); sprintf(lname,"%s",extsrch("n")); gtk_button_set_label((GtkButton *)bt_n,lname); sprintf(lname,"%s",extsrch("m")); gtk_button_set_label((GtkButton *)bt_m,lname); sprintf(lname,"%s",extsrch(",")); gtk_button_set_label((GtkButton *)bt_coma,lname); sprintf(lname,"%s",extsrch(".")); gtk_button_set_label((GtkButton *)bt_dot,lname); sprintf(lname,"%s",extsrch("/")); gtk_button_set_label((GtkButton *)bt_linux_slash,lname); } void load_shift_mappings(int whichkey) { if (whichkey) { sprintf(lname,"%s",srch("~")); gtk_button_set_label((GtkButton *)bt_back_quote,lname); sprintf(lname,"%s",srch("!")); gtk_button_set_label((GtkButton *)bt_1,lname); sprintf(lname,"%s",srch("@")); gtk_button_set_label((GtkButton *)bt_2,lname); sprintf(lname,"%s",srch("#")); gtk_button_set_label((GtkButton *)bt_3,lname); sprintf(lname,"%s",srch("$")); gtk_button_set_label((GtkButton *)bt_4,lname); sprintf(lname,"%s",srch("%")); gtk_button_set_label((GtkButton *)bt_5,lname); sprintf(lname,"%s",srch("^")); gtk_button_set_label((GtkButton *)bt_6,lname); sprintf(lname,"%s",srch("&")); gtk_button_set_label((GtkButton *)bt_7,lname); sprintf(lname,"%s",srch("*")); gtk_button_set_label((GtkButton *)bt_8,lname); sprintf(lname,"%s",srch("(")); gtk_button_set_label((GtkButton *)bt_9,lname); sprintf(lname,"%s",srch(")")); gtk_button_set_label((GtkButton *)bt_0,lname); sprintf(lname,"%s",srch("_")); gtk_button_set_label((GtkButton *)bt_dash,lname); sprintf(lname,"%s",srch("+")); gtk_button_set_label((GtkButton *)bt_equal,lname); } else { sprintf(lname,"%s",srch("`")); gtk_button_set_label((GtkButton *)bt_back_quote,lname); sprintf(lname,"%s",srch("1")); gtk_button_set_label((GtkButton *)bt_1,lname); sprintf(lname,"%s",srch("2")); gtk_button_set_label((GtkButton *)bt_2,lname); sprintf(lname,"%s",srch("3")); gtk_button_set_label((GtkButton *)bt_3,lname); sprintf(lname,"%s",srch("4")); gtk_button_set_label((GtkButton *)bt_4,lname); sprintf(lname,"%s",srch("5")); gtk_button_set_label((GtkButton *)bt_5,lname); sprintf(lname,"%s",srch("6")); gtk_button_set_label((GtkButton *)bt_6,lname); sprintf(lname,"%s",srch("7")); gtk_button_set_label((GtkButton *)bt_7,lname); sprintf(lname,"%s",srch("8")); gtk_button_set_label((GtkButton *)bt_8,lname); sprintf(lname,"%s",srch("9")); gtk_button_set_label((GtkButton *)bt_9,lname); sprintf(lname,"%s",srch("0")); gtk_button_set_label((GtkButton *)bt_0,lname); sprintf(lname,"%s",srch("-")); gtk_button_set_label((GtkButton *)bt_dash,lname); sprintf(lname,"%s",srch("=")); gtk_button_set_label((GtkButton *)bt_equal,lname); } sprintf(lname,"%s",srch("Q")); gtk_button_set_label((GtkButton *)bt_q,lname); sprintf(lname,"%s",srch("W")); gtk_button_set_label((GtkButton *)bt_w,lname); sprintf(lname,"%s",srch("E")); gtk_button_set_label((GtkButton *)bt_e,lname); sprintf(lname,"%s",srch("R")); gtk_button_set_label((GtkButton *)bt_r,lname); sprintf(lname,"%s",srch("T")); gtk_button_set_label((GtkButton *)bt_t,lname); sprintf(lname,"%s",srch("Y")); gtk_button_set_label((GtkButton *)bt_y,lname); sprintf(lname,"%s",srch("U")); gtk_button_set_label((GtkButton *)bt_u,lname); sprintf(lname,"%s",srch("I")); gtk_button_set_label((GtkButton *)bt_i,lname); sprintf(lname,"%s",srch("O")); gtk_button_set_label((GtkButton *)bt_o,lname); sprintf(lname,"%s",srch("P")); gtk_button_set_label((GtkButton *)bt_p,lname); sprintf(lname,"%s",srch("{")); gtk_button_set_label((GtkButton *)bt_sq_bra_left,lname); sprintf(lname,"%s",srch("}")); gtk_button_set_label((GtkButton *)bt_sq_bra_right,lname); sprintf(lname,"%s",srch("|")); gtk_button_set_label((GtkButton *)bt_win_slash,lname); sprintf(lname,"%s",srch("A")); gtk_button_set_label((GtkButton *)bt_a,lname); sprintf(lname,"%s",srch("S")); gtk_button_set_label((GtkButton *)bt_s,lname); sprintf(lname,"%s",srch("D")); gtk_button_set_label((GtkButton *)bt_d,lname); sprintf(lname,"%s",srch("F")); gtk_button_set_label((GtkButton *)bt_f,lname); sprintf(lname,"%s",srch("G")); gtk_button_set_label((GtkButton *)bt_g,lname); sprintf(lname,"%s",srch("H")); gtk_button_set_label((GtkButton *)bt_h,lname); sprintf(lname,"%s",srch("J")); gtk_button_set_label((GtkButton *)bt_j,lname); sprintf(lname,"%s",srch("K")); gtk_button_set_label((GtkButton *)bt_k,lname); sprintf(lname,"%s",srch("L")); gtk_button_set_label((GtkButton *)bt_l,lname); sprintf(lname,"%s",srch(":")); gtk_button_set_label((GtkButton *)bt_semi_colon,lname); sprintf(lname,"%s",srch("\"")); gtk_button_set_label((GtkButton *)bt_quote,lname); sprintf(lname,"%s",srch("Z")); gtk_button_set_label((GtkButton *)bt_z,lname); sprintf(lname,"%s",srch("X")); gtk_button_set_label((GtkButton *)bt_x,lname); sprintf(lname,"%s",srch("C")); gtk_button_set_label((GtkButton *)bt_c,lname); sprintf(lname,"%s",srch("V")); gtk_button_set_label((GtkButton *)bt_v,lname); sprintf(lname,"%s",srch("B")); gtk_button_set_label((GtkButton *)bt_b,lname); sprintf(lname,"%s",srch("N")); gtk_button_set_label((GtkButton *)bt_n,lname); sprintf(lname,"%s",srch("M")); gtk_button_set_label((GtkButton *)bt_m,lname); sprintf(lname,"%s",srch("<")); gtk_button_set_label((GtkButton *)bt_coma,lname); sprintf(lname,"%s",srch(">")); gtk_button_set_label((GtkButton *)bt_dot,lname); sprintf(lname,"%s",srch("?")); gtk_button_set_label((GtkButton *)bt_linux_slash,lname); } void load_mappings() { sprintf(lname,"%s",srch("`")); gtk_button_set_label((GtkButton *)bt_back_quote,lname); sprintf(lname,"%s",srch("1")); gtk_button_set_label((GtkButton *)bt_1,lname); sprintf(lname,"%s",srch("2")); gtk_button_set_label((GtkButton *)bt_2,lname); sprintf(lname,"%s",srch("3")); gtk_button_set_label((GtkButton *)bt_3,lname); sprintf(lname,"%s",srch("4")); gtk_button_set_label((GtkButton *)bt_4,lname); sprintf(lname,"%s",srch("5")); gtk_button_set_label((GtkButton *)bt_5,lname); sprintf(lname,"%s",srch("6")); gtk_button_set_label((GtkButton *)bt_6,lname); sprintf(lname,"%s",srch("7")); gtk_button_set_label((GtkButton *)bt_7,lname); sprintf(lname,"%s",srch("8")); gtk_button_set_label((GtkButton *)bt_8,lname); sprintf(lname,"%s",srch("9")); gtk_button_set_label((GtkButton *)bt_9,lname); sprintf(lname,"%s",srch("0")); gtk_button_set_label((GtkButton *)bt_0,lname); sprintf(lname,"%s",srch("-")); gtk_button_set_label((GtkButton *)bt_dash,lname); sprintf(lname,"%s",srch("=")); gtk_button_set_label((GtkButton *)bt_equal,lname); sprintf(lname,"%s",srch("q")); gtk_button_set_label((GtkButton *)bt_q,lname); sprintf(lname,"%s",srch("w")); gtk_button_set_label((GtkButton *)bt_w,lname); sprintf(lname,"%s",srch("e")); gtk_button_set_label((GtkButton *)bt_e,lname); sprintf(lname,"%s",srch("r")); gtk_button_set_label((GtkButton *)bt_r,lname); sprintf(lname,"%s",srch("t")); gtk_button_set_label((GtkButton *)bt_t,lname); sprintf(lname,"%s",srch("y")); gtk_button_set_label((GtkButton *)bt_y,lname); sprintf(lname,"%s",srch("u")); gtk_button_set_label((GtkButton *)bt_u,lname); sprintf(lname,"%s",srch("i")); gtk_button_set_label((GtkButton *)bt_i,lname); sprintf(lname,"%s",srch("o")); gtk_button_set_label((GtkButton *)bt_o,lname); sprintf(lname,"%s",srch("p")); gtk_button_set_label((GtkButton *)bt_p,lname); sprintf(lname,"%s",srch("[")); gtk_button_set_label((GtkButton *)bt_sq_bra_left,lname); sprintf(lname,"%s",srch("]")); gtk_button_set_label((GtkButton *)bt_sq_bra_right,lname); sprintf(lname,"%s",srch("\\")); gtk_button_set_label((GtkButton *)bt_win_slash,lname); sprintf(lname,"%s",srch("a")); gtk_button_set_label((GtkButton *)bt_a,lname); sprintf(lname,"%s",srch("s")); gtk_button_set_label((GtkButton *)bt_s,lname); sprintf(lname,"%s",srch("d")); gtk_button_set_label((GtkButton *)bt_d,lname); sprintf(lname,"%s",srch("f")); gtk_button_set_label((GtkButton *)bt_f,lname); sprintf(lname,"%s",srch("g")); gtk_button_set_label((GtkButton *)bt_g,lname); sprintf(lname,"%s",srch("h")); gtk_button_set_label((GtkButton *)bt_h,lname); sprintf(lname,"%s",srch("j")); gtk_button_set_label((GtkButton *)bt_j,lname); sprintf(lname,"%s",srch("k")); gtk_button_set_label((GtkButton *)bt_k,lname); sprintf(lname,"%s",srch("l")); gtk_button_set_label((GtkButton *)bt_l,lname); sprintf(lname,"%s",srch(";")); gtk_button_set_label((GtkButton *)bt_semi_colon,lname); sprintf(lname,"%s",srch("'")); gtk_button_set_label((GtkButton *)bt_quote,lname); sprintf(lname,"%s",srch("z")); gtk_button_set_label((GtkButton *)bt_z,lname); sprintf(lname,"%s",srch("x")); gtk_button_set_label((GtkButton *)bt_x,lname); sprintf(lname,"%s",srch("c")); gtk_button_set_label((GtkButton *)bt_c,lname); sprintf(lname,"%s",srch("v")); gtk_button_set_label((GtkButton *)bt_v,lname); sprintf(lname,"%s",srch("b")); gtk_button_set_label((GtkButton *)bt_b,lname); sprintf(lname,"%s",srch("n")); gtk_button_set_label((GtkButton *)bt_n,lname); sprintf(lname,"%s",srch("m")); gtk_button_set_label((GtkButton *)bt_m,lname); sprintf(lname,"%s",srch(",")); gtk_button_set_label((GtkButton *)bt_coma,lname); sprintf(lname,"%s",srch(".")); gtk_button_set_label((GtkButton *)bt_dot,lname); sprintf(lname,"%s",srch("/")); gtk_button_set_label((GtkButton *)bt_linux_slash,lname); } void english_shift_mappings(int whichkey) { if (whichkey) { strcpy(lname,"~"); gtk_button_set_label((GtkButton *)bt_back_quote,lname); strcpy(lname,"!"); gtk_button_set_label((GtkButton *)bt_1,lname); strcpy(lname,"@"); gtk_button_set_label((GtkButton *)bt_2,lname); strcpy(lname,"#"); gtk_button_set_label((GtkButton *)bt_3,lname); strcpy(lname,"$"); gtk_button_set_label((GtkButton *)bt_4,lname); strcpy(lname,"%"); gtk_button_set_label((GtkButton *)bt_5,lname); strcpy(lname,"^"); gtk_button_set_label((GtkButton *)bt_6,lname); strcpy(lname,"&"); gtk_button_set_label((GtkButton *)bt_7,lname); strcpy(lname,"*"); gtk_button_set_label((GtkButton *)bt_8,lname); strcpy(lname,"("); gtk_button_set_label((GtkButton *)bt_9,lname); strcpy(lname,")"); gtk_button_set_label((GtkButton *)bt_0,lname); strcpy(lname,"_"); gtk_button_set_label((GtkButton *)bt_dash,lname); strcpy(lname,"+"); gtk_button_set_label((GtkButton *)bt_equal,lname); } else { strcpy(lname,"`"); gtk_button_set_label((GtkButton *)bt_back_quote,lname); strcpy(lname,"1"); gtk_button_set_label((GtkButton *)bt_1,lname); strcpy(lname,"2"); gtk_button_set_label((GtkButton *)bt_2,lname); strcpy(lname,"3"); gtk_button_set_label((GtkButton *)bt_3,lname); strcpy(lname,"4"); gtk_button_set_label((GtkButton *)bt_4,lname); strcpy(lname,"5"); gtk_button_set_label((GtkButton *)bt_5,lname); strcpy(lname,"6"); gtk_button_set_label((GtkButton *)bt_6,lname); strcpy(lname,"7"); gtk_button_set_label((GtkButton *)bt_7,lname); strcpy(lname,"8"); gtk_button_set_label((GtkButton *)bt_8,lname); strcpy(lname,"9"); gtk_button_set_label((GtkButton *)bt_9,lname); strcpy(lname,"0"); gtk_button_set_label((GtkButton *)bt_0,lname); strcpy(lname,"-"); gtk_button_set_label((GtkButton *)bt_dash,lname); strcpy(lname,"="); gtk_button_set_label((GtkButton *)bt_equal,lname); } strcpy(lname,"Q"); gtk_button_set_label((GtkButton *)bt_q,lname); strcpy(lname,"W"); gtk_button_set_label((GtkButton *)bt_w,lname); strcpy(lname,"E"); gtk_button_set_label((GtkButton *)bt_e,lname); strcpy(lname,"R"); gtk_button_set_label((GtkButton *)bt_r,lname); strcpy(lname,"T"); gtk_button_set_label((GtkButton *)bt_t,lname); strcpy(lname,"Y"); gtk_button_set_label((GtkButton *)bt_y,lname); strcpy(lname,"U"); gtk_button_set_label((GtkButton *)bt_u,lname); strcpy(lname,"I"); gtk_button_set_label((GtkButton *)bt_i,lname); strcpy(lname,"O"); gtk_button_set_label((GtkButton *)bt_o,lname); strcpy(lname,"P"); gtk_button_set_label((GtkButton *)bt_p,lname); strcpy(lname,"{"); gtk_button_set_label((GtkButton *)bt_sq_bra_left,lname); strcpy(lname,"}"); gtk_button_set_label((GtkButton *)bt_sq_bra_right,lname); strcpy(lname,"|"); gtk_button_set_label((GtkButton *)bt_win_slash,lname); strcpy(lname,"A"); gtk_button_set_label((GtkButton *)bt_a,lname); strcpy(lname,"S"); gtk_button_set_label((GtkButton *)bt_s,lname); strcpy(lname,"D"); gtk_button_set_label((GtkButton *)bt_d,lname); strcpy(lname,"F"); gtk_button_set_label((GtkButton *)bt_f,lname); strcpy(lname,"G"); gtk_button_set_label((GtkButton *)bt_g,lname); strcpy(lname,"H"); gtk_button_set_label((GtkButton *)bt_h,lname); strcpy(lname,"J"); gtk_button_set_label((GtkButton *)bt_j,lname); strcpy(lname,"K"); gtk_button_set_label((GtkButton *)bt_k,lname); strcpy(lname,"L"); gtk_button_set_label((GtkButton *)bt_l,lname); strcpy(lname,":"); gtk_button_set_label((GtkButton *)bt_semi_colon,lname); strcpy(lname,"\""); gtk_button_set_label((GtkButton *)bt_quote,lname); strcpy(lname,"Z"); gtk_button_set_label((GtkButton *)bt_z,lname); strcpy(lname,"X"); gtk_button_set_label((GtkButton *)bt_x,lname); strcpy(lname,"C"); gtk_button_set_label((GtkButton *)bt_c,lname); strcpy(lname,"V"); gtk_button_set_label((GtkButton *)bt_v,lname); strcpy(lname,"B"); gtk_button_set_label((GtkButton *)bt_b,lname); strcpy(lname,"N"); gtk_button_set_label((GtkButton *)bt_n,lname); strcpy(lname,"M"); gtk_button_set_label((GtkButton *)bt_m,lname); strcpy(lname,"<"); gtk_button_set_label((GtkButton *)bt_coma,lname); strcpy(lname,">"); gtk_button_set_label((GtkButton *)bt_dot,lname); strcpy(lname,"?"); gtk_button_set_label((GtkButton *)bt_linux_slash,lname); } void english_mappings() { mapcnt=0; extmapcnt=0; strcpy(lname,"`"); gtk_button_set_label((GtkButton *)bt_back_quote,lname); strncpy(map[mapcnt].keyname,"~",1); strcpy(map[mapcnt++].keyvalue,"~"); strncpy(map[mapcnt].keyname,"`",1); strcpy(map[mapcnt++].keyvalue,"`"); strcpy(lname,"1"); gtk_button_set_label((GtkButton *)bt_1,lname); strncpy(map[mapcnt].keyname,"!",1); strcpy(map[mapcnt++].keyvalue,"!"); strncpy(map[mapcnt].keyname,"1",1); strcpy(map[mapcnt++].keyvalue,"1"); strcpy(lname,"2"); gtk_button_set_label((GtkButton *)bt_2,lname); strncpy(map[mapcnt].keyname,"@",1); strcpy(map[mapcnt++].keyvalue,"@"); strncpy(map[mapcnt].keyname,"2",1); strcpy(map[mapcnt++].keyvalue,"2"); strcpy(lname,"3"); gtk_button_set_label((GtkButton *)bt_3,lname); strncpy(map[mapcnt].keyname,"#",1); strcpy(map[mapcnt++].keyvalue,"#"); strncpy(map[mapcnt].keyname,"3",1); strcpy(map[mapcnt++].keyvalue,"3"); strcpy(lname,"4"); gtk_button_set_label((GtkButton *)bt_4,lname); strncpy(map[mapcnt].keyname,"$",1); strcpy(map[mapcnt++].keyvalue,"$"); strncpy(map[mapcnt].keyname,"4",1); strcpy(map[mapcnt++].keyvalue,"4"); strncpy(extmap[extmapcnt].keyname,"4",1); strcpy(extmap[extmapcnt++].keyvalue,"₹"); strcpy(lname,"5"); gtk_button_set_label((GtkButton *)bt_5,lname); strncpy(map[mapcnt].keyname,"%",1); strcpy(map[mapcnt++].keyvalue,"%"); strncpy(map[mapcnt].keyname,"5",1); strcpy(map[mapcnt++].keyvalue,"5"); strcpy(lname,"6"); gtk_button_set_label((GtkButton *)bt_6,lname); strncpy(map[mapcnt].keyname,"^",1); strcpy(map[mapcnt++].keyvalue,"^"); strncpy(map[mapcnt].keyname,"6",1); strcpy(map[mapcnt++].keyvalue,"6"); strcpy(lname,"7"); gtk_button_set_label((GtkButton *)bt_7,lname); strncpy(map[mapcnt].keyname,"&",1); strcpy(map[mapcnt++].keyvalue,"&"); strncpy(map[mapcnt].keyname,"7",1); strcpy(map[mapcnt++].keyvalue,"7"); strcpy(lname,"8"); gtk_button_set_label((GtkButton *)bt_8,lname); strncpy(map[mapcnt].keyname,"*",1); strcpy(map[mapcnt++].keyvalue,"*"); strncpy(map[mapcnt].keyname,"8",1); strcpy(map[mapcnt++].keyvalue,"8"); strcpy(lname,"9"); gtk_button_set_label((GtkButton *)bt_9,lname); strncpy(map[mapcnt].keyname,"(",1); strcpy(map[mapcnt++].keyvalue,"("); strncpy(map[mapcnt].keyname,"9",1); strcpy(map[mapcnt++].keyvalue,"9"); strcpy(lname,"0"); gtk_button_set_label((GtkButton *)bt_0,lname); strncpy(map[mapcnt].keyname,")",1); strcpy(map[mapcnt++].keyvalue,")"); strncpy(map[mapcnt].keyname,"0",1); strcpy(map[mapcnt++].keyvalue,"0"); strcpy(lname,"-"); gtk_button_set_label((GtkButton *)bt_dash,lname); strncpy(map[mapcnt].keyname,"_",1); strcpy(map[mapcnt++].keyvalue,"_"); strncpy(map[mapcnt].keyname,"-",1); strcpy(map[mapcnt++].keyvalue,"-"); strcpy(lname,"="); gtk_button_set_label((GtkButton *)bt_equal,lname); strncpy(map[mapcnt].keyname,"+",1); strcpy(map[mapcnt++].keyvalue,"+"); strncpy(map[mapcnt].keyname,"=",1); strcpy(map[mapcnt++].keyvalue,"="); strcpy(lname,"q"); gtk_button_set_label((GtkButton *)bt_q,lname); strncpy(map[mapcnt].keyname,"Q",1); strcpy(map[mapcnt++].keyvalue,"Q"); strncpy(map[mapcnt].keyname,"q",1); strcpy(map[mapcnt++].keyvalue,"q"); strcpy(lname,"w"); gtk_button_set_label((GtkButton *)bt_w,lname); strncpy(map[mapcnt].keyname,"W",1); strcpy(map[mapcnt++].keyvalue,"W"); strncpy(map[mapcnt].keyname,"w",1); strcpy(map[mapcnt++].keyvalue,"w"); strcpy(lname,"e"); gtk_button_set_label((GtkButton *)bt_e,lname); strncpy(map[mapcnt].keyname,"E",1); strcpy(map[mapcnt++].keyvalue,"E"); strncpy(map[mapcnt].keyname,"e",1); strcpy(map[mapcnt++].keyvalue,"e"); strcpy(lname,"r"); gtk_button_set_label((GtkButton *)bt_r,lname); strncpy(map[mapcnt].keyname,"R",1); strcpy(map[mapcnt++].keyvalue,"R"); strncpy(map[mapcnt].keyname,"r",1); strcpy(map[mapcnt++].keyvalue,"r"); strcpy(lname,"t"); gtk_button_set_label((GtkButton *)bt_t,lname); strncpy(map[mapcnt].keyname,"T",1); strcpy(map[mapcnt++].keyvalue,"T"); strncpy(map[mapcnt].keyname,"t",1); strcpy(map[mapcnt++].keyvalue,"t"); strcpy(lname,"y"); gtk_button_set_label((GtkButton *)bt_y,lname); strncpy(map[mapcnt].keyname,"Y",1); strcpy(map[mapcnt++].keyvalue,"Y"); strncpy(map[mapcnt].keyname,"y",1); strcpy(map[mapcnt++].keyvalue,"y"); strcpy(lname,"u"); gtk_button_set_label((GtkButton *)bt_u,lname); strncpy(map[mapcnt].keyname,"U",1); strcpy(map[mapcnt++].keyvalue,"U"); strncpy(map[mapcnt].keyname,"u",1); strcpy(map[mapcnt++].keyvalue,"u"); strcpy(lname,"i"); gtk_button_set_label((GtkButton *)bt_i,lname); strncpy(map[mapcnt].keyname,"I",1); strcpy(map[mapcnt++].keyvalue,"I"); strncpy(map[mapcnt].keyname,"i",1); strcpy(map[mapcnt++].keyvalue,"i"); strcpy(lname,"o"); gtk_button_set_label((GtkButton *)bt_o,lname); strncpy(map[mapcnt].keyname,"O",1); strcpy(map[mapcnt++].keyvalue,"O"); strncpy(map[mapcnt].keyname,"o",1); strcpy(map[mapcnt++].keyvalue,"o"); strcpy(lname,"p"); gtk_button_set_label((GtkButton *)bt_p,lname); strncpy(map[mapcnt].keyname,"P",1); strcpy(map[mapcnt++].keyvalue,"P"); strncpy(map[mapcnt].keyname,"p",1); strcpy(map[mapcnt++].keyvalue,"p"); strcpy(lname,"["); gtk_button_set_label((GtkButton *)bt_sq_bra_left,lname); strncpy(map[mapcnt].keyname,"{",1); strcpy(map[mapcnt++].keyvalue,"{"); strncpy(map[mapcnt].keyname,"[",1); strcpy(map[mapcnt++].keyvalue,"["); strcpy(lname,"]"); gtk_button_set_label((GtkButton *)bt_sq_bra_right,lname); strncpy(map[mapcnt].keyname,"}",1); strcpy(map[mapcnt++].keyvalue,"}"); strncpy(map[mapcnt].keyname,"]",1); strcpy(map[mapcnt++].keyvalue,"]"); strcpy(lname,"\\"); gtk_button_set_label((GtkButton *)bt_win_slash,lname); strncpy(map[mapcnt].keyname,"|",1); strcpy(map[mapcnt++].keyvalue,"|"); strncpy(map[mapcnt].keyname,"\\",1); strcpy(map[mapcnt++].keyvalue,"\\"); strcpy(lname,"a"); gtk_button_set_label((GtkButton *)bt_a,lname); strncpy(map[mapcnt].keyname,"A",1); strcpy(map[mapcnt++].keyvalue,"A"); strncpy(map[mapcnt].keyname,"a",1); strcpy(map[mapcnt++].keyvalue,"a"); strcpy(lname,"s"); gtk_button_set_label((GtkButton *)bt_s,lname); strncpy(map[mapcnt].keyname,"S",1); strcpy(map[mapcnt++].keyvalue,"S"); strncpy(map[mapcnt].keyname,"s",1); strcpy(map[mapcnt++].keyvalue,"s"); strcpy(lname,"d"); gtk_button_set_label((GtkButton *)bt_d,lname); strncpy(map[mapcnt].keyname,"D",1); strcpy(map[mapcnt++].keyvalue,"D"); strncpy(map[mapcnt].keyname,"d",1); strcpy(map[mapcnt++].keyvalue,"d"); strcpy(lname,"f"); gtk_button_set_label((GtkButton *)bt_f,lname); strncpy(map[mapcnt].keyname,"F",1); strcpy(map[mapcnt++].keyvalue,"F"); strncpy(map[mapcnt].keyname,"f",1); strcpy(map[mapcnt++].keyvalue,"f"); strcpy(lname,"g"); gtk_button_set_label((GtkButton *)bt_g,lname); strncpy(map[mapcnt].keyname,"G",1); strcpy(map[mapcnt++].keyvalue,"G"); strncpy(map[mapcnt].keyname,"g",1); strcpy(map[mapcnt++].keyvalue,"g"); strcpy(lname,"h"); gtk_button_set_label((GtkButton *)bt_h,lname); strncpy(map[mapcnt].keyname,"H",1); strcpy(map[mapcnt++].keyvalue,"H"); strncpy(map[mapcnt].keyname,"h",1); strcpy(map[mapcnt++].keyvalue,"h"); strcpy(lname,"j"); gtk_button_set_label((GtkButton *)bt_j,lname); strncpy(map[mapcnt].keyname,"J",1); strcpy(map[mapcnt++].keyvalue,"J"); strncpy(map[mapcnt].keyname,"j",1); strcpy(map[mapcnt++].keyvalue,"j"); strcpy(lname,"k"); gtk_button_set_label((GtkButton *)bt_k,lname); strncpy(map[mapcnt].keyname,"K",1); strcpy(map[mapcnt++].keyvalue,"K"); strncpy(map[mapcnt].keyname,"k",1); strcpy(map[mapcnt++].keyvalue,"k"); strcpy(lname,"l"); gtk_button_set_label((GtkButton *)bt_l,lname); strncpy(map[mapcnt].keyname,"L",1); strcpy(map[mapcnt++].keyvalue,"L"); strncpy(map[mapcnt].keyname,"l",1); strcpy(map[mapcnt++].keyvalue,"l"); strcpy(lname,";"); gtk_button_set_label((GtkButton *)bt_semi_colon,lname); strncpy(map[mapcnt].keyname,":",1); strcpy(map[mapcnt++].keyvalue,":"); strncpy(map[mapcnt].keyname,";",1); strcpy(map[mapcnt++].keyvalue,";"); strcpy(lname,"'"); gtk_button_set_label((GtkButton *)bt_quote,lname); strncpy(map[mapcnt].keyname,"\"",1); strcpy(map[mapcnt++].keyvalue,"\""); strncpy(map[mapcnt].keyname,"'",1); strcpy(map[mapcnt++].keyvalue,"'"); strcpy(lname,"z"); gtk_button_set_label((GtkButton *)bt_z,lname); strncpy(map[mapcnt].keyname,"Z",1); strcpy(map[mapcnt++].keyvalue,"Z"); strncpy(map[mapcnt].keyname,"z",1); strcpy(map[mapcnt++].keyvalue,"z"); strcpy(lname,"x"); gtk_button_set_label((GtkButton *)bt_x,lname); strncpy(map[mapcnt].keyname,"X",1); strcpy(map[mapcnt++].keyvalue,"X"); strncpy(map[mapcnt].keyname,"x",1); strcpy(map[mapcnt++].keyvalue,"x"); strcpy(lname,"c"); gtk_button_set_label((GtkButton *)bt_c,lname); strncpy(map[mapcnt].keyname,"C",1); strcpy(map[mapcnt++].keyvalue,"C"); strncpy(map[mapcnt].keyname,"c",1); strcpy(map[mapcnt++].keyvalue,"c"); strcpy(lname,"v"); gtk_button_set_label((GtkButton *)bt_v,lname); strncpy(map[mapcnt].keyname,"V",1); strcpy(map[mapcnt++].keyvalue,"V"); strncpy(map[mapcnt].keyname,"v",1); strcpy(map[mapcnt++].keyvalue,"v"); strcpy(lname,"b"); gtk_button_set_label((GtkButton *)bt_b,lname); strncpy(map[mapcnt].keyname,"B",1); strcpy(map[mapcnt++].keyvalue,"B"); strncpy(map[mapcnt].keyname,"b",1); strcpy(map[mapcnt++].keyvalue,"b"); strcpy(lname,"n"); gtk_button_set_label((GtkButton *)bt_n,lname); strncpy(map[mapcnt].keyname,"N",1); strcpy(map[mapcnt++].keyvalue,"N"); strncpy(map[mapcnt].keyname,"n",1); strcpy(map[mapcnt++].keyvalue,"n"); strcpy(lname,"m"); gtk_button_set_label((GtkButton *)bt_m,lname); strncpy(map[mapcnt].keyname,"M",1); strcpy(map[mapcnt++].keyvalue,"M"); strncpy(map[mapcnt].keyname,"m",1); strcpy(map[mapcnt++].keyvalue,"m"); strcpy(lname,","); gtk_button_set_label((GtkButton *)bt_coma,lname); strncpy(map[mapcnt].keyname,"<",1); strcpy(map[mapcnt++].keyvalue,"<"); strncpy(map[mapcnt].keyname,",",1); strcpy(map[mapcnt++].keyvalue,","); strcpy(lname,"."); gtk_button_set_label((GtkButton *)bt_dot,lname); strncpy(map[mapcnt].keyname,">",1); strcpy(map[mapcnt++].keyvalue,">"); strncpy(map[mapcnt].keyname,".",1); strcpy(map[mapcnt++].keyvalue,"."); strcpy(lname,"/"); gtk_button_set_label((GtkButton *)bt_linux_slash,lname); strncpy(map[mapcnt].keyname,"?",1); strcpy(map[mapcnt++].keyvalue,"?"); strncpy(map[mapcnt].keyname,"/",1); strcpy(map[mapcnt++].keyvalue,"/"); } void get_xkb_mappings(char *mfile) { FILE *ifp; int i=0,j=0; char iline[80]; char mmfile[80]; char *ntoken; char *itoken; strcpy(mmfile,mfile+4); xmapcnt=0; ifp= fopen("/usr/share/X11/xkb/symbols/in", "r"); while (fgets(iline,80,ifp) != NULL) { if (strstr(iline,"xkb_symbols")!=NULL) { ntoken=(char *) malloc(sizeof(char) * 25); memset(ntoken,'\0',25); ntoken = strtok(iline, " "); ntoken = strtok(NULL, " \""); } if (strstr(iline,"name[Group1]")!=NULL) { if (strcmp(iline,"\tname[Group1]=\"India\";\n")==0) { itoken=(char *) malloc(sizeof(char) * 7); memset(itoken,'\0',7); strcpy(itoken,"India"); } else { char *nntoken; size_t nn=0,nn_cnt=0; itoken=(char *)malloc(65*sizeof(char)); memset(itoken,'\0',65); nn=strlen(iline); while (nn_cnt < nn) { if (iline[nn_cnt] == '\"') { strncpy(itoken,iline+nn_cnt+1,nn-nn_cnt-4); break; } else nn_cnt++; } } //Start actual parsing of map if (strcmp(itoken,mmfile)==0 ) { while (fgets(iline,80,ifp) != NULL) { if (strcmp(iline,"};\n")==0) break; else { char *ktoken,*ktokenl,*ktokenu,*ktokenn; if (strstr(iline,"key <")!=NULL && iline[0]!='/' && strstr(iline,"RALT")==NULL) { i=0; ktoken = strtok(iline, " \t"); ktokenn = strtok(NULL, " <>"); ktoken = strtok(NULL, " \t{}"); ktokenl = strtok(NULL, " ,\t"); /* Apostrophe rules for some keymaps are written like [apostrope, * we need to parse this as a special case */ if (strcmp(ktoken,"[apostrophe,")==0) { strcpy(ktokenl,"'"); strcpy(ktokenu,"\""); } else { if (strstr(ktokenl,"U")==NULL ) { for (j=0; j<35; j++) if (strcmp(ktokenl,spl_sym[j][0])==0) { strcpy(ktokenl,spl_sym[j][1]); } } ktokenu = strtok(NULL, " ,\t]\\"); if (strstr(ktokenu,"U")==NULL ) { for (j=0; j<35; j++) if (strcmp(ktokenu,spl_sym[j][0])==0) { strcpy(ktokenu,spl_sym[j][1]); } } } if (strstr(ktokenn,"AE")!=NULL || strstr(ktokenn,"AD")!=NULL || strstr(ktokenn,"BKSL")!=NULL || strstr(ktokenn,"AC")!=NULL || (strstr(ktokenn,"AB")!=NULL && strstr(ktokenn,"TAB")==NULL ) || strstr(ktokenn,"TLDE")!=NULL ) { for (j=0; j<47; j++) if (strcmp(ktokenn,key_map[j][0])==0) { strncpy(xmap[xmapcnt].xkeynamel,key_map[j][1],1); strncpy(xmap[xmapcnt].xkeynameu,key_map[j][2],1); } if (strcmp(ktokenl,"]")!=0) strcpy(xmap[xmapcnt].xkeyvaluel,ktokenl); else strcpy(xmap[xmapcnt].xkeyvaluel,""); if (strcmp(ktokenu,"]")!=0 && strcmp(ktokenu,"};")!=0 && strcmp(ktokenu,"};\n")!=0 ) { strcpy(xmap[xmapcnt].xkeyvalueu,ktokenu); } else strcpy(xmap[xmapcnt].xkeyvalueu,""); xmapcnt++; } } } } } } } int ii=0,c=0; for (ii=0,c=0; iiname || xmlStrcmp(root->name,(const xmlChar *)"iso_639_3_entries")) { xmlFreeDoc(doc); return FALSE; } for (cur_node = root->children; cur_node != NULL; cur_node = cur_node->next) { if ( cur_node->type == XML_ELEMENT_NODE && !xmlStrcmp(cur_node->name, (const xmlChar *) "iso_639_3_entry" ) ) { iso639_3_id = xmlGetProp(cur_node,(const xmlChar *)"id"); iso639_part1_code = xmlGetProp(cur_node,(const xmlChar *)"part1_code"); iso639_3_name = xmlGetProp(cur_node,(const xmlChar *)"name"); if (lname && (strcmp(iso639_3_name,lname)==0)) { if (iso639_part1_code) { return iso639_part1_code; } if (!iso639_part1_code && iso639_3_id) { return iso639_3_id; } } else if ((lname && (strstr(iso639_3_name,lname)!=NULL)) && ((strstr(iso639_3_name,"India")!=NULL) || (strstr(iso639_3_name,"macrolanguage")!=NULL))) { if (iso639_part1_code) { return iso639_part1_code; } if (!iso639_part1_code && iso639_3_id) { return iso639_3_id; } } else { if (strstr(iso639_3_name,";")!= NULL) { char *ktoken; ktoken = strtok(iso639_3_name, ";"); if (ktoken == NULL) break; while (ktoken!= NULL) { if (strstr(ktoken,lname)!=NULL) { if (iso639_part1_code) { return iso639_part1_code; } if (!iso639_part1_code && iso639_3_id) { return iso639_3_id; } } ktoken = strtok(NULL, ";"); } } } xmlFree(iso639_3_id); xmlFree(iso639_part1_code); xmlFree(iso639_3_name); } } xmlFreeDoc(doc); xmlCleanupParser(); return ""; } void get_mappings(char *mfile) { FILE *fp,*ifp; char line[80],iline[80]; char mfile_path[80],hfile_path[80]; char *home_dir; const char delims[] = "\" ()"; char *result = NULL,*res1=NULL,*res2=NULL; int linelen=0,tokcnt=0,k=0,i=0; char *ptr,local[4],mmfile[20],*langcode,*scriptcode,mfilesplit[80]; mapcnt=0,extmapcnt=0; memset(local,'\0',4); memset(mmfile,'\0',20); memset(mfilesplit,'\0',80); memset(mfile_path,'\0',80); memset(hfile_path,'\0',80); strcpy(mfilesplit,mfile); langcode=strtok(mfilesplit,"-"); scriptcode=strtok(NULL,"-"); if (strstr(mfile,"xkb-")!=NULL) { get_xkb_mappings(mfile); load_mappings(); } else { /*## tweak Punjabi lang code as its spelled as Panjabi in /usr/share/xml/iso-codes/iso_639_3.xml */ if (strcmp(langcode,"Punjabi")==0) { strcpy(local,"pa"); if(strcmp(scriptcode,"inscript")==0 ) { sprintf(mmfile,"%s-inscript",local); scriptcode=NULL; } else if(strcmp(scriptcode,"inscript2")==0) { sprintf(mmfile,"%s-inscript2",local); scriptcode=NULL; } else sprintf(mmfile,"%s-inscript2",local); if (scriptcode != NULL) { strcat(mmfile,"-"); strcat(mmfile,scriptcode); } } else { /* This if code added just to make sure custom saved hi-inscript2.mim when read local is set "" */ if(strlen(langcode)< 3) strcpy(local,""); else strcpy(local,get_iso_code(langcode)); if(strcmp(scriptcode,"inscript")==0 ) { sprintf(mmfile,"%s-inscript",local); scriptcode=NULL; } else if(strcmp(scriptcode,"inscript2")==0) { sprintf(mmfile,"%s-inscript2",local); scriptcode=NULL; } else sprintf(mmfile,"%s-inscript2",local); if (scriptcode != NULL) { strcat(mmfile,"-"); strcat(mmfile,scriptcode); } } if (local[0] == '\0') { home_dir=getenv("HOME"); strcpy(hfile_path,home_dir); strcat(hfile_path,"/.m17n.d/"); strncat(hfile_path,mfile,strlen(mfile)); strcat(hfile_path,".mim"); strcpy(mfile_path,"/usr/share/m17n/"); strncat(mfile_path,mfile,strlen(mfile)); strcat(mfile_path,".mim"); } else { strcpy(mfile_path,"/usr/share/m17n/"); strncat(mfile_path,mmfile,strlen(mmfile)); strcat(mfile_path,".mim"); } struct stat buf; if ( stat ( mfile_path, &buf ) == 0 ) fp = fopen(mfile_path, "r"); else if ( stat ( hfile_path, &buf ) == 0 ) fp = fopen(hfile_path, "r"); else { printf("Not a standard keymap file in standard path\n"); exit(0); } while (fgets(line,80,fp) != NULL) { linelen=strlen(line); line[linelen-1]='\0'; //for parsing kn-kgp.mim char *pline; pline= (char *)malloc(80*sizeof(char)); memset(pline,'\0',80); int pat=0; pline=strchr(line,'('); if (pline != NULL && strstr(pline,"\(\"V\") \(\"W\") \(\"Y\") \(\"Z\")")== NULL) { for (pat=0; pat<4; pat++) { pline=strchr(pline+1,'('); if (pline == NULL) break; } } if (pline == NULL && strstr(line,"G-")!= NULL ) { char delime1[]="( )\"G-"; res1=strtok( line, delime1 ); if(strstr(line,"G--")!= NULL) strncpy(extmap[extmapcnt].keyname,"-",1); else if(strstr(line,"G-G")!= NULL) { strncpy(extmap[extmapcnt].keyname,"G",1); } else if(strstr(line,"G-\"")!= NULL) strncpy(extmap[extmapcnt].keyname,"\"",1); else if(strstr(line,"G-(")!= NULL) strncpy(extmap[extmapcnt].keyname,"(",1); else if(strstr(line,"G-)")!= NULL) strncpy(extmap[extmapcnt].keyname,")",1); else strncpy(extmap[extmapcnt].keyname,res1,1); res2=strtok( NULL, delime1 ); if (res2==NULL) strcpy(extmap[extmapcnt].keyvalue,res1); else strcpy(extmap[extmapcnt].keyvalue,res2); extmapcnt++; } // Only parse valid lines with 1:1 keypair if (pline == NULL && strstr(line,"(\"")!= NULL && strstr(line,"delete")==NULL && strstr(line,"toggle")==NULL) { tokcnt=0; if (strstr(line,"(\"(\"")!=NULL) { char delim1[]="\" )"; strncpy(map[mapcnt].keyname,"(",1); if (strstr(mmfile,"inscript2")!= NULL) { strcpy(map[mapcnt].keyvalue,"("); res1=strtok( line, delim1 ); } else { res1=strtok( line, delim1 ); if (res1[0]=='?'&& strlen(res1)!=1) { ptr=strchr(res1,'?'); *ptr++='\0'; strcpy(map[mapcnt].keyvalue,ptr); } else { strcpy(map[mapcnt].keyvalue,res1); } } mapcnt++; } if (strstr(line,"(\")\"")!=NULL) { char delim1[]="\" ("; strncpy(map[mapcnt].keyname,")",1); if (strstr(mmfile,"inscript2")!= NULL) { strcpy(map[mapcnt].keyvalue,")"); res1=strtok( line, delim1 ); } else { res1=strtok( line, delim1 ); if (res1[0]=='?'&& strlen(res1)!=1) { ptr=strchr(res1,'?'); *ptr++='\0'; strcpy(map[mapcnt].keyvalue,ptr); } else { strcpy(map[mapcnt].keyvalue,res1); } } mapcnt++; } if (strstr(line,"(\"\\\"")!=NULL) { char delim1[]="\\\" ()"; strncpy(map[mapcnt].keyname,"\"",1); res1=strtok( line, delim1 ); if (res1 == NULL) { strcpy(map[mapcnt].keyvalue,"\""); mapcnt++; } else if (res1[0]=='?'&& strlen(res1)!=1) { ptr=strchr(res1,'?'); *ptr++='\0'; strcpy(map[mapcnt].keyvalue,ptr); } else { strcpy(map[mapcnt].keyvalue,res1); } mapcnt++; } if (strstr(line,"(\"\\\\\"")!=NULL) { char delim1[]="\"\\ ()"; strncpy(map[mapcnt].keyname,"\\",1); res1=strtok( line, delim1 ); if (res1==NULL) { strcpy(map[mapcnt].keyvalue,"\\"); } else if (res1[0]=='?'&& strlen(res1)!=1) { ptr=strchr(res1,'?'); *ptr++='\0'; strcpy(map[mapcnt].keyvalue,ptr); } else if (res1[0]=='?'&& strlen(res1)==1) { strcpy(map[mapcnt].keyvalue,"\\"); } else { strcpy(map[mapcnt].keyvalue,res1); } mapcnt++; } result = strtok( line, delims ); while ( result != NULL && tokcnt<2 ) { if (strstr(result,"\\;") != NULL || strstr(result," (")!=NULL || strstr(result,"\\")!=NULL) { result = strtok( NULL, delims ); } else { if (tokcnt == 0) { if (strlen(result)>1) tokcnt=2; else strncpy(map[mapcnt].keyname,result,1); } if (tokcnt == 1) { if (result[0]=='?'&& strlen(result)!=1) { ptr=strchr(result,'?'); *ptr++='\0'; strcpy(map[mapcnt].keyvalue,ptr); } else if (result[0]=='\\') { ptr=strchr(result,'?'); *ptr++='\0'; strcpy(map[mapcnt].keyvalue,ptr); } else { strcpy(map[mapcnt].keyvalue,result); } mapcnt++; } if (tokcnt == 2 && strlen(result)>2) { GtkWidget *mdialog; mdialog = gtk_message_dialog_new (GTK_WINDOW(IndicMapper), GTK_DIALOG_DESTROY_WITH_PARENT, GTK_MESSAGE_ERROR, GTK_BUTTONS_CLOSE, NULL); gtk_message_dialog_set_markup (GTK_MESSAGE_DIALOG (mdialog), _("This keymap file does not map uniquely to a keyboard and therefore cannot be displayed correctly")); gtk_dialog_run (GTK_DIALOG (mdialog)); gtk_widget_destroy (mdialog); gtk_combo_box_set_active ((GtkComboBox *)combo_mim,0); english_mappings(); goto NotValidKeymap; } tokcnt++; } result = strtok( NULL, delims ); } } } gtk_toggle_button_set_active((GtkToggleButton *)l_shift_btn,FALSE); gtk_toggle_button_set_active((GtkToggleButton *)r_shift_btn,FALSE); gtk_toggle_button_set_active((GtkToggleButton *)caps_btn,FALSE); gtk_toggle_button_set_active((GtkToggleButton *)altgr_btn,FALSE); load_mappings(); NotValidKeymap: fclose(fp); } } void print_xkb_map() { int i=0; for (i=0; i< 47; i++) { printf(" Key <%s> { [",key_map[i][0]); int n1,c1,len1; wchar_t *wp1,*wp2,*wp3,*wp4; char p1[MB_CUR_MAX+1],p2[MB_CUR_MAX+1],p3[MB_CUR_MAX+1],p4[MB_CUR_MAX+1]; char unichar1[5],unichar2[5],unichar3[5],unichar4[5]; char *entry_text1,*entry_text2,*entry_text3,*entry_text4; entry_text1=srch(key_map[i][1]); n1 = strlen(entry_text1) * sizeof(wchar_t); wp1 = (wchar_t *)malloc(n1); len1 = mbstowcs(wp1, entry_text1, n1); if (strcmp(entry_text1,"ZWNJ")!=0 && strcmp(entry_text1,"ZWJ")!=0) { for (c1=0; c10) p1[x1]=0; sprintf(unichar1, "%04X", wp1[c1]); printf(" U%04X",strtol(unichar1, 0, 16)); } } entry_text2=srch(key_map[i][2]); n1 = strlen(entry_text2) * sizeof(wchar_t); wp2 = (wchar_t *)malloc(n1); len1 = mbstowcs(wp2, entry_text2, n1); if (strcmp(entry_text2,"ZWNJ")!=0 && strcmp(entry_text2,"ZWJ")!=0) { for (c1=0; c10) p2[x1]=0; sprintf(unichar2, "%04X", wp2[c1]); printf(", U%04X",strtol(unichar2, 0, 16)); } } entry_text3=extsrch(key_map[i][1]); n1 = strlen(entry_text3) * sizeof(wchar_t); wp3 = (wchar_t *)malloc(n1); len1 = mbstowcs(wp3, entry_text3, n1); if (strcmp(entry_text3,"ZWNJ")!=0 && strcmp(entry_text3,"ZWJ")!=0) { for (c1=0; c10) p3[x1]=0; sprintf(unichar3, "%04X", wp3[c1]); printf(", U%04X",strtol(unichar3, 0, 16)); } } entry_text4=extsrch(key_map[i][2]); n1 = strlen(entry_text4) * sizeof(wchar_t); wp4 = (wchar_t *)malloc(n1); len1 = mbstowcs(wp4, entry_text4, n1); if (strcmp(entry_text4,"ZWNJ")!=0 && strcmp(entry_text4,"ZWJ")!=0) { for (c1=0; c10) p4[x1]=0; sprintf(unichar4, "%04X", wp4[c1]); printf(", U%04X",strtol(unichar4, 0, 16)); } } printf("] };\n"); } } void set_default_map_name(char *lcode) { gint i=0; char filetopen[256]; FILE *mfp; char mline[80],*mimname,*mname,*token,*scrtoken; char *mlinecpy; strcpy(filetopen,"/usr/share/m17n/"); if (strstr(lcode,"-")!= NULL) { scrtoken=strtok(lcode,"-"); strcat(filetopen,scrtoken); strcat(filetopen,"-inscript2-"); scrtoken=strtok(NULL,"-"); strcat(filetopen,scrtoken); strcat(filetopen,".mim"); } else { scrtoken= NULL; strcat(filetopen,lcode); strcat(filetopen,"-inscript2.mim"); } mfp = fopen(filetopen, "r"); if ( mfp == NULL) { g_debug("Please check if you have keymap file %s is installed",filetopen); g_debug("See if the language keymap also uses script code"); g_debug("Eg. Punjabi keymap using Gurumukhi script, keymap name will be pa-guru"); exit(0); } if ( mfp != NULL ) { if (fgets(mline,80,mfp) != NULL) { mlinecpy=(char *)malloc(80*sizeof(char)); langname=(char *)malloc(20*sizeof(char)); scriptname= (char *)malloc(5*sizeof(char)); mapname=(char *)malloc(30*sizeof(char)); memset(mlinecpy,'\0',80); memset(langname,'\0',20); memset(scriptname,'\0',5); memset(mapname,'\0',30); strcpy(mlinecpy,mline); token = strtok(mline, "-; "); if (strlen(token)==2 && scrtoken ==NULL) { int ccnt=23; while (mlinecpy[ccnt++]!=' '); strncpy(langname,mlinecpy+23,ccnt-24); langname[ccnt-24]='\0'; } if (strlen(token)==2 && scrtoken !=NULL) { int ccnt=28; while (mlinecpy[ccnt++]!=' '); strncpy(langname,mlinecpy+28,ccnt-29); langname[ccnt-29]='\0'; } if (strlen(token)==3 && scrtoken ==NULL) { int ccnt=24; while (mlinecpy[ccnt++]!=' '); strncpy(langname,mlinecpy+24,ccnt-25); langname[ccnt-25]='\0'; } if (strlen(token)==3 && scrtoken !=NULL) { int ccnt=29; while (mlinecpy[ccnt++]!=' '); strncpy(langname,mlinecpy+29,ccnt-30); langname[ccnt-30]='\0'; } strcpy(mapname,langname); if (scrtoken !=NULL) { strncpy(scriptname,scrtoken,4); strcat(mapname,"-"); strcat(mapname,scriptname); } } strcat(mapname,"-inscript2"); for ( ii=0; iid_name); if ((mimlen>=6) && (strstr(namelist[cnt]->d_name,".mim")!=NULL) && (namelist[cnt]->d_name[mimlen-1]=='m') && (strstr(namelist[cnt]->d_name,"inscript")!=NULL)) { char mline[80],*token,*scrtoken,fpath[256],mname[80]; FILE *mfp; sprintf(fpath,"%s%s",std_dir_path,namelist[cnt]->d_name); strcpy(mname,namelist[cnt]->d_name); mfp = fopen(fpath, "r"); if (fgets(mline,80,mfp) != NULL) { mlinecpy=(char *)malloc(80*sizeof(char)); langname=(char *)malloc(20*sizeof(char)); scriptname= (char *)malloc(5*sizeof(char)); mapname=(char *)malloc(30*sizeof(char)); memset(mlinecpy,'\0',80); memset(langname,'\0',20); memset(scriptname,'\0',5); memset(mapname,'\0',30); strcpy(mlinecpy,mline); token = strtok(mline, "-; "); strcpy(locale_name,token); scrtoken = strtok (mname,"-"); scrtoken = strtok (NULL, "-"); scrtoken = strtok (NULL, "-"); if (strlen(token)==2 && scrtoken ==NULL) { int ccnt=23; while (mlinecpy[ccnt++]!=' '); if (strstr(namelist[cnt]->d_name,"inscript2")!=NULL) { strncpy(langname,mlinecpy+23,ccnt-24); strcat(langname,"-inscript2"); langname[ccnt-14]='\0'; } else { strncpy(langname,mlinecpy+22,ccnt-23); strcat(langname,"-inscript"); langname[ccnt-14]='\0'; } } if (strlen(token)==2 && scrtoken !=NULL) { int ccnt=28; while (mlinecpy[ccnt++]!=' '); strncpy(langname,mlinecpy+28,ccnt-29); langname[ccnt-29]='\0'; } if (strlen(token)==3 && scrtoken ==NULL) { int ccnt=24; while (mlinecpy[ccnt++]!=' '); if (strstr(namelist[cnt]->d_name,"inscript2")!=NULL) { strncpy(langname,mlinecpy+24,ccnt-25); strcat(langname,"-inscript2"); langname[ccnt-15]='\0'; } else { strncpy(langname,mlinecpy+23,ccnt-24); strcat(langname,"-inscript"); langname[ccnt-15]='\0'; } } if (strlen(token)==3 && scrtoken !=NULL) { int ccnt=29; while (mlinecpy[ccnt++]!=' '); strncpy(langname,mlinecpy+29,ccnt-30); langname[ccnt-30]='\0'; } strcpy(mapname,langname); if (scrtoken !=NULL) { strncpy(scriptname,scrtoken,4); strcat(mapname,"-"); strcat(mapname,scriptname); if (strstr(namelist[cnt]->d_name,"inscript2")!=NULL) { strcat(mapname,"-inscript2"); } } /* Add only if we found inscript2 map*/ if (strstr(namelist[cnt]->d_name,"inscript2")!=NULL) { strcpy(ll[llcnt].locale_code,locale_name); strcpy(ll[llcnt].script_code,scriptname); llcnt++; } maplist[mimcnt]= (char *) malloc(strlen(mapname)+1); strcpy(maplist[mimcnt],mapname); gtk_combo_box_text_append_text ((GtkComboBoxText *)combo_mim, mapname); strcpy(lout[addmap].l_name,mapname); mimcnt++; addmap++; } } free(namelist[cnt++]); } free(namelist); } cnt=0; home_dir=getenv("HOME"); strcpy(custom_dir_path,home_dir); strcat(custom_dir_path,"/.m17n.d/"); n = scandir(custom_dir_path, &namelist, 0, alphasort); if (n < 0) printf("No custom keymaps present\n"); else { while (cntd_name); /* Make sure we read only files with .mim extension and have valid filename. e.g. hi-inscript2.mim */ if ((mimlen>=17) && (strstr(namelist[cnt]->d_name,".mim")!=NULL)) if ((strstr(namelist[cnt]->d_name,"inscript")!=NULL) || (strstr(namelist[cnt]->d_name,"inscript2")!=NULL)) { strncpy(mimfile,namelist[cnt]->d_name,mimlen-4); mimfile[mimlen-4]='\0'; maplist[mimcnt]= (char *) malloc(strlen(mimfile)+1); strcpy(maplist[mimcnt],mimfile); gtk_combo_box_text_append_text ((GtkComboBoxText *)combo_mim, mimfile); mimcnt++; } free(namelist[cnt++]); } free(namelist); } } void clear_mimfilelist() { for ( ii=0; ii0) p[x]=0; sprintf(unichar, "%04X", wp[c]); key_event_send_char(strtol(unichar, 0, 16)); } check_shift_btn(); if (gtk_toggle_button_get_active((GtkToggleButton *)altgr_btn)) return extsrch(key); else return srch(key); } static void on_bt_back_quote_clicked( GtkWidget *widget, gpointer data ) { if (gtk_toggle_button_get_active((GtkToggleButton *)l_shift_btn) || gtk_toggle_button_get_active((GtkToggleButton *)r_shift_btn)) display_key_value("~"); else display_key_value("`"); } static void on_bt_1_clicked( GtkWidget *widget, gpointer data ) { if (gtk_toggle_button_get_active((GtkToggleButton *)l_shift_btn) || gtk_toggle_button_get_active((GtkToggleButton *)r_shift_btn)) display_key_value("!"); else display_key_value("1"); } static void on_bt_2_clicked( GtkWidget *widget, gpointer data ) { if (gtk_toggle_button_get_active((GtkToggleButton *)l_shift_btn) || gtk_toggle_button_get_active((GtkToggleButton *)r_shift_btn)) display_key_value("@"); else display_key_value("2"); } static void on_bt_3_clicked( GtkWidget *widget, gpointer data ) { if (gtk_toggle_button_get_active((GtkToggleButton *)l_shift_btn) || gtk_toggle_button_get_active((GtkToggleButton *)r_shift_btn)) display_key_value("#"); else display_key_value("3"); } static void on_bt_4_clicked( GtkWidget *widget, gpointer data ) { if (gtk_toggle_button_get_active((GtkToggleButton *)l_shift_btn) || gtk_toggle_button_get_active((GtkToggleButton *)r_shift_btn)) display_key_value("$"); else display_key_value("4"); } static void on_bt_5_clicked( GtkWidget *widget, gpointer data ) { if (gtk_toggle_button_get_active((GtkToggleButton *)l_shift_btn) || gtk_toggle_button_get_active((GtkToggleButton *)r_shift_btn)) display_key_value("%"); else display_key_value("5"); } static void on_bt_6_clicked( GtkWidget *widget, gpointer data ) { if (gtk_toggle_button_get_active((GtkToggleButton *)l_shift_btn) || gtk_toggle_button_get_active((GtkToggleButton *)r_shift_btn)) display_key_value("^"); else display_key_value("6"); } static void on_bt_7_clicked( GtkWidget *widget, gpointer data ) { if (gtk_toggle_button_get_active((GtkToggleButton *)l_shift_btn) || gtk_toggle_button_get_active((GtkToggleButton *)r_shift_btn)) display_key_value("&"); else display_key_value("7"); } static void on_bt_8_clicked( GtkWidget *widget, gpointer data ) { if (gtk_toggle_button_get_active((GtkToggleButton *)l_shift_btn) || gtk_toggle_button_get_active((GtkToggleButton *)r_shift_btn)) display_key_value("*"); else display_key_value("8"); } static void on_bt_9_clicked( GtkWidget *widget, gpointer data ) { if (gtk_toggle_button_get_active((GtkToggleButton *)l_shift_btn) || gtk_toggle_button_get_active((GtkToggleButton *)r_shift_btn)) display_key_value("("); else display_key_value("9"); } static void on_bt_0_clicked( GtkWidget *widget, gpointer data ) { if (gtk_toggle_button_get_active((GtkToggleButton *)l_shift_btn) || gtk_toggle_button_get_active((GtkToggleButton *)r_shift_btn)) display_key_value(")"); else display_key_value("0"); } static void on_bt_dash_clicked( GtkWidget *widget, gpointer data ) { if (gtk_toggle_button_get_active((GtkToggleButton *)l_shift_btn) || gtk_toggle_button_get_active((GtkToggleButton *)r_shift_btn)) display_key_value("_"); else display_key_value("-"); } static void on_bt_equal_clicked( GtkWidget *widget, gpointer data ) { if (gtk_toggle_button_get_active((GtkToggleButton *)l_shift_btn) || gtk_toggle_button_get_active((GtkToggleButton *)r_shift_btn)) display_key_value("+"); else display_key_value("="); } static void on_bt_q_clicked( GtkWidget *widget, gpointer data ) { if (gtk_toggle_button_get_active((GtkToggleButton *)caps_btn) || gtk_toggle_button_get_active((GtkToggleButton *)l_shift_btn) || gtk_toggle_button_get_active((GtkToggleButton *)r_shift_btn)) display_key_value("Q"); else display_key_value("q"); } static void on_bt_w_clicked( GtkWidget *widget, gpointer data ) { if (gtk_toggle_button_get_active((GtkToggleButton *)caps_btn) || gtk_toggle_button_get_active((GtkToggleButton *)l_shift_btn) || gtk_toggle_button_get_active((GtkToggleButton *)r_shift_btn)) display_key_value("W"); else display_key_value("w"); } static void on_bt_e_clicked( GtkWidget *widget, gpointer data ) { if (gtk_toggle_button_get_active((GtkToggleButton *)caps_btn) || gtk_toggle_button_get_active((GtkToggleButton *)l_shift_btn) || gtk_toggle_button_get_active((GtkToggleButton *)r_shift_btn)) display_key_value("E"); else display_key_value("e"); } static void on_bt_r_clicked( GtkWidget *widget, gpointer data ) { if (gtk_toggle_button_get_active((GtkToggleButton *)caps_btn) || gtk_toggle_button_get_active((GtkToggleButton *)l_shift_btn) || gtk_toggle_button_get_active((GtkToggleButton *)r_shift_btn)) display_key_value("R"); else display_key_value("r"); } static void on_bt_t_clicked( GtkWidget *widget, gpointer data ) { if (gtk_toggle_button_get_active((GtkToggleButton *)caps_btn) || gtk_toggle_button_get_active((GtkToggleButton *)l_shift_btn) || gtk_toggle_button_get_active((GtkToggleButton *)r_shift_btn)) display_key_value("T"); else display_key_value("t"); } static void on_bt_y_clicked( GtkWidget *widget, gpointer data ) { if (gtk_toggle_button_get_active((GtkToggleButton *)caps_btn) || gtk_toggle_button_get_active((GtkToggleButton *)l_shift_btn) || gtk_toggle_button_get_active((GtkToggleButton *)r_shift_btn)) display_key_value("Y"); else display_key_value("y"); } static void on_bt_u_clicked( GtkWidget *widget, gpointer data ) { if (gtk_toggle_button_get_active((GtkToggleButton *)caps_btn) || gtk_toggle_button_get_active((GtkToggleButton *)l_shift_btn) || gtk_toggle_button_get_active((GtkToggleButton *)r_shift_btn)) display_key_value("U"); else display_key_value("u"); } static void on_bt_i_clicked( GtkWidget *widget, gpointer data ) { if (gtk_toggle_button_get_active((GtkToggleButton *)caps_btn) || gtk_toggle_button_get_active((GtkToggleButton *)l_shift_btn) || gtk_toggle_button_get_active((GtkToggleButton *)r_shift_btn)) display_key_value("I"); else display_key_value("i"); } static void on_bt_o_clicked( GtkWidget *widget, gpointer data ) { if (gtk_toggle_button_get_active((GtkToggleButton *)caps_btn) || gtk_toggle_button_get_active((GtkToggleButton *)l_shift_btn) || gtk_toggle_button_get_active((GtkToggleButton *)r_shift_btn)) display_key_value("O"); else display_key_value("o"); } static void on_bt_p_clicked( GtkWidget *widget, gpointer data ) { if (gtk_toggle_button_get_active((GtkToggleButton *)caps_btn) || gtk_toggle_button_get_active((GtkToggleButton *)l_shift_btn) || gtk_toggle_button_get_active((GtkToggleButton *)r_shift_btn)) display_key_value("P"); else display_key_value("p"); } static void on_bt_sq_bra_left_clicked( GtkWidget *widget, gpointer data ) { if (gtk_toggle_button_get_active((GtkToggleButton *)caps_btn) || gtk_toggle_button_get_active((GtkToggleButton *)l_shift_btn) || gtk_toggle_button_get_active((GtkToggleButton *)r_shift_btn)) display_key_value("{"); else display_key_value("["); } static void on_bt_sq_bra_right_clicked( GtkWidget *widget, gpointer data ) { if (gtk_toggle_button_get_active((GtkToggleButton *)caps_btn) || gtk_toggle_button_get_active((GtkToggleButton *)l_shift_btn) || gtk_toggle_button_get_active((GtkToggleButton *)r_shift_btn)) display_key_value("}"); else display_key_value("]"); } static void on_bt_win_slash_clicked( GtkWidget *widget, gpointer data ) { if (gtk_toggle_button_get_active((GtkToggleButton *)caps_btn) || gtk_toggle_button_get_active((GtkToggleButton *)l_shift_btn) || gtk_toggle_button_get_active((GtkToggleButton *)r_shift_btn)) display_key_value("|"); else display_key_value("\\"); } static void on_bt_a_clicked( GtkWidget *widget, gpointer data ) { if (gtk_toggle_button_get_active((GtkToggleButton *)caps_btn) || gtk_toggle_button_get_active((GtkToggleButton *)l_shift_btn) || gtk_toggle_button_get_active((GtkToggleButton *)r_shift_btn)) display_key_value("A"); else display_key_value("a"); } static void on_bt_s_clicked( GtkWidget *widget, gpointer data ) { if (gtk_toggle_button_get_active((GtkToggleButton *)caps_btn) || gtk_toggle_button_get_active((GtkToggleButton *)l_shift_btn) || gtk_toggle_button_get_active((GtkToggleButton *)r_shift_btn)) display_key_value("S"); else display_key_value("s"); } static void on_bt_d_clicked( GtkWidget *widget, gpointer data ) { if (gtk_toggle_button_get_active((GtkToggleButton *)caps_btn) || gtk_toggle_button_get_active((GtkToggleButton *)l_shift_btn) || gtk_toggle_button_get_active((GtkToggleButton *)r_shift_btn)) display_key_value("D"); else display_key_value("d"); } static void on_bt_f_clicked( GtkWidget *widget, gpointer data ) { if (gtk_toggle_button_get_active((GtkToggleButton *)caps_btn) || gtk_toggle_button_get_active((GtkToggleButton *)l_shift_btn) || gtk_toggle_button_get_active((GtkToggleButton *)r_shift_btn)) display_key_value("F"); else display_key_value("f"); } static void on_bt_g_clicked( GtkWidget *widget, gpointer data ) { if (gtk_toggle_button_get_active((GtkToggleButton *)caps_btn) || gtk_toggle_button_get_active((GtkToggleButton *)l_shift_btn) || gtk_toggle_button_get_active((GtkToggleButton *)r_shift_btn)) display_key_value("G"); else display_key_value("g"); } static void on_bt_h_clicked( GtkWidget *widget, gpointer data ) { if (gtk_toggle_button_get_active((GtkToggleButton *)caps_btn) || gtk_toggle_button_get_active((GtkToggleButton *)l_shift_btn) || gtk_toggle_button_get_active((GtkToggleButton *)r_shift_btn)) display_key_value("H"); else display_key_value("h"); } static void on_bt_j_clicked( GtkWidget *widget, gpointer data ) { if (gtk_toggle_button_get_active((GtkToggleButton *)caps_btn) || gtk_toggle_button_get_active((GtkToggleButton *)l_shift_btn) || gtk_toggle_button_get_active((GtkToggleButton *)r_shift_btn)) display_key_value("J"); else display_key_value("j"); } static void on_bt_k_clicked( GtkWidget *widget, gpointer data ) { if (gtk_toggle_button_get_active((GtkToggleButton *)caps_btn) || gtk_toggle_button_get_active((GtkToggleButton *)l_shift_btn) || gtk_toggle_button_get_active((GtkToggleButton *)r_shift_btn)) display_key_value("K"); else display_key_value("k"); } static void on_bt_l_clicked( GtkWidget *widget, gpointer data ) { if (gtk_toggle_button_get_active((GtkToggleButton *)caps_btn) || gtk_toggle_button_get_active((GtkToggleButton *)l_shift_btn) || gtk_toggle_button_get_active((GtkToggleButton *)r_shift_btn)) display_key_value("L"); else display_key_value("l"); } static void on_bt_semi_colon_clicked( GtkWidget *widget, gpointer data ) { if (gtk_toggle_button_get_active((GtkToggleButton *)caps_btn) || gtk_toggle_button_get_active((GtkToggleButton *)l_shift_btn) || gtk_toggle_button_get_active((GtkToggleButton *)r_shift_btn)) display_key_value(":"); else display_key_value(";"); } static void on_bt_quote_clicked( GtkWidget *widget, gpointer data ) { if (gtk_toggle_button_get_active((GtkToggleButton *)caps_btn) || gtk_toggle_button_get_active((GtkToggleButton *)l_shift_btn) || gtk_toggle_button_get_active((GtkToggleButton *)r_shift_btn)) display_key_value("\""); else display_key_value("'"); } static void on_bt_z_clicked( GtkWidget *widget, gpointer data ) { if (gtk_toggle_button_get_active((GtkToggleButton *)caps_btn) || gtk_toggle_button_get_active((GtkToggleButton *)l_shift_btn) || gtk_toggle_button_get_active((GtkToggleButton *)r_shift_btn)) display_key_value("Z"); else display_key_value("z"); } static void on_bt_x_clicked( GtkWidget *widget, gpointer data ) { if (gtk_toggle_button_get_active((GtkToggleButton *)caps_btn) || gtk_toggle_button_get_active((GtkToggleButton *)l_shift_btn) || gtk_toggle_button_get_active((GtkToggleButton *)r_shift_btn)) display_key_value("X"); else display_key_value("x"); } static void on_bt_c_clicked( GtkWidget *widget, gpointer data ) { if (gtk_toggle_button_get_active((GtkToggleButton *)caps_btn) || gtk_toggle_button_get_active((GtkToggleButton *)l_shift_btn) || gtk_toggle_button_get_active((GtkToggleButton *)r_shift_btn)) display_key_value("C"); else display_key_value("c"); } static void on_bt_v_clicked( GtkWidget *widget, gpointer data ) { if (gtk_toggle_button_get_active((GtkToggleButton *)caps_btn) || gtk_toggle_button_get_active((GtkToggleButton *)l_shift_btn) || gtk_toggle_button_get_active((GtkToggleButton *)r_shift_btn)) display_key_value("V"); else display_key_value("v"); } static void on_bt_b_clicked( GtkWidget *widget, gpointer data ) { if (gtk_toggle_button_get_active((GtkToggleButton *)caps_btn) || gtk_toggle_button_get_active((GtkToggleButton *)l_shift_btn) || gtk_toggle_button_get_active((GtkToggleButton *)r_shift_btn)) display_key_value("B"); else display_key_value("b"); } static void on_bt_n_clicked( GtkWidget *widget, gpointer data ) { if (gtk_toggle_button_get_active((GtkToggleButton *)caps_btn) || gtk_toggle_button_get_active((GtkToggleButton *)l_shift_btn) || gtk_toggle_button_get_active((GtkToggleButton *)r_shift_btn)) display_key_value("N"); else display_key_value("n"); } static void on_bt_m_clicked( GtkWidget *widget, gpointer data ) { if (gtk_toggle_button_get_active((GtkToggleButton *)caps_btn) || gtk_toggle_button_get_active((GtkToggleButton *)l_shift_btn) || gtk_toggle_button_get_active((GtkToggleButton *)r_shift_btn)) display_key_value("M"); else display_key_value("m"); } static void on_bt_coma_clicked( GtkWidget *widget, gpointer data ) { if (gtk_toggle_button_get_active((GtkToggleButton *)caps_btn) || gtk_toggle_button_get_active((GtkToggleButton *)l_shift_btn) || gtk_toggle_button_get_active((GtkToggleButton *)r_shift_btn)) display_key_value("<"); else display_key_value(","); } static void on_bt_dot_clicked( GtkWidget *widget, gpointer data ) { if (gtk_toggle_button_get_active((GtkToggleButton *)caps_btn) || gtk_toggle_button_get_active((GtkToggleButton *)l_shift_btn) || gtk_toggle_button_get_active((GtkToggleButton *)r_shift_btn)) display_key_value(">"); else display_key_value("."); } static void on_bt_linux_slash_clicked( GtkWidget *widget, gpointer data ) { if (gtk_toggle_button_get_active((GtkToggleButton *)caps_btn) || gtk_toggle_button_get_active((GtkToggleButton *)l_shift_btn) || gtk_toggle_button_get_active((GtkToggleButton *)r_shift_btn)) display_key_value("?"); else display_key_value("/"); } static void on_enter_btn_clicked( GtkWidget *widget, gpointer data ) { key_event_send_enter(); } static void on_backspace_btn_clicked( GtkWidget *widget, gpointer data ) { key_event_send_backspace(); } static void on_tab_btn_clicked( GtkWidget *widget, gpointer data ) { key_event_send_tab(); } static void on_esc_btn_clicked( GtkWidget *widget, gpointer data ) { key_event_send_escape(); } static void on_bt_f1_clicked( GtkWidget *widget, gpointer data ) { key_event_send_f1(); } static void on_bt_f2_clicked( GtkWidget *widget, gpointer data ) { key_event_send_f2(); } static void on_bt_f3_clicked( GtkWidget *widget, gpointer data ) { key_event_send_f3(); } static void on_bt_f4_clicked( GtkWidget *widget, gpointer data ) { key_event_send_f4(); } static void on_bt_f5_clicked( GtkWidget *widget, gpointer data ) { key_event_send_f5(); } static void on_bt_f6_clicked( GtkWidget *widget, gpointer data ) { key_event_send_f6(); } static void on_bt_f7_clicked( GtkWidget *widget, gpointer data ) { key_event_send_f7(); } static void on_bt_f8_clicked( GtkWidget *widget, gpointer data ) { key_event_send_f8(); } static void on_bt_f9_clicked( GtkWidget *widget, gpointer data ) { key_event_send_f9(); } static void on_bt_f10_clicked( GtkWidget *widget, gpointer data ) { key_event_send_f10(); } static void on_bt_f11_clicked( GtkWidget *widget, gpointer data ) { key_event_send_f11(); } static void on_bt_f12_clicked( GtkWidget *widget, gpointer data ) { key_event_send_f12(); } static void on_altgr_btn_clicked( GtkWidget *widget, gpointer data ) { if (gtk_toggle_button_get_active((GtkToggleButton *)altgr_btn)) { gtk_toggle_button_set_active((GtkToggleButton *)l_shift_btn,FALSE); gtk_toggle_button_set_active((GtkToggleButton *)r_shift_btn,FALSE); gtk_toggle_button_set_active((GtkToggleButton *)caps_btn,FALSE); load_ext_mappings(); } else { gtk_toggle_button_set_active((GtkToggleButton *)l_shift_btn,FALSE); gtk_toggle_button_set_active((GtkToggleButton *)r_shift_btn,FALSE); gtk_toggle_button_set_active((GtkToggleButton *)caps_btn,FALSE); load_mappings(); } } static void on_keyswitch_btn_clicked( GtkWidget *widget, gpointer data ) { gchar *current_mim,*mimname; gint i=0; gchar tt_msg[255]; current_mim= gtk_combo_box_text_get_active_text((GtkComboBoxText *)combo_mim); strcpy(toggle_keymap,"to "); strcat(toggle_keymap,current_mim); if (strcmp(current_mim,"English")!=0 && strcmp(gtk_button_get_label((GtkButton *)keyswitch_btn),"to English")==0) { clear_mappings(); gtk_combo_box_set_active ((GtkComboBox *)combo_mim,0); gtk_toggle_button_set_active((GtkToggleButton *)altgr_btn,0); if (gtk_toggle_button_get_active((GtkToggleButton *)l_shift_btn) || gtk_toggle_button_get_active((GtkToggleButton *)r_shift_btn)) english_shift_mappings(1); else { if (gtk_toggle_button_get_active((GtkToggleButton *)caps_btn)) english_shift_mappings(0); } gtk_button_set_label((GtkButton *)keyswitch_btn,toggle_keymap); gtk_widget_set_sensitive(combo_mim,FALSE ); memset(tt_msg,'\0',255); sprintf(tt_msg,"Click on Toggle button labeled %s to activate this",toggle_keymap); gtk_widget_set_tooltip_text (combo_mim, _(tt_msg)); memset(tt_msg,'\0',255); sprintf(tt_msg,"Switch %s keymap",toggle_keymap); gtk_widget_set_tooltip_text (keyswitch_btn, _(tt_msg)); } if (strcmp(current_mim,"English")==0 && strcmp(gtk_button_get_label((GtkButton *)keyswitch_btn),"to English")!=0) { clear_mappings(); strcpy(map_to_read,(char *)gtk_button_get_label((GtkButton *)keyswitch_btn)); get_mappings(map_to_read+3); gtk_widget_set_sensitive(combo_mim, TRUE); gtk_widget_set_tooltip_text (combo_mim, _("Select the language in which you want to write")); gtk_widget_set_tooltip_text (keyswitch_btn, _("Change to English Keyboard")); for ( ii=0; ii=1 && strlen(gtxtvalueb)>=1 ) { for (ii=0; ii= 0)) { GdkDragAction action; action = gdk_drag_context_get_selected_action(context); if (action == GDK_ACTION_ASK) { /* Ask the user to move or copy, then set the context action. */ } if (action == GDK_ACTION_MOVE) delete_selection_data = TRUE; switch (target_type) { case TARGET_STRING: memset(sbtname,'\0',2); _sdata = (gchar*)gtk_selection_data_get_data (selection_data); gtk_button_set_label((GtkButton *)widget,_sdata); swidget = (GtkButton *)gtk_drag_get_source_widget(context); gtk_button_set_label(swidget,ktxt); for (ii=0; ii= 0)) { GdkDragAction action; action = gdk_drag_context_get_selected_action(context); if (action == GDK_ACTION_ASK) { /* Ask the user to move or copy, then set the context action. */ } if (action == GDK_ACTION_MOVE) delete_selection_data = TRUE; switch (target_type) { case TARGET_STRING: memset(sbtname,'\0',2); _sdata = (gchar*)gtk_selection_data_get_data (selection_data); gtk_button_set_label((GtkButton *)widget,_sdata); swidget = (GtkButton *)gtk_drag_get_source_widget(context); gtk_button_set_label(swidget,ktxt); if (gtk_toggle_button_get_active((GtkToggleButton *)altgr_btn)) { for (ii=0; ii= 0)) { GdkDragAction action; action = gdk_drag_context_get_selected_action(context); if (action == GDK_ACTION_ASK) { /* Ask the user to move or copy, then set the context action. */ } if (action == GDK_ACTION_MOVE) delete_selection_data = TRUE; switch (target_type) { case TARGET_STRING: memset(sbtname,'\0',2); _sdata = (gchar*)gtk_selection_data_get_data (selection_data); gtk_button_set_label((GtkButton *)widget,_sdata); swidget = (GtkButton *)gtk_drag_get_source_widget(context); gtk_button_set_label(swidget,ktxt); for (ii=0; ii= 0)) { GdkDragAction action; action = gdk_drag_context_get_selected_action(context); if (action == GDK_ACTION_ASK) { /* Ask the user to move or copy, then set the context action. */ } if (action == GDK_ACTION_MOVE) delete_selection_data = TRUE; switch (target_type) { case TARGET_STRING: memset(sbtname,'\0',2); _sdata = (gchar*)gtk_selection_data_get_data (selection_data); gtk_button_set_label((GtkButton *)widget,_sdata); swidget = (GtkButton *)gtk_drag_get_source_widget(context); gtk_button_set_label(swidget,ktxt); for (ii=0; ii= 0)) { GdkDragAction action; action = gdk_drag_context_get_selected_action(context); if (action == GDK_ACTION_ASK) { /* Ask the user to move or copy, then set the context action. */ } if (action == GDK_ACTION_MOVE) delete_selection_data = TRUE; switch (target_type) { case TARGET_STRING: memset(sbtname,'\0',2); _sdata = (gchar*)gtk_selection_data_get_data (selection_data); gtk_button_set_label((GtkButton *)widget,_sdata); swidget = (GtkButton *)gtk_drag_get_source_widget(context); gtk_button_set_label(swidget,ktxt); for (ii=0; ii= 0)) { GdkDragAction action; action = gdk_drag_context_get_selected_action(context); if (action == GDK_ACTION_ASK) { /* Ask the user to move or copy, then set the context action. */ } if (action == GDK_ACTION_MOVE) delete_selection_data = TRUE; switch (target_type) { case TARGET_STRING: memset(sbtname,'\0',2); _sdata = (gchar*)gtk_selection_data_get_data (selection_data); gtk_button_set_label((GtkButton *)widget,_sdata); swidget = (GtkButton *)gtk_drag_get_source_widget(context); gtk_button_set_label(swidget,ktxt); for (ii=0; ii= 0)) { GdkDragAction action; action = gdk_drag_context_get_selected_action(context); if (action == GDK_ACTION_ASK) { /* Ask the user to move or copy, then set the context action. */ } if (action == GDK_ACTION_MOVE) delete_selection_data = TRUE; switch (target_type) { case TARGET_STRING: memset(sbtname,'\0',2); _sdata = (gchar*)gtk_selection_data_get_data (selection_data); gtk_button_set_label((GtkButton *)widget,_sdata); swidget = (GtkButton *)gtk_drag_get_source_widget(context); gtk_button_set_label(swidget,ktxt); for (ii=0; ii= 0)) { GdkDragAction action; action = gdk_drag_context_get_selected_action(context); if (action == GDK_ACTION_ASK) { /* Ask the user to move or copy, then set the context action. */ } if (action == GDK_ACTION_MOVE) delete_selection_data = TRUE; switch (target_type) { case TARGET_STRING: memset(sbtname,'\0',2); _sdata = (gchar*)gtk_selection_data_get_data (selection_data); gtk_button_set_label((GtkButton *)widget,_sdata); swidget = (GtkButton *)gtk_drag_get_source_widget(context); gtk_button_set_label(swidget,ktxt); for (ii=0; ii= 0)) { GdkDragAction action; action = gdk_drag_context_get_selected_action(context); if (action == GDK_ACTION_ASK) { /* Ask the user to move or copy, then set the context action. */ } if (action == GDK_ACTION_MOVE) delete_selection_data = TRUE; switch (target_type) { case TARGET_STRING: memset(sbtname,'\0',2); _sdata = (gchar*)gtk_selection_data_get_data (selection_data); gtk_button_set_label((GtkButton *)widget,_sdata); swidget = (GtkButton *)gtk_drag_get_source_widget(context); gtk_button_set_label(swidget,ktxt); for (ii=0; ii= 0)) { GdkDragAction action; action = gdk_drag_context_get_selected_action(context); if (action == GDK_ACTION_ASK) { /* Ask the user to move or copy, then set the context action. */ } if (action == GDK_ACTION_MOVE) delete_selection_data = TRUE; switch (target_type) { case TARGET_STRING: memset(sbtname,'\0',2); _sdata = (gchar*)gtk_selection_data_get_data (selection_data); gtk_button_set_label((GtkButton *)widget,_sdata); swidget = (GtkButton *)gtk_drag_get_source_widget(context); gtk_button_set_label(swidget,ktxt); for (ii=0; ii= 0)) { GdkDragAction action; action = gdk_drag_context_get_selected_action(context); if (action == GDK_ACTION_ASK) { /* Ask the user to move or copy, then set the context action. */ } if (action == GDK_ACTION_MOVE) delete_selection_data = TRUE; switch (target_type) { case TARGET_STRING: memset(sbtname,'\0',2); _sdata = (gchar*)gtk_selection_data_get_data (selection_data); gtk_button_set_label((GtkButton *)widget,_sdata); swidget = (GtkButton *)gtk_drag_get_source_widget(context); gtk_button_set_label(swidget,ktxt); for (ii=0; ii= 0)) { GdkDragAction action; action = gdk_drag_context_get_selected_action(context); if (action == GDK_ACTION_ASK) { /* Ask the user to move or copy, then set the context action. */ } if (action == GDK_ACTION_MOVE) delete_selection_data = TRUE; switch (target_type) { case TARGET_STRING: memset(sbtname,'\0',2); _sdata = (gchar*)gtk_selection_data_get_data (selection_data); gtk_button_set_label((GtkButton *)widget,_sdata); swidget = (GtkButton *)gtk_drag_get_source_widget(context); gtk_button_set_label(swidget,ktxt); for (ii=0; ii= 0)) { GdkDragAction action; action = gdk_drag_context_get_selected_action(context); if (action == GDK_ACTION_ASK) { /* Ask the user to move or copy, then set the context action. */ } if (action == GDK_ACTION_MOVE) delete_selection_data = TRUE; switch (target_type) { case TARGET_STRING: memset(sbtname,'\0',2); _sdata = (gchar*)gtk_selection_data_get_data (selection_data); gtk_button_set_label((GtkButton *)widget,_sdata); swidget = (GtkButton *)gtk_drag_get_source_widget(context); gtk_button_set_label(swidget,ktxt); for (ii=0; ii= 0)) { GdkDragAction action; action = gdk_drag_context_get_selected_action(context); if (action == GDK_ACTION_ASK) { /* Ask the user to move or copy, then set the context action. */ } if (action == GDK_ACTION_MOVE) delete_selection_data = TRUE; switch (target_type) { case TARGET_STRING: memset(sbtname,'\0',2); _sdata = (gchar*)gtk_selection_data_get_data (selection_data); gtk_button_set_label((GtkButton *)widget,_sdata); swidget = (GtkButton *)gtk_drag_get_source_widget(context); gtk_button_set_label(swidget,ktxt); for (ii=0; ii= 0)) { GdkDragAction action; action = gdk_drag_context_get_selected_action(context); if (action == GDK_ACTION_ASK) { /* Ask the user to move or copy, then set the context action. */ } if (action == GDK_ACTION_MOVE) delete_selection_data = TRUE; switch (target_type) { case TARGET_STRING: memset(sbtname,'\0',2); _sdata = (gchar*)gtk_selection_data_get_data (selection_data); gtk_button_set_label((GtkButton *)widget,_sdata); swidget = (GtkButton *)gtk_drag_get_source_widget(context); gtk_button_set_label(swidget,ktxt); for (ii=0; ii= 0)) { GdkDragAction action; action = gdk_drag_context_get_selected_action(context); if (action == GDK_ACTION_ASK) { /* Ask the user to move or copy, then set the context action. */ } if (action == GDK_ACTION_MOVE) delete_selection_data = TRUE; switch (target_type) { case TARGET_STRING: memset(sbtname,'\0',2); _sdata = (gchar*)gtk_selection_data_get_data (selection_data); gtk_button_set_label((GtkButton *)widget,_sdata); swidget = (GtkButton *)gtk_drag_get_source_widget(context); gtk_button_set_label(swidget,ktxt); for (ii=0; ii= 0)) { GdkDragAction action; action = gdk_drag_context_get_selected_action(context); if (action == GDK_ACTION_ASK) { /* Ask the user to move or copy, then set the context action. */ } if (action == GDK_ACTION_MOVE) delete_selection_data = TRUE; switch (target_type) { case TARGET_STRING: memset(sbtname,'\0',2); _sdata = (gchar*)gtk_selection_data_get_data (selection_data); gtk_button_set_label((GtkButton *)widget,_sdata); swidget = (GtkButton *)gtk_drag_get_source_widget(context); gtk_button_set_label(swidget,ktxt); for (ii=0; ii= 0)) { GdkDragAction action; action = gdk_drag_context_get_selected_action(context); if (action == GDK_ACTION_ASK) { /* Ask the user to move or copy, then set the context action. */ } if (action == GDK_ACTION_MOVE) delete_selection_data = TRUE; switch (target_type) { case TARGET_STRING: memset(sbtname,'\0',2); _sdata = (gchar*)gtk_selection_data_get_data (selection_data); gtk_button_set_label((GtkButton *)widget,_sdata); swidget = (GtkButton *)gtk_drag_get_source_widget(context); gtk_button_set_label(swidget,ktxt); for (ii=0; ii= 0)) { GdkDragAction action; action = gdk_drag_context_get_selected_action(context); if (action == GDK_ACTION_ASK) { /* Ask the user to move or copy, then set the context action. */ } if (action == GDK_ACTION_MOVE) delete_selection_data = TRUE; switch (target_type) { case TARGET_STRING: memset(sbtname,'\0',2); _sdata = (gchar*)gtk_selection_data_get_data (selection_data); gtk_button_set_label((GtkButton *)widget,_sdata); swidget = (GtkButton *)gtk_drag_get_source_widget(context); gtk_button_set_label(swidget,ktxt); for (ii=0; ii= 0)) { GdkDragAction action; action = gdk_drag_context_get_selected_action(context); if (action == GDK_ACTION_ASK) { /* Ask the user to move or copy, then set the context action. */ } if (action == GDK_ACTION_MOVE) delete_selection_data = TRUE; switch (target_type) { case TARGET_STRING: memset(sbtname,'\0',2); _sdata = (gchar*)gtk_selection_data_get_data (selection_data); gtk_button_set_label((GtkButton *)widget,_sdata); swidget = (GtkButton *)gtk_drag_get_source_widget(context); gtk_button_set_label(swidget,ktxt); for (ii=0; ii= 0)) { GdkDragAction action; action = gdk_drag_context_get_selected_action(context); if (action == GDK_ACTION_ASK) { /* Ask the user to move or copy, then set the context action. */ } if (action == GDK_ACTION_MOVE) delete_selection_data = TRUE; switch (target_type) { case TARGET_STRING: memset(sbtname,'\0',2); _sdata = (gchar*)gtk_selection_data_get_data (selection_data); gtk_button_set_label((GtkButton *)widget,_sdata); swidget = (GtkButton *)gtk_drag_get_source_widget(context); gtk_button_set_label(swidget,ktxt); for (ii=0; ii= 0)) { GdkDragAction action; action = gdk_drag_context_get_selected_action(context); if (action == GDK_ACTION_ASK) { /* Ask the user to move or copy, then set the context action. */ } if (action == GDK_ACTION_MOVE) delete_selection_data = TRUE; switch (target_type) { case TARGET_STRING: memset(sbtname,'\0',2); _sdata = (gchar*)gtk_selection_data_get_data (selection_data); gtk_button_set_label((GtkButton *)widget,_sdata); swidget = (GtkButton *)gtk_drag_get_source_widget(context); gtk_button_set_label(swidget,ktxt); for (ii=0; ii= 0)) { GdkDragAction action; action = gdk_drag_context_get_selected_action(context); if (action == GDK_ACTION_ASK) { /* Ask the user to move or copy, then set the context action. */ } if (action == GDK_ACTION_MOVE) delete_selection_data = TRUE; switch (target_type) { case TARGET_STRING: memset(sbtname,'\0',2); _sdata = (gchar*)gtk_selection_data_get_data (selection_data); gtk_button_set_label((GtkButton *)widget,_sdata); swidget = (GtkButton *)gtk_drag_get_source_widget(context); gtk_button_set_label(swidget,ktxt); for (ii=0; ii= 0)) { GdkDragAction action; action = gdk_drag_context_get_selected_action(context); if (action == GDK_ACTION_ASK) { /* Ask the user to move or copy, then set the context action. */ } if (action == GDK_ACTION_MOVE) delete_selection_data = TRUE; switch (target_type) { case TARGET_STRING: memset(sbtname,'\0',2); _sdata = (gchar*)gtk_selection_data_get_data (selection_data); gtk_button_set_label((GtkButton *)widget,_sdata); swidget = (GtkButton *)gtk_drag_get_source_widget(context); gtk_button_set_label(swidget,ktxt); for (ii=0; ii= 0)) { GdkDragAction action; action = gdk_drag_context_get_selected_action(context); if (action == GDK_ACTION_ASK) { /* Ask the user to move or copy, then set the context action. */ } if (action == GDK_ACTION_MOVE) delete_selection_data = TRUE; switch (target_type) { case TARGET_STRING: memset(sbtname,'\0',2); _sdata = (gchar*)gtk_selection_data_get_data (selection_data); gtk_button_set_label((GtkButton *)widget,_sdata); swidget = (GtkButton *)gtk_drag_get_source_widget(context); gtk_button_set_label(swidget,ktxt); for (ii=0; ii= 0)) { GdkDragAction action; action = gdk_drag_context_get_selected_action(context); if (action == GDK_ACTION_ASK) { /* Ask the user to move or copy, then set the context action. */ } if (action == GDK_ACTION_MOVE) delete_selection_data = TRUE; switch (target_type) { case TARGET_STRING: memset(sbtname,'\0',2); _sdata = (gchar*)gtk_selection_data_get_data (selection_data); gtk_button_set_label((GtkButton *)widget,_sdata); swidget = (GtkButton *)gtk_drag_get_source_widget(context); gtk_button_set_label(swidget,ktxt); for (ii=0; ii= 0)) { GdkDragAction action; action = gdk_drag_context_get_selected_action(context); if (action == GDK_ACTION_ASK) { /* Ask the user to move or copy, then set the context action. */ } if (action == GDK_ACTION_MOVE) delete_selection_data = TRUE; switch (target_type) { case TARGET_STRING: memset(sbtname,'\0',2); _sdata = (gchar*)gtk_selection_data_get_data (selection_data); gtk_button_set_label((GtkButton *)widget,_sdata); swidget = (GtkButton *)gtk_drag_get_source_widget(context); gtk_button_set_label(swidget,ktxt); for (ii=0; ii= 0)) { GdkDragAction action; action = gdk_drag_context_get_selected_action(context); if (action == GDK_ACTION_ASK) { /* Ask the user to move or copy, then set the context action. */ } if (action == GDK_ACTION_MOVE) delete_selection_data = TRUE; switch (target_type) { case TARGET_STRING: memset(sbtname,'\0',2); _sdata = (gchar*)gtk_selection_data_get_data (selection_data); gtk_button_set_label((GtkButton *)widget,_sdata); swidget = (GtkButton *)gtk_drag_get_source_widget(context); gtk_button_set_label(swidget,ktxt); for (ii=0; ii= 0)) { GdkDragAction action; action = gdk_drag_context_get_selected_action(context); if (action == GDK_ACTION_ASK) { /* Ask the user to move or copy, then set the context action. */ } if (action == GDK_ACTION_MOVE) delete_selection_data = TRUE; switch (target_type) { case TARGET_STRING: memset(sbtname,'\0',2); _sdata = (gchar*)gtk_selection_data_get_data (selection_data); gtk_button_set_label((GtkButton *)widget,_sdata); swidget = (GtkButton *)gtk_drag_get_source_widget(context); gtk_button_set_label(swidget,ktxt); for (ii=0; ii= 0)) { GdkDragAction action; action = gdk_drag_context_get_selected_action(context); if (action == GDK_ACTION_ASK) { /* Ask the user to move or copy, then set the context action. */ } if (action == GDK_ACTION_MOVE) delete_selection_data = TRUE; switch (target_type) { case TARGET_STRING: memset(sbtname,'\0',2); _sdata = (gchar*)gtk_selection_data_get_data (selection_data); gtk_button_set_label((GtkButton *)widget,_sdata); swidget = (GtkButton *)gtk_drag_get_source_widget(context); gtk_button_set_label(swidget,ktxt); for (ii=0; ii= 0)) { GdkDragAction action; action = gdk_drag_context_get_selected_action(context); if (action == GDK_ACTION_ASK) { /* Ask the user to move or copy, then set the context action. */ } if (action == GDK_ACTION_MOVE) delete_selection_data = TRUE; switch (target_type) { case TARGET_STRING: memset(sbtname,'\0',2); _sdata = (gchar*)gtk_selection_data_get_data (selection_data); gtk_button_set_label((GtkButton *)widget,_sdata); swidget = (GtkButton *)gtk_drag_get_source_widget(context); gtk_button_set_label(swidget,ktxt); for (ii=0; ii= 0)) { GdkDragAction action; action = gdk_drag_context_get_selected_action(context); if (action == GDK_ACTION_ASK) { /* Ask the user to move or copy, then set the context action. */ } if (action == GDK_ACTION_MOVE) delete_selection_data = TRUE; switch (target_type) { case TARGET_STRING: memset(sbtname,'\0',2); _sdata = (gchar*)gtk_selection_data_get_data (selection_data); gtk_button_set_label((GtkButton *)widget,_sdata); swidget = (GtkButton *)gtk_drag_get_source_widget(context); gtk_button_set_label(swidget,ktxt); for (ii=0; ii= 0)) { GdkDragAction action; action = gdk_drag_context_get_selected_action(context); if (action == GDK_ACTION_ASK) { /* Ask the user to move or copy, then set the context action. */ } if (action == GDK_ACTION_MOVE) delete_selection_data = TRUE; switch (target_type) { case TARGET_STRING: memset(sbtname,'\0',2); _sdata = (gchar*)gtk_selection_data_get_data (selection_data); gtk_button_set_label((GtkButton *)widget,_sdata); swidget = (GtkButton *)gtk_drag_get_source_widget(context); gtk_button_set_label(swidget,ktxt); for (ii=0; ii= 0)) { GdkDragAction action; action = gdk_drag_context_get_selected_action(context); if (action == GDK_ACTION_ASK) { /* Ask the user to move or copy, then set the context action. */ } if (action == GDK_ACTION_MOVE) delete_selection_data = TRUE; switch (target_type) { case TARGET_STRING: memset(sbtname,'\0',2); _sdata = (gchar*)gtk_selection_data_get_data (selection_data); gtk_button_set_label((GtkButton *)widget,_sdata); swidget = (GtkButton *)gtk_drag_get_source_widget(context); gtk_button_set_label(swidget,ktxt); for (ii=0; ii= 0)) { GdkDragAction action; action = gdk_drag_context_get_selected_action(context); if (action == GDK_ACTION_ASK) { /* Ask the user to move or copy, then set the context action. */ } if (action == GDK_ACTION_MOVE) delete_selection_data = TRUE; switch (target_type) { case TARGET_STRING: memset(sbtname,'\0',2); _sdata = (gchar*)gtk_selection_data_get_data (selection_data); gtk_button_set_label((GtkButton *)widget,_sdata); swidget = (GtkButton *)gtk_drag_get_source_widget(context); gtk_button_set_label(swidget,ktxt); for (ii=0; ii= 0)) { GdkDragAction action; action = gdk_drag_context_get_selected_action(context); if (action == GDK_ACTION_ASK) { /* Ask the user to move or copy, then set the context action. */ } if (action == GDK_ACTION_MOVE) delete_selection_data = TRUE; switch (target_type) { case TARGET_STRING: memset(sbtname,'\0',2); _sdata = (gchar*)gtk_selection_data_get_data (selection_data); gtk_button_set_label((GtkButton *)widget,_sdata); swidget = (GtkButton *)gtk_drag_get_source_widget(context); gtk_button_set_label(swidget,ktxt); for (ii=0; ii= 0)) { GdkDragAction action; action = gdk_drag_context_get_selected_action(context); if (action == GDK_ACTION_ASK) { /* Ask the user to move or copy, then set the context action. */ } if (action == GDK_ACTION_MOVE) delete_selection_data = TRUE; switch (target_type) { case TARGET_STRING: memset(sbtname,'\0',2); _sdata = (gchar*)gtk_selection_data_get_data (selection_data); gtk_button_set_label((GtkButton *)widget,_sdata); swidget = (GtkButton *)gtk_drag_get_source_widget(context); gtk_button_set_label(swidget,ktxt); for (ii=0; ii= 0)) { GdkDragAction action; action = gdk_drag_context_get_selected_action(context); if (action == GDK_ACTION_ASK) { /* Ask the user to move or copy, then set the context action. */ } if (action == GDK_ACTION_MOVE) delete_selection_data = TRUE; switch (target_type) { case TARGET_STRING: memset(sbtname,'\0',2); _sdata = (gchar*)gtk_selection_data_get_data (selection_data); gtk_button_set_label((GtkButton *)widget,_sdata); swidget = (GtkButton *)gtk_drag_get_source_widget(context); gtk_button_set_label(swidget,ktxt); for (ii=0; ii= 0)) { GdkDragAction action; action = gdk_drag_context_get_selected_action(context); if (action == GDK_ACTION_ASK) { /* Ask the user to move or copy, then set the context action. */ } if (action == GDK_ACTION_MOVE) delete_selection_data = TRUE; switch (target_type) { case TARGET_STRING: memset(sbtname,'\0',2); _sdata = (gchar*)gtk_selection_data_get_data (selection_data); gtk_button_set_label((GtkButton *)widget,_sdata); swidget = (GtkButton *)gtk_drag_get_source_widget(context); gtk_button_set_label(swidget,ktxt); for (ii=0; ii= 0)) { GdkDragAction action; action = gdk_drag_context_get_selected_action(context); if (action == GDK_ACTION_ASK) { /* Ask the user to move or copy, then set the context action. */ } if (action == GDK_ACTION_MOVE) delete_selection_data = TRUE; switch (target_type) { case TARGET_STRING: memset(sbtname,'\0',2); _sdata = (gchar*)gtk_selection_data_get_data (selection_data); gtk_button_set_label((GtkButton *)widget,_sdata); swidget = (GtkButton *)gtk_drag_get_source_widget(context); gtk_button_set_label(swidget,ktxt); for (ii=0; ii= 0)) { GdkDragAction action; action = gdk_drag_context_get_selected_action(context); if (action == GDK_ACTION_ASK) { /* Ask the user to move or copy, then set the context action. */ } if (action == GDK_ACTION_MOVE) delete_selection_data = TRUE; switch (target_type) { case TARGET_STRING: memset(sbtname,'\0',2); _sdata = (gchar*)gtk_selection_data_get_data (selection_data); gtk_button_set_label((GtkButton *)widget,_sdata); swidget = (GtkButton *)gtk_drag_get_source_widget(context); gtk_button_set_label(swidget,ktxt); for (ii=0; ii= 0)) { GdkDragAction action; action = gdk_drag_context_get_selected_action(context); if (action == GDK_ACTION_ASK) { /* Ask the user to move or copy, then set the context action. */ } if (action == GDK_ACTION_MOVE) delete_selection_data = TRUE; switch (target_type) { case TARGET_STRING: memset(sbtname,'\0',2); _sdata = (gchar*)gtk_selection_data_get_data (selection_data); gtk_button_set_label((GtkButton *)widget,_sdata); swidget = (GtkButton *)gtk_drag_get_source_widget(context); gtk_button_set_label(swidget,ktxt); for (ii=0; ii= 0)) { GdkDragAction action; action = gdk_drag_context_get_selected_action(context); if (action == GDK_ACTION_ASK) { /* Ask the user to move or copy, then set the context action. */ } if (action == GDK_ACTION_MOVE) delete_selection_data = TRUE; switch (target_type) { case TARGET_STRING: memset(sbtname,'\0',2); _sdata = (gchar*)gtk_selection_data_get_data (selection_data); gtk_button_set_label((GtkButton *)widget,_sdata); swidget = (GtkButton *)gtk_drag_get_source_widget(context); gtk_button_set_label(swidget,ktxt); for (ii=0; ii= 0)) { GdkDragAction action; action = gdk_drag_context_get_selected_action(context); if (action == GDK_ACTION_ASK) { /* Ask the user to move or copy, then set the context action. */ } if (action == GDK_ACTION_MOVE) delete_selection_data = TRUE; switch (target_type) { case TARGET_STRING: memset(sbtname,'\0',2); _sdata = (gchar*)gtk_selection_data_get_data (selection_data); gtk_button_set_label((GtkButton *)widget,_sdata); swidget = (GtkButton *)gtk_drag_get_source_widget(context); gtk_button_set_label(swidget,ktxt); for (ii=0; ii= 0)) { GdkDragAction action; action = gdk_drag_context_get_selected_action(context); if (action == GDK_ACTION_ASK) { /* Ask the user to move or copy, then set the context action. */ } if (action == GDK_ACTION_MOVE) delete_selection_data = TRUE; switch (target_type) { case TARGET_STRING: memset(sbtname,'\0',2); _sdata = (gchar*)gtk_selection_data_get_data (selection_data); gtk_button_set_label((GtkButton *)widget,_sdata); swidget = (GtkButton *)gtk_drag_get_source_widget(context); gtk_button_set_label(swidget,ktxt); for (ii=0; ii= 0)) { GdkDragAction action; action = gdk_drag_context_get_selected_action(context); if (action == GDK_ACTION_ASK) { /* Ask the user to move or copy, then set the context action. */ } if (action == GDK_ACTION_MOVE) delete_selection_data = TRUE; switch (target_type) { case TARGET_STRING: memset(sbtname,'\0',2); _sdata = (gchar*)gtk_selection_data_get_data (selection_data); gtk_button_set_label((GtkButton *)widget,_sdata); swidget = (GtkButton *)gtk_drag_get_source_widget(context); gtk_button_set_label(swidget,ktxt); for (ii=0; ii")==0) { strcpy(map[ii].keyvalue,_sdata); } } else if (strcmp(map[ii].keyname,".")==0) { strcpy(map[ii].keyvalue,_sdata); } } for (ii=0; ii= 0)) { GdkDragAction action; action = gdk_drag_context_get_selected_action(context); if (action == GDK_ACTION_ASK) { /* Ask the user to move or copy, then set the context action. */ } if (action == GDK_ACTION_MOVE) delete_selection_data = TRUE; switch (target_type) { case TARGET_STRING: memset(sbtname,'\0',2); _sdata = (gchar*)gtk_selection_data_get_data (selection_data); gtk_button_set_label((GtkButton *)widget,_sdata); swidget = (GtkButton *)gtk_drag_get_source_widget(context); gtk_button_set_label(swidget,ktxt); for (ii=0; ii\n."); gtk_table_attach( GTK_TABLE( table4 ), bt_dot, left, left + 2, top, top + 2, GTK_EXPAND | GTK_FILL, GTK_EXPAND | GTK_FILL, 0, 0 ); left += 2; gtk_widget_show (bt_dot); bt_linux_slash = gtk_button_new_with_label ("?\n/"); gtk_table_attach( GTK_TABLE( table4 ), bt_linux_slash, left, left + 2, top, top + 2, GTK_EXPAND | GTK_FILL, GTK_EXPAND | GTK_FILL, 0, 0 ); left += 2; gtk_widget_show (bt_linux_slash); r_shift_btn = gtk_toggle_button_new_with_mnemonic (_("Shift")); gtk_table_attach( GTK_TABLE( table4 ), r_shift_btn, 25, 30, top, top + 2, GTK_EXPAND | GTK_FILL, GTK_EXPAND | GTK_FILL, 0, 0 ); gtk_widget_show (r_shift_btn); hbox9 = gtk_box_new (GTK_ORIENTATION_HORIZONTAL, 0); gtk_widget_show (hbox9); gtk_box_pack_start (GTK_BOX (vbox1), hbox9, TRUE, TRUE, 0); keyswitch_btn = gtk_button_new_with_label ("to English"); gtk_widget_set_tooltip_text (keyswitch_btn, _("Change to English Keyboard")); gtk_box_pack_start (GTK_BOX (hbox9), keyswitch_btn, TRUE, TRUE, 0); space_btn = gtk_button_new_with_mnemonic (_("Space")); gtk_widget_show (space_btn); gtk_box_pack_start (GTK_BOX (hbox9), space_btn, TRUE, TRUE, 0); gtk_widget_set_size_request (space_btn, 325, -1); altgr_btn = gtk_toggle_button_new_with_label ("AltGr"); gtk_widget_set_tooltip_text (altgr_btn, _("Change to Extended layer Keyboard")); gtk_box_pack_start (GTK_BOX (hbox9), altgr_btn, TRUE, TRUE, 0); gtk_widget_show (altgr_btn); combo_mim = gtk_combo_box_text_new (); gtk_widget_set_tooltip_text (combo_mim, _("Select the language in which you want to write. This list contains keymaps in order as inscript then user defined then xkb and then any keymaps opened that are not default listed")); gtk_box_pack_start (GTK_BOX (hbox9), combo_mim, TRUE, TRUE, 0); g_signal_connect (G_OBJECT (combo_mim), "changed", G_CALLBACK (on_combo_mim_changed), (gpointer) combo_mim); add_mimfilelist(); /* Code to check supported locales*/ for(cn=0; cn", NULL }; /* TRANSLATORS: Replace this string with your names, one name per line. */ gchar *translators = _("translator-credits"); IndicMapper_aboutdialog = gtk_about_dialog_new (); gtk_container_set_border_width (GTK_CONTAINER (IndicMapper_aboutdialog), 5); gtk_window_set_destroy_with_parent (GTK_WINDOW (IndicMapper_aboutdialog), TRUE); gtk_about_dialog_set_version (GTK_ABOUT_DIALOG (IndicMapper_aboutdialog), VERSION); gtk_about_dialog_set_program_name (GTK_ABOUT_DIALOG (IndicMapper_aboutdialog), _("iok")); gtk_about_dialog_set_license (GTK_ABOUT_DIALOG (IndicMapper_aboutdialog), _("GPLv2 or later\n")); gtk_about_dialog_set_authors (GTK_ABOUT_DIALOG (IndicMapper_aboutdialog), authors); gtk_about_dialog_set_translator_credits (GTK_ABOUT_DIALOG (IndicMapper_aboutdialog), translators); g_signal_connect (IndicMapper_aboutdialog, "response", G_CALLBACK (gtk_widget_destroy), IndicMapper_aboutdialog); return IndicMapper_aboutdialog; } iok-2.1.3/src/support.c0000644000076400007640000000714611776460064011722 00000000000000/* * DO NOT EDIT THIS FILE - it is generated by Glade. */ #ifdef HAVE_CONFIG_H # include #endif #include #include #include #include #include #include #include "support.h" GtkWidget* lookup_widget (GtkWidget *widget, const gchar *widget_name) { GtkWidget *parent, *found_widget; for (;;) { if (GTK_IS_MENU (widget)) parent = gtk_menu_get_attach_widget (GTK_MENU (widget)); else parent = gtk_widget_get_parent(widget); if (!parent) parent = (GtkWidget*) g_object_get_data (G_OBJECT (widget), "GladeParentKey"); if (parent == NULL) break; widget = parent; } found_widget = (GtkWidget*) g_object_get_data (G_OBJECT (widget), widget_name); if (!found_widget) g_warning ("Widget not found: %s", widget_name); return found_widget; } static GList *pixmaps_directories = NULL; /* Use this function to set the directory containing installed pixmaps. */ void add_pixmap_directory (const gchar *directory) { pixmaps_directories = g_list_prepend (pixmaps_directories, g_strdup (directory)); } /* This is an internally used function to find pixmap files. */ static gchar* find_pixmap_file (const gchar *filename) { GList *elem; /* We step through each of the pixmaps directory to find it. */ elem = pixmaps_directories; while (elem) { gchar *pathname = g_strdup_printf ("%s%s%s", (gchar*)elem->data, G_DIR_SEPARATOR_S, filename); if (g_file_test (pathname, G_FILE_TEST_EXISTS)) return pathname; g_free (pathname); elem = elem->next; } return NULL; } /* This is an internally used function to create pixmaps. */ GtkWidget* create_pixmap (GtkWidget *widget, const gchar *filename) { gchar *pathname = NULL; GtkWidget *pixmap; if (!filename || !filename[0]) return gtk_image_new (); pathname = find_pixmap_file (filename); if (!pathname) { g_warning (_("Couldn't find pixmap file: %s"), filename); return gtk_image_new (); } pixmap = gtk_image_new_from_file (pathname); g_free (pathname); return pixmap; } /* This is an internally used function to create pixmaps. */ GdkPixbuf* create_pixbuf (const gchar *filename) { gchar *pathname = NULL; GdkPixbuf *pixbuf; GError *error = NULL; if (!filename || !filename[0]) return NULL; pathname = find_pixmap_file (filename); if (!pathname) { g_warning (_("Couldn't find pixmap file: %s"), filename); return NULL; } pixbuf = gdk_pixbuf_new_from_file (pathname, &error); if (!pixbuf) { fprintf (stderr, "Failed to load pixbuf file: %s: %s\n", pathname, error->message); g_error_free (error); } g_free (pathname); return pixbuf; } /* This is used to set ATK action descriptions. */ void glade_set_atk_action_description (AtkAction *action, const gchar *action_name, const gchar *description) { gint n_actions, i; n_actions = atk_action_get_n_actions (action); for (i = 0; i < n_actions; i++) { if (!strcmp (atk_action_get_name (action, i), action_name)) atk_action_set_description (action, i, description); } } iok-2.1.3/src/support.h0000644000076400007640000000372211776460064011723 00000000000000/* * DO NOT EDIT THIS FILE - it is generated by Glade. */ #ifdef HAVE_CONFIG_H # include #endif #include /* * Standard gettext macros. */ #ifdef ENABLE_NLS # include # undef _ # define _(String) dgettext (PACKAGE, String) # define Q_(String) g_strip_context ((String), gettext (String)) # ifdef gettext_noop # define N_(String) gettext_noop (String) # else # define N_(String) (String) # endif #else # define textdomain(String) (String) # define gettext(String) (String) # define dgettext(Domain,Message) (Message) # define dcgettext(Domain,Message,Type) (Message) # define bindtextdomain(Domain,Directory) (Domain) # define _(String) (String) # define Q_(String) g_strip_context ((String), (String)) # define N_(String) (String) #endif /* * Public Functions. */ /* * This function returns a widget in a component created by Glade. * Call it with the toplevel widget in the component (i.e. a window/dialog), * or alternatively any widget in the component, and the name of the widget * you want returned. */ GtkWidget* lookup_widget (GtkWidget *widget, const gchar *widget_name); /* Use this function to set the directory containing installed pixmaps. */ void add_pixmap_directory (const gchar *directory); /* * Private Functions. */ /* This is used to create the pixmaps used in the interface. */ GtkWidget* create_pixmap (GtkWidget *widget, const gchar *filename); /* This is used to create the pixbufs used in the interface. */ GdkPixbuf* create_pixbuf (const gchar *filename); /* This is used to set ATK action descriptions. */ void glade_set_atk_action_description (AtkAction *action, const gchar *action_name, const gchar *description); iok-2.1.3/src/interface.h0000644000076400007640000000104511776460064012143 00000000000000 GtkWidget* create_IndicMapper (int argc, char **argv); GtkWidget* create_IndicMapper_aboutdialog (void); #define _BYTE 8 #define _WORD 16 #define _DWORD 32 enum { TARGET_STRING, TARGET_ROOTWIN }; /* datatype (string), restrictions on DnD (GtkTargetFlags), datatype (int) */ static GtkTargetEntry target_list[] = { { "STRING", 0, TARGET_STRING }, { "text/plain", 0, TARGET_STRING }, { "application/x-rootwindow-drop", 0, TARGET_ROOTWIN } }; static guint n_targets = G_N_ELEMENTS (target_list); iok-2.1.3/src/Makefile.am0000644000076400007640000000065511776460064012074 00000000000000## Process this file with automake to produce Makefile.in INCLUDES = \ -DPACKAGE_DATA_DIR=\""$(datadir)"\" \ -DPACKAGE_LOCALE_DIR=\""$(prefix)/$(DATADIRNAME)/locale"\" \ @GTK3_CFLAGS@ @LIBXML2_CFLAGS@ @UNIQUE3_CFLAGS@ bin_PROGRAMS = iok iok_SOURCES = \ main.c keyevent.c keys.h\ support.c support.h \ interface.c interface.h \ callbacks.c callbacks.h iok_LDADD = @GTK3_LIBS@ @LIBXML2_LIBS@ @UNIQUE3_LIBS@ $(INTLLIBS) iok-2.1.3/src/keys.h0000644000076400007640000000326311776460064011162 00000000000000 /* * iok - Virtual onscreen keyboard for Indic Inscript keymaps. * Copyright (C) 2007 Michael Levin * Copyright (C) 2011-2012 Parag Nemade * * This program is free software; you can redistribute it and/or * modify it under the terms of the GNU General Public License * as published by the Free Software Foundation; either version 2 * of the License, or (at your option) any later version. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License * along with this program; if not, write to the Free Software * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. * */ /* Key events */ typedef struct { unsigned char keycode, shift; unsigned int keysym; } KeyEvent; extern int key_shifted, key_num_locked, key_caps_locked; void key_event_new(KeyEvent *key_event, unsigned int keysym); void key_event_free(KeyEvent *key_event); void key_event_press(KeyEvent *key_event); void key_event_release(KeyEvent *key_event); void key_event_send_char(int unichar); void key_event_send_enter(void); void key_event_send_backspace(void); void key_event_send_space(void); void key_event_send_tab(void); int key_event_init(void); /* Constants may not have been defined if GLib is not included */ #ifndef TRUE #define TRUE 1 #endif #ifndef FALSE #define FALSE 0 #endif #ifndef NULL #define NULL ((void*)0) #endif char *va(const char *format, ...); iok-2.1.3/src/main.c0000644000076400007640000000577111776460064011134 00000000000000 /* * * iok - Virtual onscreen keyboard for Indic Inscript keymaps. * Copyright (C) 2008-2012 Parag Nemade * * This program is free software; you can redistribute it and/or * modify it under the terms of the GNU General Public License * as published by the Free Software Foundation; either version 2 * of the License, or (at your option) any later version. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License * along with this program; if not, write to the Free Software * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. * * */ #ifdef HAVE_CONFIG_H # include #endif #include #include #include "interface.h" #include "keys.h" #include "support.h" #define COMMAND_NEW_INSTANCE 1 static UniqueResponse unique_app_message_cb (UniqueApp *app, gint command, UniqueMessageData *data, guint time, gpointer user_data) { GtkWidget *window = user_data; gboolean visible; if (command != COMMAND_NEW_INSTANCE) return UNIQUE_RESPONSE_PASSTHROUGH; gtk_window_set_screen (GTK_WINDOW (window), unique_message_data_get_screen (data)); gtk_window_set_startup_id (GTK_WINDOW (window), unique_message_data_get_startup_id (data)); gtk_window_present_with_time (GTK_WINDOW (window), time); return UNIQUE_RESPONSE_OK; } int main (int argc, char *argv[]) { GtkWidget *IndicMapper; UniqueApp *unique_app = NULL; #ifdef ENABLE_NLS bindtextdomain (GETTEXT_PACKAGE, PACKAGE_LOCALE_DIR); bind_textdomain_codeset (GETTEXT_PACKAGE, "UTF-8"); textdomain (GETTEXT_PACKAGE); #endif setlocale (LC_ALL, ""); gtk_init (&argc, &argv); //add_pixmap_directory (PACKAGE_DATA_DIR "/" PACKAGE "/pixmaps"); /* * The following code was added by Glade to create one of each component * (except popup menus), just so that you see something after building * the project. Delete any components that you don't want shown initially. */ unique_app = unique_app_new_with_commands ("org.gnome.MainMenu", NULL, "new_instance", COMMAND_NEW_INSTANCE, NULL); if (unique_app_is_running (unique_app)) { unique_app_send_message (unique_app, COMMAND_NEW_INSTANCE, NULL); g_object_unref (unique_app); return 0; } IndicMapper = create_IndicMapper (argc,argv); gtk_widget_show (IndicMapper); g_signal_connect (unique_app, "message-received", G_CALLBACK (unique_app_message_cb), IndicMapper); key_event_init(); gtk_main (); g_object_unref (unique_app); return 0; } iok-2.1.3/iok.10000644000076400007640000000534111776460025010107 00000000000000.TH IOK 1 "March 12, 2012" .SH NAME \fBiok\fR\- Indic Onscreen Keyboard .SH SYNOPSIS .B iok .RB [ \-a ] .RB [ \-h ] .RB [ \-d .IR 1 ] .RB [ \-n .IR LANGCODE ] .SH DESCRIPTION .PP Indic Onscreen Keyboard currently shows Inscript and Inscript2 keymaps for 22 official Indian languages. The languages are Assamese, Bengali, Bodo, Dogri, Gujarati, Hindi, Kannada, Kokani, Maithili, Malayalam, Manipuri, Marathi, Nepali, Oriya, Punjabi, Sanskrit, Santali, Sindhi, Tamil, Telugu. The iok application runs in default and advanced mode. In default mode, iok starts by loading Inscript2 keymap of the current locale. If keymap is not installed or available then iok shows keymap list in the default mode. User can then select any keymap from keymap list if he want to write using it. In the advanced mode, iok allows to open non-supported keymaps. If keymap can be parsed by iok then it will be showed in iok UI otherwise it will show error message that iok can't load this keymap. Advanced mode also allows to create custom keymap by either swapping or re-assigning character mappings in the existing loaded keymap in iok. Another feature iok supports is Drag and Drop. This will allow user to swap character mappings using mouse. The keymap list shows Inscript and Inscript2 keymaps from location /usr/share/m17n and ~/.m17n.d path. .PP To start iok in normal mode from console, use following command iok To start iok in advanced mode from console, use following command iok -a To start iok in any supported Inscript2 keymap (say in Marathi) use following command iok -n mr As Inscript2 keymap naming also uses language script code for some languages, command to open those keymaps is like this iok -n pa-guru where pa is a isocode name for the Punjabi language and guru is a language script code name in which keymap is written. To use Drag and Drop feature of iok, start iok from console as iok -d 1 The Draft version of Inscript2 keymaps are available at https://fedorahosted.org/inscript2/ This project is available at http://fedorahosted.org/iok/ or http://iok.sourceforge.net .SH OPTIONS .TP .BI \-a It shows the menus and combo box in iok UI .TP .BI \-h It show the help .TP .BI \-d " 1" This will enable Drag and Drop feature only for the single iok invocation. Otherwise iok has disabled Drag and Drop by default. .TP .BI \-n " LANGCODE" In the place of LANGCODE,you need to specify a particular language code. Shows iok UI for that particular language. This will also requires language script code. e.g. for Bodo, Dogri, Kokani, Nepali, Sindhi use its langcode and "-deva" as a language script code. To start iok using Kokani keymap, run "iok -n kok-deva" .PP .SH AUTHOR Suji A , Parag .PP iok-2.1.3/mkinstalldirs0000755000076400007640000000672211776460251012056 00000000000000#! /bin/sh # mkinstalldirs --- make directory hierarchy scriptversion=2009-04-28.21; # UTC # Original author: Noah Friedman # Created: 1993-05-16 # Public domain. # # This file is maintained in Automake, please report # bugs to or send patches to # . nl=' ' IFS=" "" $nl" errstatus=0 dirmode= usage="\ Usage: mkinstalldirs [-h] [--help] [--version] [-m MODE] DIR ... Create each directory DIR (with mode MODE, if specified), including all leading file name components. Report bugs to ." # process command line arguments while test $# -gt 0 ; do case $1 in -h | --help | --h*) # -h for help echo "$usage" exit $? ;; -m) # -m PERM arg shift test $# -eq 0 && { echo "$usage" 1>&2; exit 1; } dirmode=$1 shift ;; --version) echo "$0 $scriptversion" exit $? ;; --) # stop option processing shift break ;; -*) # unknown option echo "$usage" 1>&2 exit 1 ;; *) # first non-opt arg break ;; esac done for file do if test -d "$file"; then shift else break fi done case $# in 0) exit 0 ;; esac # Solaris 8's mkdir -p isn't thread-safe. If you mkdir -p a/b and # mkdir -p a/c at the same time, both will detect that a is missing, # one will create a, then the other will try to create a and die with # a "File exists" error. This is a problem when calling mkinstalldirs # from a parallel make. We use --version in the probe to restrict # ourselves to GNU mkdir, which is thread-safe. case $dirmode in '') if mkdir -p --version . >/dev/null 2>&1 && test ! -d ./--version; then echo "mkdir -p -- $*" exec mkdir -p -- "$@" else # On NextStep and OpenStep, the `mkdir' command does not # recognize any option. It will interpret all options as # directories to create, and then abort because `.' already # exists. test -d ./-p && rmdir ./-p test -d ./--version && rmdir ./--version fi ;; *) if mkdir -m "$dirmode" -p --version . >/dev/null 2>&1 && test ! -d ./--version; then echo "mkdir -m $dirmode -p -- $*" exec mkdir -m "$dirmode" -p -- "$@" else # Clean up after NextStep and OpenStep mkdir. for d in ./-m ./-p ./--version "./$dirmode"; do test -d $d && rmdir $d done fi ;; esac for file do case $file in /*) pathcomp=/ ;; *) pathcomp= ;; esac oIFS=$IFS IFS=/ set fnord $file shift IFS=$oIFS for d do test "x$d" = x && continue pathcomp=$pathcomp$d case $pathcomp in -*) pathcomp=./$pathcomp ;; esac if test ! -d "$pathcomp"; then echo "mkdir $pathcomp" mkdir "$pathcomp" || lasterr=$? if test ! -d "$pathcomp"; then errstatus=$lasterr else if test ! -z "$dirmode"; then echo "chmod $dirmode $pathcomp" lasterr= chmod "$dirmode" "$pathcomp" || lasterr=$? if test ! -z "$lasterr"; then errstatus=$lasterr fi fi fi fi pathcomp=$pathcomp/ done done exit $errstatus # Local Variables: # mode: shell-script # sh-indentation: 2 # eval: (add-hook 'write-file-hooks 'time-stamp) # time-stamp-start: "scriptversion=" # time-stamp-format: "%:y-%02m-%02d.%02H" # time-stamp-time-zone: "UTC" # time-stamp-end: "; # UTC" # End: iok-2.1.3/intltool-extract.in0000664000076400007640000000000011776460251013075 00000000000000iok-2.1.3/intltool-merge.in0000664000076400007640000000000011776460251012522 00000000000000iok-2.1.3/Makefile.am0000644000076400007640000000150111776460025011271 00000000000000## Process this file with automake to produce Makefile.in SUBDIRS = src po data EXTRA_DIST = README.old \ autogen.sh \ iok.desktop.in \ intltool-extract.in \ intltool-merge.in \ intltool-update.in Applicationsdir = $(datadir)/applications Applications_in_files = iok.desktop.in Applications_DATA = $(Applications_in_files:.desktop.in=.desktop) @INTLTOOL_DESKTOP_RULE@ DISTCLEANFILES= \ intltool-extract \ intltool-merge \ intltool-update \ iok.desktop install-data-local: @$(NORMAL_INSTALL) dist-hook: $(MAKE) -C "$(srcdir)/po" "$(GETTEXT_PACKAGE).pot" cp "$(srcdir)/po/$(GETTEXT_PACKAGE).pot" "$(distdir)/po/" # Manpage iokmandir = $(mandir)/man1 dist_iokman_DATA = iok.1 iok-2.1.3/po/0000775000076400007640000000000011776460267007750 500000000000000iok-2.1.3/po/mai.po0000644000076400007640000001500711776460111010763 00000000000000# translation of iok.trunk.iok.po to Maithili # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. # # Rajesh Ranjan , 2009. # rajesh , 2012. msgid "" msgstr "" "Project-Id-Version: iok.trunk.iok\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2012-06-29 14:48+0530\n" "PO-Revision-Date: 2012-03-27 13:54+0530\n" "Last-Translator: rajesh \n" "Language-Team: Maithili \n" "Language: mai\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-Generator: Lokalize 1.2\n" "Plural-Forms: nplurals=2; plural=(n!=1);\n" "\n" #: ../iok.desktop.in.h:1 msgid "Indic Onscreen Keyboard" msgstr "इंडिक ऑनसà¥à¤•à¥à¤°à¥€à¤¨ कीबोरà¥à¤¡" #: ../iok.desktop.in.h:2 msgid "Enter Indic characters with a virtual keyboard" msgstr "कोनो आभासी कà¥à¤‚जीपटलक मदà¥à¤¦à¤¤à¤¿à¤¸à¤ भारतीय वरà¥à¤£à¤•ेठदरà¥à¤œ करू" #: ../src/interface.c:1987 msgid "" "This keymap file does not map uniquely to a keyboard and therefore cannot be " "displayed correctly" msgstr "" #: ../src/interface.c:3180 msgid "Select the language in which you want to write" msgstr "ओ भाषा चà¥à¤¨à¥‚ जकरामे अहाठलिखब चाहैत छी" #: ../src/interface.c:3182 ../src/interface.c:10955 msgid "Change to English Keyboard" msgstr "अंगà¥à¤°à¥‡à¤œà¥€ कà¥à¤‚जीपटमे बदलू" #: ../src/interface.c:3255 msgid "ReassignKey" msgstr "कà¥à¤‚जी फेर नियत करू" #: ../src/interface.c:3265 msgid "Reassign Keyvalue of Key" msgstr "कà¥à¤‚जीक कà¥à¤‚जीमान फेर नियत करू" #: ../src/interface.c:3276 msgid "to another Key" msgstr "कोनो दोसर कà¥à¤‚जीमे" #. Don't need to show menus #. Create the menu items #: ../src/interface.c:3291 ../src/interface.c:10447 msgid "Reassign" msgstr "फेर नियत करू" #: ../src/interface.c:3295 msgid "Cancel" msgstr "रद करू" #: ../src/interface.c:3586 msgid "Open Keymap File" msgstr "कà¥à¤‚जी मैप फाइलकेठखोलू" #: ../src/interface.c:3636 msgid "Write to Keymap File" msgstr "कà¥à¤‚जीमैप फाइलमे लिखू" #: ../src/interface.c:3655 msgid "" "This application supports only for Inscript type keymaps therefore no custom " "xkb keymaps can be created." msgstr "" #: ../src/interface.c:3681 msgid "" "This application supports saving the inscript keymaps using filename as " "\"locale_code-custom_name-inscript2.mim\" only. If you are planning to " "change the default keymap name then use only this pattern." msgstr "" #. Don't need to show menus #. Create the menu items #: ../src/interface.c:10407 msgid "Open" msgstr "खोलू" #: ../src/interface.c:10408 msgid "Open a Keymap that is not listed in a combobox" msgstr "कोनो कà¥à¤‚जी मानचितà¥à¤° खोलू जे कोंबो पेटीमे सूचीबदà¥à¤§ नहि अछि" #: ../src/interface.c:10410 msgid "Save" msgstr "सहेजू" #: ../src/interface.c:10411 msgid "Save current state of loaded keymap to a new keymap" msgstr "कोनो नव कà¥à¤‚जी मानचितà¥à¤°à¤®à¥‡ लोड कà¤à¤² कà¥à¤‚जीमानचितà¥à¤°à¤• मोजà¥à¤¦à¤¾ सà¥à¤¥à¤¿à¤¤à¤¿ सहेजू" #: ../src/interface.c:10414 msgid "Quit" msgstr "बाहर" #: ../src/interface.c:10416 msgid "Close iok application" msgstr "iok अनà¥à¤ªà¥à¤°à¤¯à¥‹à¤— चà¥à¤¨à¥‚" #: ../src/interface.c:10449 msgid "Reassign key value of some key to some other key" msgstr "किछॠदोसर कà¥à¤‚जीमे किछॠकà¥à¤‚जीक कà¥à¤‚जी मान फेर नियत करू" #: ../src/interface.c:10451 msgid "Swap" msgstr "सà¥à¤µà¥ˆà¤ª करू" #: ../src/interface.c:10453 msgid "Swap key values between any 2 keys in loaded keymap" msgstr "कोनो 2 कà¥à¤‚जी के मधà¥à¤¯ लोडेड कà¥à¤‚जीमानचितà¥à¤°à¤®à¥‡ कà¥à¤‚जी मान सà¥à¤µà¥ˆà¤ª करू" #. Don't need to show menus #. Create the menu items #: ../src/interface.c:10473 msgid "About" msgstr "परिचय" #: ../src/interface.c:10475 msgid "About iok application" msgstr "iok अनà¥à¤ªà¥à¤°à¤¯à¥‹à¤—क परिचय" #: ../src/interface.c:10491 msgid "Keymap" msgstr "कà¥à¤‚जी मानचितà¥à¤°" #: ../src/interface.c:10494 msgid "Keys" msgstr "कà¥à¤‚जी" #: ../src/interface.c:10497 msgid "Help" msgstr "मदति" #: ../src/interface.c:10682 msgid "Backspace" msgstr "Backspace" #: ../src/interface.c:10699 msgid "Tab" msgstr "Tab" #: ../src/interface.c:10792 msgid "Caps" msgstr "Caps" #: ../src/interface.c:10863 msgid "Enter" msgstr "Enter" #: ../src/interface.c:10879 ../src/interface.c:10944 msgid "Shift" msgstr "Shift" #: ../src/interface.c:10958 msgid "Space" msgstr "Space" #: ../src/interface.c:10965 msgid "Change to Extended layer Keyboard" msgstr "विसà¥à¤¤à¤¾à¤°à¤¿à¤¤ लेयर कà¥à¤‚जीपटमे बदलू" #: ../src/interface.c:10971 msgid "" "Select the language in which you want to write. This list contains keymaps " "in order as inscript then user defined then xkb and then any keymaps opened " "that are not default listed" msgstr "" "ओ भाषा चà¥à¤¨à¥‚ जकरामे अहाठलिखन चाहैत छी. ई सूची inscript रूपेठकà¥à¤‚जीमानचितà¥à¤°à¤•ेठसमाहित करैत " "अछि xkb पर परिभाषितक अलावा आओर कà¥à¤‚जी मानचितà¥à¤° खà¥à¤²à¤² अछि जे पूरà¥à¤µà¤¨à¤¿à¤°à¥à¤§à¤¾à¤°à¤¿à¤¤ रूपेठसूचीबदà¥à¤§ " "नहि अछि" #. TRANSLATORS: Replace this string with your names, one name per line. #: ../src/interface.c:12541 msgid "translator-credits" msgstr "राजेश रंजन (rajesh672@gmail.com)" #: ../src/interface.c:12547 msgid "iok" msgstr "iok" #: ../src/interface.c:12548 msgid "GPLv2 or later\n" msgstr "GPLv2 अथवा बादबला\n" #: ../src/support.c:90 ../src/support.c:114 #, c-format msgid "Couldn't find pixmap file: %s" msgstr "पिकà¥à¤¸à¤®à¥ˆà¤ª फाइल नहि पाबि सकल: %s" #~ msgid "to English" #~ msgstr "अंगà¥à¤°à¥‡à¤œà¥€à¤®à¥‡ जाउ" #~ msgid "English" #~ msgstr "अंगà¥à¤°à¥‡à¤œà¥€" iok-2.1.3/po/zh_TW.po0000644000076400007640000001211011776460111011240 00000000000000# translation of iok.trunk.zh_TW.po to Traditional Chinese # Terry Chuang , 2009. # Chinese(Traditional) translation of iok # Copyright (C) 2008 iok # This file is distributed under the same license as the iok package. msgid "" msgstr "" "Project-Id-Version: iok.trunk.zh_TW\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2012-06-29 14:48+0530\n" "PO-Revision-Date: 2009-12-11 11:54+1000\n" "Last-Translator: Terry Chuang \n" "Language-Team: Traditional Chinese \n" "Language: \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-Poedit-Language: Chinese\n" "X-Poedit-Country: TAIWAN\n" "X-Poedit-SourceCharset: utf-8\n" "X-Generator: KBabel 1.11.4\n" #: ../iok.desktop.in.h:1 msgid "Indic Onscreen Keyboard" msgstr "å°åº¦èªžèž¢å¹•éµç›¤" #: ../iok.desktop.in.h:2 msgid "Enter Indic characters with a virtual keyboard" msgstr "以虛擬éµç›¤è¼¸å…¥å°åº¦èªžå­—å…ƒ" #: ../src/interface.c:1987 msgid "" "This keymap file does not map uniquely to a keyboard and therefore cannot be " "displayed correctly" msgstr "" #: ../src/interface.c:3180 msgid "Select the language in which you want to write" msgstr "è«‹é¸æ“‡æ‚¨å¸Œæœ›ä½¿ç”¨çš„語言" #: ../src/interface.c:3182 ../src/interface.c:10955 msgid "Change to English Keyboard" msgstr "æ›´æ›ç‚ºè‹±æ–‡éµç›¤" #: ../src/interface.c:3255 msgid "ReassignKey" msgstr "é‡è¨­éµå€¼" #: ../src/interface.c:3265 msgid "Reassign Keyvalue of Key" msgstr "é‡è¨­æŒ‰éµçš„éµå€¼" #: ../src/interface.c:3276 msgid "to another Key" msgstr "é‡è¨­ç‚ºå¦ä¸€å€‹æŒ‰éµ" #. Don't need to show menus #. Create the menu items #: ../src/interface.c:3291 ../src/interface.c:10447 msgid "Reassign" msgstr "é‡è¨­" #: ../src/interface.c:3295 msgid "Cancel" msgstr "å–æ¶ˆ" #: ../src/interface.c:3586 msgid "Open Keymap File" msgstr "開啟 keymap 檔案" #: ../src/interface.c:3636 msgid "Write to Keymap File" msgstr "寫入 Keymap 檔案" #: ../src/interface.c:3655 msgid "" "This application supports only for Inscript type keymaps therefore no custom " "xkb keymaps can be created." msgstr "" #: ../src/interface.c:3681 msgid "" "This application supports saving the inscript keymaps using filename as " "\"locale_code-custom_name-inscript2.mim\" only. If you are planning to " "change the default keymap name then use only this pattern." msgstr "" #. Don't need to show menus #. Create the menu items #: ../src/interface.c:10407 msgid "Open" msgstr "開啟" #: ../src/interface.c:10408 msgid "Open a Keymap that is not listed in a combobox" msgstr "開啟一個未列在 combobox 中的 Keymap" #: ../src/interface.c:10410 msgid "Save" msgstr "儲存" #: ../src/interface.c:10411 msgid "Save current state of loaded keymap to a new keymap" msgstr "將目å‰è¼‰å…¥çš„ keymap 狀態儲存至一個新的 keymap" #: ../src/interface.c:10414 msgid "Quit" msgstr "退出" #: ../src/interface.c:10416 msgid "Close iok application" msgstr "關閉 iok 應用程å¼" #: ../src/interface.c:10449 msgid "Reassign key value of some key to some other key" msgstr "å°‡æŸäº›æŒ‰éµçš„éµå€¼é‡è¨­ç‚ºå…¶å®ƒéµ" #: ../src/interface.c:10451 msgid "Swap" msgstr "交æ›" #: ../src/interface.c:10453 msgid "Swap key values between any 2 keys in loaded keymap" msgstr "將載入的 keymap 中的任æ„兩個按éµçš„éµå€¼äº’æ›" #. Don't need to show menus #. Create the menu items #: ../src/interface.c:10473 msgid "About" msgstr "相關資訊" #: ../src/interface.c:10475 msgid "About iok application" msgstr "iok 應用程å¼çš„相關資訊" #: ../src/interface.c:10491 msgid "Keymap" msgstr "Keymap" #: ../src/interface.c:10494 msgid "Keys" msgstr "按éµ" #: ../src/interface.c:10497 msgid "Help" msgstr "å”助" #: ../src/interface.c:10682 msgid "Backspace" msgstr "Backspace" #: ../src/interface.c:10699 msgid "Tab" msgstr "Tab" #: ../src/interface.c:10792 msgid "Caps" msgstr "Caps" #: ../src/interface.c:10863 msgid "Enter" msgstr "Enter" #: ../src/interface.c:10879 ../src/interface.c:10944 msgid "Shift" msgstr "Shift" #: ../src/interface.c:10958 msgid "Space" msgstr "空白éµ" #: ../src/interface.c:10965 #, fuzzy msgid "Change to Extended layer Keyboard" msgstr "æ›´æ›ç‚ºè‹±æ–‡éµç›¤" #: ../src/interface.c:10971 msgid "" "Select the language in which you want to write. This list contains keymaps " "in order as inscript then user defined then xkb and then any keymaps opened " "that are not default listed" msgstr "" "è«‹é¸æ“‡æ‚¨æ¬²ä½¿ç”¨çš„語言。此清單包å«äº† keymap,順åºç‚º inscriptã€ä½¿ç”¨è€…定義ã€xkb," "然後則是所有éžé è¨­åˆ—出而å»é–‹å•Ÿçš„ keymap" #. TRANSLATORS: Replace this string with your names, one name per line. #: ../src/interface.c:12541 msgid "translator-credits" msgstr "譯者姓å:莊佳儒(tchuang@redhat.com)" #: ../src/interface.c:12547 msgid "iok" msgstr "iok" #: ../src/interface.c:12548 msgid "GPLv2 or later\n" msgstr "GPLv2 或更新\n" #: ../src/support.c:90 ../src/support.c:114 #, c-format msgid "Couldn't find pixmap file: %s" msgstr "找ä¸åˆ° pixmap 檔案:%s" #~ msgid "to English" #~ msgstr "英語" #~ msgid "English" #~ msgstr "英語" iok-2.1.3/po/hi.po0000644000076400007640000001656611776460111010630 00000000000000# rajesh , 2012. #zanata msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2012-06-29 14:48+0530\n" "PO-Revision-Date: 2012-07-03 02:59-0400\n" "Last-Translator: rajesh \n" "Language-Team: Hindi\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Language: hi\n" "Plural-Forms: nplurals=2; plural=(n != 1)\n" "X-Generator: Zanata 1.6.1\n" #: ../iok.desktop.in.h:1 msgid "Indic Onscreen Keyboard" msgstr "इंडिक ऑनसà¥à¤•à¥à¤°à¥€à¤¨ कà¥à¤‚जीपट" #: ../iok.desktop.in.h:2 msgid "Enter Indic characters with a virtual keyboard" msgstr "वरà¥à¤šà¥à¤…ल कà¥à¤‚जीपट से भारतीय वरà¥à¤£ दाखिल करें" #: ../src/interface.c:1987 msgid "" "This keymap file does not map uniquely to a keyboard and therefore cannot be" " displayed correctly" msgstr "" "यह कीमैप फ़ाइल कà¥à¤à¤œà¥€à¤ªà¤Ÿà¤² से अनूठे तरीके से मानचितà¥à¤°à¤¿à¤¤ नहीं रहता है और इसलिठ" "सही तरीके से दिखाया नहीं जा सकता है" #: ../src/interface.c:3180 msgid "Select the language in which you want to write" msgstr "वह भाषा चà¥à¤¨à¥‡à¤‚ जिसमें आप लिखना चाहते हैं" #: ../src/interface.c:3182 ../src/interface.c:10955 msgid "Change to English Keyboard" msgstr "अंगà¥à¤°à¥‡à¤œà¥€ कà¥à¤‚जीपट में बदलें" #: ../src/interface.c:3255 msgid "ReassignKey" msgstr "कà¥à¤‚जी फिर नियत करें" #: ../src/interface.c:3265 msgid "Reassign Keyvalue of Key" msgstr "कà¥à¤‚जी का कà¥à¤‚जीमान फिर नियत करें" #: ../src/interface.c:3276 msgid "to another Key" msgstr "किसी दूसरे कà¥à¤‚जी में" #. Don't need to show menus #. Create the menu items #: ../src/interface.c:3291 ../src/interface.c:10447 msgid "Reassign" msgstr "फिर नियत करें" #: ../src/interface.c:3295 msgid "Cancel" msgstr "रदà¥à¤¦ करें" #: ../src/interface.c:3586 msgid "Open Keymap File" msgstr "कà¥à¤‚जी मैप फाइल खोलें" #: ../src/interface.c:3636 msgid "Write to Keymap File" msgstr "कà¥à¤‚जीमैप फाइल में लिखें" #: ../src/interface.c:3655 msgid "" "This application supports only for Inscript type keymaps therefore no custom" " xkb keymaps can be created." msgstr "" "यह अनà¥à¤ªà¥à¤°à¤¯à¥‹à¤— केवल इंसà¥à¤•à¥à¤°à¤¿à¤ªà¥à¤Ÿ पà¥à¤°à¤•ार कीमैप का समरà¥à¤¥à¤¨ करता है और इसलिठकोई " "पसंदीदा xkb कीमैप नहीं बनाया जा सकता है." #: ../src/interface.c:3681 msgid "" "This application supports saving the inscript keymaps using filename as " "\"locale_code-custom_name-inscript2.mim\" only. If you are planning to " "change the default keymap name then use only this pattern." msgstr "" "यह अनà¥à¤ªà¥à¤°à¤¯à¥‹à¤— इंसà¥à¤•à¥à¤°à¤¿à¤ªà¥à¤Ÿ कीमैप के सहेजने का समरà¥à¤¥à¤¨ फ़ाइलनाम को " "\"locale_code-custom_name-inscript2.mim\" में केवल उपयोग करते हà¥à¤ करता है. " "यदि आप तयशà¥à¤¦à¤¾ कीमैप नाम बदलने की योजना बना रहे हैं तो केवल इस पà¥à¤°à¤¾à¤°à¥‚प का " "उपयोग करें." #. Don't need to show menus #. Create the menu items #: ../src/interface.c:10407 msgid "Open" msgstr "खोलें" #: ../src/interface.c:10408 msgid "Open a Keymap that is not listed in a combobox" msgstr "कोई कà¥à¤‚जी मानचितà¥à¤° खोलें जो कि कोंबो बॉकà¥à¤¸ में सूचीबदà¥à¤§ नहीं है" #: ../src/interface.c:10410 msgid "Save" msgstr "सहेजें" #: ../src/interface.c:10411 msgid "Save current state of loaded keymap to a new keymap" msgstr "" "किसी नये कà¥à¤‚जी मानचितà¥à¤° में लोड किठकà¥à¤‚जीमानचितà¥à¤° की मौजूदा सà¥à¤¥à¤¿à¤¤à¤¿ सहेजें" #: ../src/interface.c:10414 msgid "Quit" msgstr "बाहर" #: ../src/interface.c:10416 msgid "Close iok application" msgstr "iok अनà¥à¤ªà¥à¤°à¤¯à¥‹à¤— चà¥à¤¨à¥‡à¤‚" #: ../src/interface.c:10449 msgid "Reassign key value of some key to some other key" msgstr "कà¥à¤› दूसरे कà¥à¤‚जी में कà¥à¤› कà¥à¤‚जी के कà¥à¤‚जी मान फिर नियत करें" #: ../src/interface.c:10451 msgid "Swap" msgstr "सà¥à¤µà¥ˆà¤ª करें" #: ../src/interface.c:10453 msgid "Swap key values between any 2 keys in loaded keymap" msgstr "किसी 2 कà¥à¤‚जी के बीच लोडेड कà¥à¤‚जीमानचितà¥à¤° में कà¥à¤‚जी मान सà¥à¤µà¥ˆà¤ª करें" #. Don't need to show menus #. Create the menu items #: ../src/interface.c:10473 msgid "About" msgstr "परिचय" #: ../src/interface.c:10475 msgid "About iok application" msgstr "iok अनà¥à¤ªà¥à¤°à¤¯à¥‹à¤— का परिचय" #: ../src/interface.c:10491 msgid "Keymap" msgstr "कà¥à¤‚जी मानचितà¥à¤°" #: ../src/interface.c:10494 msgid "Keys" msgstr "कà¥à¤‚जी" #: ../src/interface.c:10497 msgid "Help" msgstr "मदद" #: ../src/interface.c:10682 msgid "Backspace" msgstr "Backspace" #: ../src/interface.c:10699 msgid "Tab" msgstr "Tab" #: ../src/interface.c:10792 msgid "Caps" msgstr "Caps" #: ../src/interface.c:10863 msgid "Enter" msgstr "Enter" #: ../src/interface.c:10879 ../src/interface.c:10944 msgid "Shift" msgstr "Shift" #: ../src/interface.c:10958 msgid "Space" msgstr "Space" #: ../src/interface.c:10965 msgid "Change to Extended layer Keyboard" msgstr "विसà¥à¤¤à¤¾à¤°à¤¿à¤¤ सà¥à¤¤à¤°à¤¿à¤¤ कà¥à¤à¤œà¥€à¤ªà¤Ÿà¤² में बदलें" #: ../src/interface.c:10971 msgid "" "Select the language in which you want to write. This list contains keymaps " "in order as inscript then user defined then xkb and then any keymaps opened " "that are not default listed" msgstr "" "वह भाषा चà¥à¤¨à¥‡à¤‚ जिसमें आप लिखना चाहते हैं. यह सूची inscript रूप में " "कà¥à¤‚जीमानचितà¥à¤° समाहित करती है बनिसà¥à¤ªà¤¤ xkb पर परिभाषित के अलावा और कà¥à¤‚जी " "मानचितà¥à¤° खà¥à¤²à¤¾ है जो कि तयशà¥à¤¦à¤¾ रूप से सूचीबदà¥à¤§ नहीं है" #. TRANSLATORS: Replace this string with your names, one name per line. #: ../src/interface.c:12541 msgid "translator-credits" msgstr "राजेश रंजन (rranjan@redhat.com)" #: ../src/interface.c:12547 msgid "iok" msgstr "iok" #: ../src/interface.c:12548 msgid "GPLv2 or later\n" msgstr "GPLv2 या पशà¥à¤šà¤¾à¤¤à¤µà¤°à¥à¤¤à¥€\n" #: ../src/support.c:90 ../src/support.c:114 #, c-format msgid "Couldn't find pixmap file: %s" msgstr "पिकà¥à¤¸à¤®à¥ˆà¤ª फाइल नहीं पा सकता: %s" iok-2.1.3/po/sr.po0000644000076400007640000001104111776460111010633 00000000000000# Serbian translations for iok # Copyright (C) 2008 Parag Nemade # This file is distributed under the same license as the iok package. # MiloÅ¡ KomarÄević , 2010. # msgid "" msgstr "" "Project-Id-Version: iok\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2012-06-29 14:48+0530\n" "PO-Revision-Date: 2010-02-17 20:36+0100\n" "Last-Translator: MiloÅ¡ KomarÄević \n" "Language-Team: Serbian \n" "Language: sr\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n" "%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" #: ../iok.desktop.in.h:1 msgid "Indic Onscreen Keyboard" msgstr "" #: ../iok.desktop.in.h:2 msgid "Enter Indic characters with a virtual keyboard" msgstr "" #: ../src/interface.c:1987 msgid "" "This keymap file does not map uniquely to a keyboard and therefore cannot be " "displayed correctly" msgstr "" #: ../src/interface.c:3180 msgid "Select the language in which you want to write" msgstr "Изаберите језик на коме желите да пишете" #: ../src/interface.c:3182 ../src/interface.c:10955 msgid "Change to English Keyboard" msgstr "Промени на енглеÑку таÑтатуру" #: ../src/interface.c:3255 msgid "ReassignKey" msgstr "" #: ../src/interface.c:3265 msgid "Reassign Keyvalue of Key" msgstr "" #: ../src/interface.c:3276 msgid "to another Key" msgstr "" #. Don't need to show menus #. Create the menu items #: ../src/interface.c:3291 ../src/interface.c:10447 msgid "Reassign" msgstr "" #: ../src/interface.c:3295 msgid "Cancel" msgstr "Откажи" #: ../src/interface.c:3586 msgid "Open Keymap File" msgstr "" #: ../src/interface.c:3636 msgid "Write to Keymap File" msgstr "" #: ../src/interface.c:3655 msgid "" "This application supports only for Inscript type keymaps therefore no custom " "xkb keymaps can be created." msgstr "" #: ../src/interface.c:3681 msgid "" "This application supports saving the inscript keymaps using filename as " "\"locale_code-custom_name-inscript2.mim\" only. If you are planning to " "change the default keymap name then use only this pattern." msgstr "" #. Don't need to show menus #. Create the menu items #: ../src/interface.c:10407 msgid "Open" msgstr "Отвори" #: ../src/interface.c:10408 msgid "Open a Keymap that is not listed in a combobox" msgstr "" #: ../src/interface.c:10410 msgid "Save" msgstr "Сачувај" #: ../src/interface.c:10411 msgid "Save current state of loaded keymap to a new keymap" msgstr "" #: ../src/interface.c:10414 msgid "Quit" msgstr "" #: ../src/interface.c:10416 msgid "Close iok application" msgstr "Затвори програм iok" #: ../src/interface.c:10449 msgid "Reassign key value of some key to some other key" msgstr "" #: ../src/interface.c:10451 msgid "Swap" msgstr "Замени" #: ../src/interface.c:10453 msgid "Swap key values between any 2 keys in loaded keymap" msgstr "" #. Don't need to show menus #. Create the menu items #: ../src/interface.c:10473 msgid "About" msgstr "О програму" #: ../src/interface.c:10475 msgid "About iok application" msgstr "О програму iok" #: ../src/interface.c:10491 msgid "Keymap" msgstr "РаÑпоред таÑтера" #: ../src/interface.c:10494 msgid "Keys" msgstr "ТаÑтери" #: ../src/interface.c:10497 msgid "Help" msgstr "Помоћ" #: ../src/interface.c:10682 msgid "Backspace" msgstr "" #: ../src/interface.c:10699 msgid "Tab" msgstr "" #: ../src/interface.c:10792 msgid "Caps" msgstr "" #: ../src/interface.c:10863 msgid "Enter" msgstr "" #: ../src/interface.c:10879 ../src/interface.c:10944 msgid "Shift" msgstr "" #: ../src/interface.c:10958 msgid "Space" msgstr "Размак" #: ../src/interface.c:10965 #, fuzzy msgid "Change to Extended layer Keyboard" msgstr "Промени на енглеÑку таÑтатуру" #: ../src/interface.c:10971 msgid "" "Select the language in which you want to write. This list contains keymaps " "in order as inscript then user defined then xkb and then any keymaps opened " "that are not default listed" msgstr "" #. TRANSLATORS: Replace this string with your names, one name per line. #: ../src/interface.c:12541 msgid "translator-credits" msgstr "MiloÅ¡ KomarÄević" #: ../src/interface.c:12547 msgid "iok" msgstr "iok" #: ../src/interface.c:12548 msgid "GPLv2 or later\n" msgstr "ГЈЛв2 или каÑнија\n" #: ../src/support.c:90 ../src/support.c:114 #, c-format msgid "Couldn't find pixmap file: %s" msgstr "" iok-2.1.3/po/bs.po0000644000076400007640000001242111776460111010616 00000000000000# Bosnian translations for iok # This file is distributed under the same license as the iok package. # MiloÅ¡ KomarÄević , 2010. # Edmon Begoli , 2010 msgid "" msgstr "" "Project-Id-Version: iok\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2012-06-29 14:48+0530\n" "PO-Revision-Date: 2010-04-17 10:11-0500\n" "Last-Translator: Edmon Begoli \n" "Language-Team: Bosnian \n" "Language: bs\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n" "%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" #: ../iok.desktop.in.h:1 msgid "Indic Onscreen Keyboard" msgstr "Indic na-ekranu tipkovnica" #: ../iok.desktop.in.h:2 msgid "Enter Indic characters with a virtual keyboard" msgstr "Enter Indic znakove sa virtualnom tipkovnicom" #: ../src/interface.c:1987 msgid "" "This keymap file does not map uniquely to a keyboard and therefore cannot be " "displayed correctly" msgstr "" #: ../src/interface.c:3180 msgid "Select the language in which you want to write" msgstr "Izaberite jezik na kojem želite piÅ¡eti" #: ../src/interface.c:3182 ../src/interface.c:10955 msgid "Change to English Keyboard" msgstr "Promijeni na englesku tastaturu" #: ../src/interface.c:3255 msgid "ReassignKey" msgstr "PrerasporediTipka" #: ../src/interface.c:3265 msgid "Reassign Keyvalue of Key" msgstr "Pre-rasporedi znacenje tipke" #: ../src/interface.c:3276 msgid "to another Key" msgstr "na drugu tipku" #. Don't need to show menus #. Create the menu items #: ../src/interface.c:3291 ../src/interface.c:10447 msgid "Reassign" msgstr "Pre-rasporedi" #: ../src/interface.c:3295 msgid "Cancel" msgstr "Otkaži" #: ../src/interface.c:3586 msgid "Open Keymap File" msgstr "Otvori datoteku sa rasporedom tipki" #: ../src/interface.c:3636 msgid "Write to Keymap File" msgstr "Napisi datoteku sa rasporedom tipki" #: ../src/interface.c:3655 msgid "" "This application supports only for Inscript type keymaps therefore no custom " "xkb keymaps can be created." msgstr "" #: ../src/interface.c:3681 msgid "" "This application supports saving the inscript keymaps using filename as " "\"locale_code-custom_name-inscript2.mim\" only. If you are planning to " "change the default keymap name then use only this pattern." msgstr "" #. Don't need to show menus #. Create the menu items #: ../src/interface.c:10407 msgid "Open" msgstr "Otvori" #: ../src/interface.c:10408 msgid "Open a Keymap that is not listed in a combobox" msgstr "Otvori raspored tipki koji nije izlistan u kombo-kutiji" #: ../src/interface.c:10410 msgid "Save" msgstr "SaÄuvaj" #: ../src/interface.c:10411 msgid "Save current state of loaded keymap to a new keymap" msgstr "Sacuvaj postojeci raspored tipki u novi raspored" #: ../src/interface.c:10414 msgid "Quit" msgstr "Odustani" #: ../src/interface.c:10416 msgid "Close iok application" msgstr "Zatvori program iok" #: ../src/interface.c:10449 msgid "Reassign key value of some key to some other key" msgstr "Pre-rasporedi znacenje tipke na neku drugu tipku." #: ../src/interface.c:10451 msgid "Swap" msgstr "Zameni" #: ../src/interface.c:10453 msgid "Swap key values between any 2 keys in loaded keymap" msgstr "" "Zamijeni znacenje tipke izmedju bilo koje dvije tipke u ucitanom rasporedu " "tipki" #. Don't need to show menus #. Create the menu items #: ../src/interface.c:10473 msgid "About" msgstr "O programu" #: ../src/interface.c:10475 msgid "About iok application" msgstr "O programu iok" #: ../src/interface.c:10491 msgid "Keymap" msgstr "Raspored tastature" #: ../src/interface.c:10494 msgid "Keys" msgstr "Tipke" #: ../src/interface.c:10497 msgid "Help" msgstr "Pomoć" #: ../src/interface.c:10682 msgid "Backspace" msgstr "Unatrag" #: ../src/interface.c:10699 msgid "Tab" msgstr "Markica" #: ../src/interface.c:10792 msgid "Caps" msgstr "Velika slova" #: ../src/interface.c:10863 msgid "Enter" msgstr "Unesi" #: ../src/interface.c:10879 ../src/interface.c:10944 msgid "Shift" msgstr "Pomak" #: ../src/interface.c:10958 msgid "Space" msgstr "Razmak" #: ../src/interface.c:10965 #, fuzzy msgid "Change to Extended layer Keyboard" msgstr "Promijeni na englesku tastaturu" #: ../src/interface.c:10971 msgid "" "Select the language in which you want to write. This list contains keymaps " "in order as inscript then user defined then xkb and then any keymaps opened " "that are not default listed" msgstr "" "Izaberite jezik u kojem zelite pisati. Lista sadrzi rasporede tastatura u " "redu kao inscript pa onda one definirane od strane korisnika i onda bilo " "bilo koji raspored tastature koji nije osnovna, dodijeljena vrijednost" #. TRANSLATORS: Replace this string with your names, one name per line. #: ../src/interface.c:12541 msgid "translator-credits" msgstr "" "Edmon Begoli, neki dijelovi preuzeti i preradjeni of Serbian-latin, Milosa " "Kovacevica" #: ../src/interface.c:12547 msgid "iok" msgstr "iok" #: ../src/interface.c:12548 msgid "GPLv2 or later\n" msgstr "GJLv2 ili kasnija\n" #: ../src/support.c:90 ../src/support.c:114 #, c-format msgid "Couldn't find pixmap file: %s" msgstr "Nije se mogla naci piximap datoteka: %s" #~ msgid "to English" #~ msgstr "na englesku" #~ msgid "English" #~ msgstr "englesku" iok-2.1.3/po/uk.po0000644000076400007640000001425511776460111010640 00000000000000# SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. # # Translators: # Maxim Dzumanenko , 2010. # Yuri Chornoivan , 2011. msgid "" msgstr "" "Project-Id-Version: fedorahosted-org-svn-iok-po-iok.pot\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2012-06-29 14:48+0530\n" "PO-Revision-Date: 2011-03-22 15:15+0000\n" "Last-Translator: yurchor \n" "Language-Team: Ukrainian \n" "Language: uk\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n" "%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2)\n" #: ../iok.desktop.in.h:1 msgid "Indic Onscreen Keyboard" msgstr "ІндійÑька екранна клавіатура" #: ../iok.desktop.in.h:2 msgid "Enter Indic characters with a virtual keyboard" msgstr "Ð’Ð²ÐµÐ´ÐµÐ½Ð½Ñ Ð»Ñ–Ñ‚ÐµÑ€ індійÑьких мов за допомогою віртуальної клавіатури" #: ../src/interface.c:1987 msgid "" "This keymap file does not map uniquely to a keyboard and therefore cannot be " "displayed correctly" msgstr "" #: ../src/interface.c:3180 msgid "Select the language in which you want to write" msgstr "Виберіть мову, Ñкою будете пиÑати" #: ../src/interface.c:3182 ../src/interface.c:10955 msgid "Change to English Keyboard" msgstr "Змінити розкладку на англійÑьку" #: ../src/interface.c:3255 msgid "ReassignKey" msgstr "ÐŸÐµÑ€ÐµÐ¿Ñ€Ð¸Ð·Ð½Ð°Ñ‡ÐµÐ½Ð½Ñ ÐºÐ»Ð°Ð²Ñ–ÑˆÑ–" #: ../src/interface.c:3265 msgid "Reassign Keyvalue of Key" msgstr "Замінити Ð¿Ñ€Ð¸Ð·Ð½Ð°Ñ‡ÐµÐ½Ð½Ñ ÐºÐ»Ð°Ð²Ñ–ÑˆÑ–" #: ../src/interface.c:3276 msgid "to another Key" msgstr "на інший Ñимвол" #. Don't need to show menus #. Create the menu items #: ../src/interface.c:3291 ../src/interface.c:10447 msgid "Reassign" msgstr "Перепризначити" #: ../src/interface.c:3295 msgid "Cancel" msgstr "СкаÑувати" #: ../src/interface.c:3586 msgid "Open Keymap File" msgstr "Відкрити файл карти Ñимволів" #: ../src/interface.c:3636 msgid "Write to Keymap File" msgstr "Ð—Ð°Ð¿Ð¸Ñ Ð´Ð¾ файла карти Ñимволів" #: ../src/interface.c:3655 msgid "" "This application supports only for Inscript type keymaps therefore no custom " "xkb keymaps can be created." msgstr "" #: ../src/interface.c:3681 msgid "" "This application supports saving the inscript keymaps using filename as " "\"locale_code-custom_name-inscript2.mim\" only. If you are planning to " "change the default keymap name then use only this pattern." msgstr "" #. Don't need to show menus #. Create the menu items #: ../src/interface.c:10407 msgid "Open" msgstr "Відкрити" #: ../src/interface.c:10408 msgid "Open a Keymap that is not listed in a combobox" msgstr "Відкрити карту Ñимволів, Ñкої немає у ÑпиÑку" #: ../src/interface.c:10410 msgid "Save" msgstr "Зберегти" #: ../src/interface.c:10411 msgid "Save current state of loaded keymap to a new keymap" msgstr "" "Зберегти поточний Ñтан завантаженої розкладки до нового файла розкладки" #: ../src/interface.c:10414 msgid "Quit" msgstr "Вийти" #: ../src/interface.c:10416 msgid "Close iok application" msgstr "Завершити роботу програми iok" #: ../src/interface.c:10449 msgid "Reassign key value of some key to some other key" msgstr "Перепризначити Ñимвол певної клавіші на іншу клавішу" #: ../src/interface.c:10451 msgid "Swap" msgstr "ПомінÑти" #: ../src/interface.c:10453 msgid "Swap key values between any 2 keys in loaded keymap" msgstr "" "ПомінÑти міÑцÑми Ñимволи на будь-Ñких двох клавішах завантаженої розкладки" #. Don't need to show menus #. Create the menu items #: ../src/interface.c:10473 msgid "About" msgstr "Про програму" #: ../src/interface.c:10475 msgid "About iok application" msgstr "Про програму iok" #: ../src/interface.c:10491 msgid "Keymap" msgstr "Карта Ñимволів" #: ../src/interface.c:10494 msgid "Keys" msgstr "Клавіші" #: ../src/interface.c:10497 msgid "Help" msgstr "Довідка" #: ../src/interface.c:10682 msgid "Backspace" msgstr "Backspace" #: ../src/interface.c:10699 msgid "Tab" msgstr "Tab" #: ../src/interface.c:10792 msgid "Caps" msgstr "Caps" #: ../src/interface.c:10863 msgid "Enter" msgstr "Enter" #: ../src/interface.c:10879 ../src/interface.c:10944 msgid "Shift" msgstr "Shift" #: ../src/interface.c:10958 msgid "Space" msgstr "Пробіл" #: ../src/interface.c:10965 #, fuzzy msgid "Change to Extended layer Keyboard" msgstr "Змінити розкладку на англійÑьку" #: ../src/interface.c:10971 msgid "" "Select the language in which you want to write. This list contains keymaps " "in order as inscript then user defined then xkb and then any keymaps opened " "that are not default listed" msgstr "" "Виберіть мову, Ð·Ð°Ð¿Ð¸Ñ Ñкою ви будете здійÑнювати. У цьому ÑпиÑку міÑÑ‚Ñть " "розкладки у порÑдку абетки, потім розкладки кориÑтувача, потім розкладки " "xkb, а потім вÑÑ– відкриті розкладки, Ñких немає у типовому ÑпиÑку." #. TRANSLATORS: Replace this string with your names, one name per line. #: ../src/interface.c:12541 msgid "translator-credits" msgstr "Юрій Чорноіван " #: ../src/interface.c:12547 msgid "iok" msgstr "iok" #: ../src/interface.c:12548 msgid "GPLv2 or later\n" msgstr "GPL верÑÑ–Ñ— 2 або пізнішої\n" #: ../src/support.c:90 ../src/support.c:114 #, c-format msgid "Couldn't find pixmap file: %s" msgstr "Ðе вдалоÑÑ Ð·Ð½Ð°Ð¹Ñ‚Ð¸ файл зображеннÑ: %s" #~ msgid "to English" #~ msgstr "на англійÑьку" #~ msgid "English" #~ msgstr "англійÑьку" iok-2.1.3/po/bn_IN.po0000644000076400007640000001677611776460111011220 00000000000000# runab , 2012. #zanata msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2012-06-29 14:48+0530\n" "PO-Revision-Date: 2012-07-04 08:59-0400\n" "Last-Translator: runab \n" "Language-Team: Bengali (India)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Language: bn-IN\n" "Plural-Forms: nplurals=2; plural=(n != 1)\n" "X-Generator: Zanata 1.6.1\n" #: ../iok.desktop.in.h:1 msgid "Indic Onscreen Keyboard" msgstr "ইনà§à¦¡à¦¿à¦• অন-সà§à¦•à§à¦°à§€à¦¨ কি-বোরà§à¦¡" #: ../iok.desktop.in.h:2 msgid "Enter Indic characters with a virtual keyboard" msgstr "ভারà§à¦šà§à§Ÿà¦¾à¦² কি-বোরà§à¦¡à§‡à¦° সাহাযà§à¦¯à§‡ ভারতীয় ভাষার লিপি লিখà§à¦¨" #: ../src/interface.c:1987 msgid "" "This keymap file does not map uniquely to a keyboard and therefore cannot be" " displayed correctly" msgstr "" "à¦à¦‡ কি-মà§à¦¯à¦¾à¦ª ফাইলটি কোনো কি-মà§à¦¯à¦¾à¦ªà§‡à¦° সাথে যà§à¦•à§à¦¤ হয় না à¦à¦¬à¦‚ à¦à¦° ফলে à¦à¦Ÿà¦¿ সঠিকভাবে " "পà§à¦°à¦¦à¦°à§à¦¶à¦¨ করা যাবে না" #: ../src/interface.c:3180 msgid "Select the language in which you want to write" msgstr "লেখার জনà§à¦¯ বà§à¦¯à¦¬à¦¹à¦¾à¦° করতে ইচà§à¦›à§à¦• ভাষা নিরà§à¦¬à¦¾à¦šà¦¨ করà§à¦¨" #: ../src/interface.c:3182 ../src/interface.c:10955 msgid "Change to English Keyboard" msgstr "ইংরাজি কি-বোরà§à¦¡à§‡ পরিবরà§à¦¤à¦¨ করà§à¦¨" #: ../src/interface.c:3255 msgid "ReassignKey" msgstr "কি-র মান পরিবরà§à¦¤à¦¨" #: ../src/interface.c:3265 msgid "Reassign Keyvalue of Key" msgstr "চিহà§à¦¨à¦¿à¦¤ কি-র মান" #: ../src/interface.c:3276 msgid "to another Key" msgstr "অনà§à¦¯ à¦à¦•টি কি-র মধà§à¦¯ নিরà§à¦§à¦¾à¦°à¦£ করà§à¦¨" #. Don't need to show menus #. Create the menu items #: ../src/interface.c:3291 ../src/interface.c:10447 msgid "Reassign" msgstr "পà§à¦¨à¦°à¦¾à§Ÿ মান নিরà§à¦§à¦¾à¦°à¦£" #: ../src/interface.c:3295 msgid "Cancel" msgstr "বাতিল" #: ../src/interface.c:3586 msgid "Open Keymap File" msgstr "কি-মà§à¦¯à¦¾à¦ª ফাইল খà§à¦²à§à¦¨" #: ../src/interface.c:3636 msgid "Write to Keymap File" msgstr "কি-মà§à¦¯à¦¾à¦ª ফাইল লিখà§à¦¨" #: ../src/interface.c:3655 msgid "" "This application supports only for Inscript type keymaps therefore no custom" " xkb keymaps can be created." msgstr "" "à¦à¦‡ অà§à¦¯à¦¾à¦ªà§à¦²à¦¿à¦•েশনে শà§à¦§à§à¦®à¦¾à¦¤à§à¦° Inscript-র ধরনের কি-মà§à¦¯à¦¾à¦ª সমরà§à¦¥à¦¿à¦¤ হয় যার ফলে à¦à¦° " "জনà§à¦¯ সà§à¦¬à¦¨à¦¿à¦°à§à¦§à¦¾à¦°à¦¿à¦¤ xkb কি-মà§à¦¯à¦¾à¦ª তৈরি করা যাবে না।" #: ../src/interface.c:3681 msgid "" "This application supports saving the inscript keymaps using filename as " "\"locale_code-custom_name-inscript2.mim\" only. If you are planning to " "change the default keymap name then use only this pattern." msgstr "" "à¦à¦‡ অà§à¦¯à¦¾à¦ªà§à¦²à¦¿à¦•েশনে inscript কি-মà§à¦¯à¦¾à¦ª ফাইলগà§à¦²à¦¿ শà§à¦§à§à¦®à¦¾à¦¤à§à¦° \"locale_code-" "custom_name-inscript2.mim\" বিনà§à¦¯à¦¾à¦¸à§‡ সংরকà§à¦·à¦£ করা যাবে। ডিফলà§à¦Ÿ কি-মà§à¦¯à¦¾à¦ªà§‡à¦° নাম" " পরিবরà§à¦¤à¦¨ করতে ইচà§à¦›à§à¦• হলে শà§à¦§à§à¦®à¦¾à¦¤à§à¦° à¦à¦‡ বিনà§à¦¯à¦¾à¦¸ বà§à¦¯à¦¬à¦¹à¦¾à¦° করা যাবে।" #. Don't need to show menus #. Create the menu items #: ../src/interface.c:10407 msgid "Open" msgstr "খà§à¦²à§à¦¨" #: ../src/interface.c:10408 msgid "Open a Keymap that is not listed in a combobox" msgstr "কমà§à¦¬à§‹-বকà§à¦¸à§‡à¦° মধà§à¦¯à§‡ তালিকাভà§à¦•à§à¦¤ না হওয়া à¦à¦•টি কি-মà§à¦¯à¦¾à¦ª খà§à¦²à§à¦¨" #: ../src/interface.c:10410 msgid "Save" msgstr "সংরকà§à¦·à¦£ করà§à¦¨" #: ../src/interface.c:10411 msgid "Save current state of loaded keymap to a new keymap" msgstr "লোড করা কি-মà§à¦¯à¦¾à¦ªà§‡à¦° বরà§à¦¤à¦®à¦¾à¦¨ অবসà§à¦¥à¦¾ à¦à¦•টি নতà§à¦¨ কি-মà§à¦¯à¦¾à¦ªà§‡ সংরকà§à¦·à¦£ করা হবে" #: ../src/interface.c:10414 msgid "Quit" msgstr "পà§à¦°à¦¸à§à¦¥à¦¾à¦¨" #: ../src/interface.c:10416 msgid "Close iok application" msgstr "iok অà§à¦¯à¦¾à¦ªà§à¦²à¦¿à¦•েশন বনà§à¦§ করà§à¦¨" #: ../src/interface.c:10449 msgid "Reassign key value of some key to some other key" msgstr "কোনো কি-র মান অনà§à¦¯ à¦à¦•টি কি-র জনà§à¦¯ ধারà§à¦¯ করà§à¦¨" #: ../src/interface.c:10451 msgid "Swap" msgstr "অদল-বদল" #: ../src/interface.c:10453 msgid "Swap key values between any 2 keys in loaded keymap" msgstr "লোড করা কি-মà§à¦¯à¦¾à¦ªà§‡à¦° যে কোনো দà§à¦Ÿà¦¿ কি-র মান অদল-বদল করà§à¦¨" #. Don't need to show menus #. Create the menu items #: ../src/interface.c:10473 msgid "About" msgstr "পরিচিতি" #: ../src/interface.c:10475 msgid "About iok application" msgstr "iok অà§à¦¯à¦¾à¦ªà§à¦²à¦¿à¦•েশন পরিচিতি" #: ../src/interface.c:10491 msgid "Keymap" msgstr "কি-মà§à¦¯à¦¾à¦ª" #: ../src/interface.c:10494 msgid "Keys" msgstr "কি" #: ../src/interface.c:10497 msgid "Help" msgstr "সাহাযà§à¦¯" #: ../src/interface.c:10682 msgid "Backspace" msgstr "Backspace" #: ../src/interface.c:10699 msgid "Tab" msgstr "Tab" #: ../src/interface.c:10792 msgid "Caps" msgstr "Caps" #: ../src/interface.c:10863 msgid "Enter" msgstr "Enter" #: ../src/interface.c:10879 ../src/interface.c:10944 msgid "Shift" msgstr "Shift" #: ../src/interface.c:10958 msgid "Space" msgstr "Space" #: ../src/interface.c:10965 msgid "Change to Extended layer Keyboard" msgstr "পà§à¦°à¦¸à¦¾à¦°à¦¿à¦¤ অরà§à¦¥à¦¾à§Ž à¦à¦•à§à¦¸à¦Ÿà§‡à¦¨à§à¦¡à§‡à¦¡ সà§à¦¤à¦°à§‡à¦° কি-বোরà§à¦¡à§‡ পরিবরà§à¦¤à¦¨ করà§à¦¨" #: ../src/interface.c:10971 msgid "" "Select the language in which you want to write. This list contains keymaps " "in order as inscript then user defined then xkb and then any keymaps opened " "that are not default listed" msgstr "" "যে ভাষায় লিখতে ইচà§à¦›à§à¦• সেই ভাষাটি নিরà§à¦¬à¦¾à¦šà¦¨ করà§à¦¨à¥¤ à¦à¦‡ তালিকায় উপসà§à¦¥à¦¿à¦¤ " "কি-মà§à¦¯à¦¾à¦ªà¦—à§à¦²à¦¿à¦° কà§à¦·à§‡à¦¤à§à¦°à§‡ বà§à¦¯à¦¬à¦¹à§ƒà¦¤ অনà§à¦•à§à¦°à¦® হল: ইনসসà§à¦•à§à¦°à¦¿à¦ªà§à¦Ÿ (inscript), " "বà§à¦¯à¦¬à¦¹à¦¾à¦°à¦•ারী নিরà§à¦§à¦¾à¦°à¦¿à¦¤, xkb ও অবশেষে ডিফলà§à¦Ÿà¦°à§‚পে তালিকাভà§à¦•à§à¦¤ না করা খোলা " "কি-মà§à¦¯à¦¾à¦ªà¥¤" #. TRANSLATORS: Replace this string with your names, one name per line. #: ../src/interface.c:12541 msgid "translator-credits" msgstr "রà§à¦£à¦¾ ভটà§à¦Ÿà¦¾à¦šà¦¾à¦°à§à¦¯à§à¦¯ সঙà§à¦•রà§à¦·à¦£ মà§à¦–োপাধà§à¦¯à¦¾à§Ÿ" #: ../src/interface.c:12547 msgid "iok" msgstr "iok" #: ../src/interface.c:12548 msgid "GPLv2 or later\n" msgstr "GPLv2 অথবা ঊরà§à¦§à§à¦¬à¦¤à¦¨\n" #: ../src/support.c:90 ../src/support.c:114 #, c-format msgid "Couldn't find pixmap file: %s" msgstr "পিকà§à¦¸-মà§à¦¯à¦¾à¦ª ফাইল পাওয়া যায়নি: %s" iok-2.1.3/po/ta.po0000644000076400007640000001551511776460111010625 00000000000000# translation of iok.trunk.ta.po to Tamil # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. # # I. Felix , 2009,2012. msgid "" msgstr "" "Project-Id-Version: iok.trunk.ta\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2012-06-29 14:48+0530\n" "PO-Revision-Date: 2012-03-28 10:40+0530\n" "Last-Translator: I. Felix \n" "Language-Team: Tamil \n" "Language: ta\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-Generator: KBabel 1.11.4\n" "Plural-Forms: nplurals=2; plural=(n!=1);\\n\n" "\n" "\n" "\n" "\n" #: ../iok.desktop.in.h:1 msgid "Indic Onscreen Keyboard" msgstr "இநà¯à®¤à®¿à®¯ ஆனà¯à®¸à¯à®•à¯à®°à¯€à®©à¯ விசைபà¯à®ªà®²à®•ை" #: ../iok.desktop.in.h:2 msgid "Enter Indic characters with a virtual keyboard" msgstr "இநà¯à®¤à®¿à®¯ எழà¯à®¤à¯à®¤à¯à®•à¯à®•ளை ஒர௠மெயà¯à®¨à®¿à®•ர௠விசைபà¯à®ªà®²à®•ையà¯à®Ÿà®©à¯ உளà¯à®³à®¿à®Ÿà®µà¯à®®à¯" #: ../src/interface.c:1987 msgid "" "This keymap file does not map uniquely to a keyboard and therefore cannot be " "displayed correctly" msgstr "" #: ../src/interface.c:3180 msgid "Select the language in which you want to write" msgstr "நீஙà¯à®•ள௠எழà¯à®¤à¯à®µà®¤à®±à¯à®•௠எநà¯à®¤ மொழி வேணà¯à®Ÿà¯à®®à¯†à®© தேரà¯à®¨à¯à®¤à¯†à®Ÿà¯à®•à¯à®•வà¯à®®à¯" #: ../src/interface.c:3182 ../src/interface.c:10955 msgid "Change to English Keyboard" msgstr "ஆஙà¯à®•ில விசைபà¯à®ªà®²à®•ைகà¯à®•௠மாறà¯à®±à®µà¯à®®à¯" #: ../src/interface.c:3255 msgid "ReassignKey" msgstr "மறà¯à®¨à®¿à®¯à®®à®¿à®•à¯à®•பà¯à®ªà®Ÿà¯à®Ÿ விசை" #: ../src/interface.c:3265 msgid "Reassign Keyvalue of Key" msgstr "விசையின௠விசைமதிபà¯à®ªà¯ˆ மறà¯à®¨à®¿à®¯à®®à®¿à®¤à¯à®¤à®²à¯" #: ../src/interface.c:3276 msgid "to another Key" msgstr "மறà¯à®±à¯Šà®°à¯ விசைகà¯à®•à¯" #. Don't need to show menus #. Create the menu items #: ../src/interface.c:3291 ../src/interface.c:10447 msgid "Reassign" msgstr "மறà¯à®¨à®¿à®¯à®®à®®à¯" #: ../src/interface.c:3295 msgid "Cancel" msgstr "ரதà¯à®¤à¯" #: ../src/interface.c:3586 msgid "Open Keymap File" msgstr "கீமேப௠கோபà¯à®ªà®¿à®©à¯ˆ திற" #: ../src/interface.c:3636 msgid "Write to Keymap File" msgstr "கீமேப௠கோபà¯à®ªà®¿à®²à¯ எழà¯à®¤à¯" #: ../src/interface.c:3655 msgid "" "This application supports only for Inscript type keymaps therefore no custom " "xkb keymaps can be created." msgstr "" #: ../src/interface.c:3681 msgid "" "This application supports saving the inscript keymaps using filename as " "\"locale_code-custom_name-inscript2.mim\" only. If you are planning to " "change the default keymap name then use only this pattern." msgstr "" #. Don't need to show menus #. Create the menu items #: ../src/interface.c:10407 msgid "Open" msgstr "திற" #: ../src/interface.c:10408 msgid "Open a Keymap that is not listed in a combobox" msgstr "காமà¯à®ªà¯‹ பெடà¯à®Ÿà®¿à®¯à®¿à®²à¯ படà¯à®Ÿà®¿à®¯à®²à®¿à®Ÿà®ªà¯à®ªà®Ÿà®¾à®¤ ஒர௠கீமேபà¯à®ªà¯ˆ திற" #: ../src/interface.c:10410 msgid "Save" msgstr "சேமி" #: ../src/interface.c:10411 msgid "Save current state of loaded keymap to a new keymap" msgstr "à®à®±à¯à®±à®ªà¯à®ªà®Ÿà¯à®Ÿ நடபà¯à®ªà¯ நிலை கீமேபà¯à®ªà¯ˆ பà¯à®¤à®¿à®¯ கீமேபà¯à®ªà®¾à®²à¯ சேமி" #: ../src/interface.c:10414 msgid "Quit" msgstr "வெளியேறà¯" #: ../src/interface.c:10416 msgid "Close iok application" msgstr "iok பயனà¯à®ªà®¾à®Ÿà¯à®Ÿà¯ˆ மூடவà¯à®®à¯" #: ../src/interface.c:10449 msgid "Reassign key value of some key to some other key" msgstr "சில விசையின௠விசை மதிபà¯à®ªà¯ˆ வேற௠சிர விசைகà¯à®•௠மீணà¯à®Ÿà¯à®®à¯ ஒதà¯à®•à¯à®•à¯" #: ../src/interface.c:10451 msgid "Swap" msgstr "தà¯à®Ÿà¯ˆà®¤à¯à®¤à®²à¯" #: ../src/interface.c:10453 msgid "Swap key values between any 2 keys in loaded keymap" msgstr "à®à®±à¯à®±à®ªà¯à®ªà®Ÿà¯à®Ÿ கீமேபà¯à®ªà®¿à®²à¯à®®à¯ எநà¯à®¤ 2 விசைகளà¯à®•à¯à®•ிடையேயà¯à®®à¯ மாறà¯à®±à¯ விசை மதிபà¯à®ªà¯à®•ளà¯" #. Don't need to show menus #. Create the menu items #: ../src/interface.c:10473 msgid "About" msgstr "பறà¯à®±à®¿" #: ../src/interface.c:10475 msgid "About iok application" msgstr "iok பயனà¯à®ªà®¾à®Ÿà¯ பறà¯à®±à®¿" #: ../src/interface.c:10491 msgid "Keymap" msgstr "கீமேபà¯" #: ../src/interface.c:10494 msgid "Keys" msgstr "விசைகளà¯" #: ../src/interface.c:10497 msgid "Help" msgstr "உதவி" #: ../src/interface.c:10682 msgid "Backspace" msgstr "Backspace" #: ../src/interface.c:10699 msgid "Tab" msgstr "Tab" #: ../src/interface.c:10792 msgid "Caps" msgstr "Caps " #: ../src/interface.c:10863 msgid "Enter" msgstr "Enter" #: ../src/interface.c:10879 ../src/interface.c:10944 msgid "Shift" msgstr "Shift" #: ../src/interface.c:10958 msgid "Space" msgstr "இடைவெளி" #: ../src/interface.c:10965 msgid "Change to Extended layer Keyboard" msgstr "விரிவாகà¯à®•பà¯à®ªà®Ÿà¯à®Ÿ அடà¯à®•à¯à®•௠விசைபà¯à®ªà®²à®•ைகà¯à®•௠மாறà¯à®±à®µà¯à®®à¯" #: ../src/interface.c:10971 msgid "" "Select the language in which you want to write. This list contains keymaps " "in order as inscript then user defined then xkb and then any keymaps opened " "that are not default listed" msgstr "" "நீஙà¯à®•ள௠எழà¯à®¤ வேணà¯à®Ÿà®¿à®¯ மொழியை தேரà¯à®¨à¯à®¤à¯†à®Ÿà¯à®•à¯à®•வà¯à®®à¯. இநà¯à®¤ படà¯à®Ÿà®¿à®¯à®²à¯ கீமேபà¯à®•ளின௠வரிசையை இனà¯à®¸à¯à®•ிரிபà¯à®Ÿà¯ " "பின௠பயனர௠கà¯à®±à®¿à®ªà¯à®ªà®¿à®Ÿà¯à®®à¯ xkb என கொணà¯à®Ÿà®¿à®°à¯à®•à¯à®•à¯à®®à¯ பின௠திறகà¯à®•பà¯à®ªà®Ÿà¯à®Ÿ கீமேபà¯à®•ள௠மà¯à®©à¯à®©à®¿à®°à¯à®ªà¯à®ªà®¾à®• " "படà¯à®Ÿà®¿à®¯à®²à®¿à®Ÿà®ªà¯à®ªà®Ÿà®¾à®¤à¯" #. TRANSLATORS: Replace this string with your names, one name per line. #: ../src/interface.c:12541 msgid "translator-credits" msgstr "I. Felix " #: ../src/interface.c:12547 msgid "iok" msgstr "iok" #: ../src/interface.c:12548 msgid "GPLv2 or later\n" msgstr "GPLv2 அலà¯à®²à®¤à¯ பினà¯à®©à®°à¯\n" #: ../src/support.c:90 ../src/support.c:114 #, c-format msgid "Couldn't find pixmap file: %s" msgstr "pixmap கோபà¯à®ªà®¿à®©à¯ˆ காண à®®à¯à®Ÿà®¿à®¯à®µà®¿à®²à¯à®²à¯ˆ: %s" #~ msgid "to English" #~ msgstr "ஆஙà¯à®•ிலதà¯à®¤à®¿à®±à¯à®•à¯" #~ msgid "English" #~ msgstr "ஆஙà¯à®•ிலமà¯" iok-2.1.3/po/hu.po0000644000076400007640000001237611776460111010637 00000000000000# Translation of the iok.trunk - Indic Onscreen Keyboard tool. # Copyright (C) 2009 Fedora Project # This file is distributed under the same license as the IOK package. # Zoltan Hoppar , 2009. # msgid "" msgstr "" "Project-Id-Version: IOK\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2012-06-29 14:48+0530\n" "PO-Revision-Date: 2009-09-17 04:15+0100\n" "Last-Translator: Zoltan Hoppar \n" "Language-Team: Hungarian Fedora Translation Group \n" "Language: \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=utf-8\n" "Content-Transfer-Encoding: 8bit\n" #: ../iok.desktop.in.h:1 msgid "Indic Onscreen Keyboard" msgstr "Indiai Virtuális Billetyűzet" #: ../iok.desktop.in.h:2 msgid "Enter Indic characters with a virtual keyboard" msgstr "Indiai karakterek bevitele egy virtuális billentyűzet segítségével" #: ../src/interface.c:1987 msgid "" "This keymap file does not map uniquely to a keyboard and therefore cannot be " "displayed correctly" msgstr "" #: ../src/interface.c:3180 msgid "Select the language in which you want to write" msgstr "Válasszon egy nyelvet melyen írni kíván" #: ../src/interface.c:3182 ../src/interface.c:10955 msgid "Change to English Keyboard" msgstr "Váltás angol billentyűzetre" #: ../src/interface.c:3255 msgid "ReassignKey" msgstr "Billentyű összerendelése" #: ../src/interface.c:3265 msgid "Reassign Keyvalue of Key" msgstr "Billentyű értékének újrameghatározása" #: ../src/interface.c:3276 msgid "to another Key" msgstr "másik billentyűre" #. Don't need to show menus #. Create the menu items #: ../src/interface.c:3291 ../src/interface.c:10447 msgid "Reassign" msgstr "Összekötés" #: ../src/interface.c:3295 msgid "Cancel" msgstr "Mégsem" #: ../src/interface.c:3586 msgid "Open Keymap File" msgstr "Bill. kiosztás fájl megnyitása" #: ../src/interface.c:3636 msgid "Write to Keymap File" msgstr "Rögzítés bill.kiosztás fájlba" #: ../src/interface.c:3655 msgid "" "This application supports only for Inscript type keymaps therefore no custom " "xkb keymaps can be created." msgstr "" #: ../src/interface.c:3681 msgid "" "This application supports saving the inscript keymaps using filename as " "\"locale_code-custom_name-inscript2.mim\" only. If you are planning to " "change the default keymap name then use only this pattern." msgstr "" #. Don't need to show menus #. Create the menu items #: ../src/interface.c:10407 msgid "Open" msgstr "Megnyitás" #: ../src/interface.c:10408 msgid "Open a Keymap that is not listed in a combobox" msgstr "Kiosztás megnyitása ami nincs a listában" #: ../src/interface.c:10410 msgid "Save" msgstr "Mentés" #: ../src/interface.c:10411 msgid "Save current state of loaded keymap to a new keymap" msgstr "Jelenlegi bill.kiosztás állapot mentése egy új kiosztásba" #: ../src/interface.c:10414 msgid "Quit" msgstr "Kilépés" #: ../src/interface.c:10416 msgid "Close iok application" msgstr "IOK alkalmazás bezárása" #: ../src/interface.c:10449 msgid "Reassign key value of some key to some other key" msgstr "Néhány bill. értékének megváltoztatása másik billentyűre" #: ../src/interface.c:10451 msgid "Swap" msgstr "Felcserélés" #: ../src/interface.c:10453 msgid "Swap key values between any 2 keys in loaded keymap" msgstr "Bill. értékek felcserélése bármely 2 billetyű között a kiosztásban" #. Don't need to show menus #. Create the menu items #: ../src/interface.c:10473 msgid "About" msgstr "Programról" #: ../src/interface.c:10475 msgid "About iok application" msgstr "Az IOK alkalmazásról" #: ../src/interface.c:10491 msgid "Keymap" msgstr "Kiosztás" #: ../src/interface.c:10494 msgid "Keys" msgstr "Billenytűk" #: ../src/interface.c:10497 msgid "Help" msgstr "Súgó" #: ../src/interface.c:10682 msgid "Backspace" msgstr "Törlés" #: ../src/interface.c:10699 msgid "Tab" msgstr "Tab" #: ../src/interface.c:10792 msgid "Caps" msgstr "Nagybetű" #: ../src/interface.c:10863 msgid "Enter" msgstr "Enter" #: ../src/interface.c:10879 ../src/interface.c:10944 msgid "Shift" msgstr "Shift" #: ../src/interface.c:10958 msgid "Space" msgstr "Szóköz" #: ../src/interface.c:10965 #, fuzzy msgid "Change to Extended layer Keyboard" msgstr "Váltás angol billentyűzetre" #: ../src/interface.c:10971 msgid "" "Select the language in which you want to write. This list contains keymaps " "in order as inscript then user defined then xkb and then any keymaps opened " "that are not default listed" msgstr "" "Válassza ki a nyelvet amelyen írni szeretne. Ez a lista tartalmazza a " "kiosztásokat az inscript szerint, ezt követik a felhasználó által " "meghatározottak, végül az xkb és további kiosztások, melyek nem szerepelnek " "a listában alapértelmezésben." #. TRANSLATORS: Replace this string with your names, one name per line. #: ../src/interface.c:12541 msgid "translator-credits" msgstr "Hoppár Zoltán " #: ../src/interface.c:12547 msgid "iok" msgstr "IOK" #: ../src/interface.c:12548 msgid "GPLv2 or later\n" msgstr "GPL v2 vagy késÅ‘bbiek\n" #: ../src/support.c:90 ../src/support.c:114 #, c-format msgid "Couldn't find pixmap file: %s" msgstr "Képfájl nem található: %s" #~ msgid "to English" #~ msgstr "angolra" #~ msgid "English" #~ msgstr "angol" iok-2.1.3/po/doi.po0000644000076400007640000001425411776460111010773 00000000000000# SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. # FIRST AUTHOR , YEAR. # #, fuzzy msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2012-06-29 14:48+0530\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: Dogri \n" "Language: \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=utf-8\n" "Content-Transfer-Encoding: 8bit\n" #: ../iok.desktop.in.h:1 msgid "Indic Onscreen Keyboard" msgstr "इंडिक ऑनसà¥à¤•à¥à¤°à¥€à¤¨ कà¥à¤‚जीपट" #: ../iok.desktop.in.h:2 msgid "Enter Indic characters with a virtual keyboard" msgstr "वरà¥à¤šà¥à¤…ल कà¥à¤‚जीपट से भारतीय वरà¥à¤£ दाखिल करें" #: ../src/interface.c:1987 msgid "" "This keymap file does not map uniquely to a keyboard and therefore cannot be " "displayed correctly" msgstr "" #: ../src/interface.c:3180 msgid "Select the language in which you want to write" msgstr "वह भाषा चà¥à¤¨à¥‡à¤‚ जिसमें आप लिखना चाहते हैं" #: ../src/interface.c:3182 ../src/interface.c:10955 msgid "Change to English Keyboard" msgstr "अंगà¥à¤°à¥‡à¤œà¥€ कà¥à¤‚जीपट में बदलें" #: ../src/interface.c:3255 msgid "ReassignKey" msgstr "कà¥à¤‚जी फिर नियत करें" #: ../src/interface.c:3265 msgid "Reassign Keyvalue of Key" msgstr "कà¥à¤‚जी का कà¥à¤‚जीमान फिर नियत करें" #: ../src/interface.c:3276 msgid "to another Key" msgstr "किसी दूसरे कà¥à¤‚जी में" #. Don't need to show menus #. Create the menu items #: ../src/interface.c:3291 ../src/interface.c:10447 msgid "Reassign" msgstr "फिर नियत करें" #: ../src/interface.c:3295 msgid "Cancel" msgstr "रदà¥à¤¦ करें" #: ../src/interface.c:3586 msgid "Open Keymap File" msgstr "कà¥à¤‚जी मैप फाइल खोलें" #: ../src/interface.c:3636 msgid "Write to Keymap File" msgstr "कà¥à¤‚जीमैप फाइल में लिखें" #: ../src/interface.c:3655 msgid "" "This application supports only for Inscript type keymaps therefore no custom " "xkb keymaps can be created." msgstr "" #: ../src/interface.c:3681 msgid "" "This application supports saving the inscript keymaps using filename as " "\"locale_code-custom_name-inscript2.mim\" only. If you are planning to " "change the default keymap name then use only this pattern." msgstr "" #. Don't need to show menus #. Create the menu items #: ../src/interface.c:10407 msgid "Open" msgstr "खोलें" #: ../src/interface.c:10408 msgid "Open a Keymap that is not listed in a combobox" msgstr "कोई कà¥à¤‚जी मानचितà¥à¤° खोलें जो कि कोंबो बॉकà¥à¤¸ में सूचीबदà¥à¤§ नहीं है" #: ../src/interface.c:10410 msgid "Save" msgstr "सहेजें" #: ../src/interface.c:10411 msgid "Save current state of loaded keymap to a new keymap" msgstr "किसी नये कà¥à¤‚जी मानचितà¥à¤° में लोड किठकà¥à¤‚जीमानचितà¥à¤° की मौजूदा सà¥à¤¥à¤¿à¤¤à¤¿ सहेजें" #: ../src/interface.c:10414 msgid "Quit" msgstr "बाहर" #: ../src/interface.c:10416 msgid "Close iok application" msgstr "iok अनà¥à¤ªà¥à¤°à¤¯à¥‹à¤— चà¥à¤¨à¥‡à¤‚" #: ../src/interface.c:10449 msgid "Reassign key value of some key to some other key" msgstr "कà¥à¤› दूसरे कà¥à¤‚जी में कà¥à¤› कà¥à¤‚जी के कà¥à¤‚जी मान फिर नियत करें" #: ../src/interface.c:10451 msgid "Swap" msgstr "सà¥à¤µà¥ˆà¤ª करें" #: ../src/interface.c:10453 msgid "Swap key values between any 2 keys in loaded keymap" msgstr "किसी 2 कà¥à¤‚जी के बीच लोडेड कà¥à¤‚जीमानचितà¥à¤° में कà¥à¤‚जी मान सà¥à¤µà¥ˆà¤ª करें" #. Don't need to show menus #. Create the menu items #: ../src/interface.c:10473 msgid "About" msgstr "परिचय" #: ../src/interface.c:10475 msgid "About iok application" msgstr "iok अनà¥à¤ªà¥à¤°à¤¯à¥‹à¤— का परिचय" #: ../src/interface.c:10491 msgid "Keymap" msgstr "कà¥à¤‚जी मानचितà¥à¤°" #: ../src/interface.c:10494 msgid "Keys" msgstr "कà¥à¤‚जी" #: ../src/interface.c:10497 msgid "Help" msgstr "मदद" #: ../src/interface.c:10682 msgid "Backspace" msgstr "Backspace" #: ../src/interface.c:10699 msgid "Tab" msgstr "Tab" #: ../src/interface.c:10792 msgid "Caps" msgstr "Caps" #: ../src/interface.c:10863 msgid "Enter" msgstr "Enter" #: ../src/interface.c:10879 ../src/interface.c:10944 msgid "Shift" msgstr "Shift" #: ../src/interface.c:10958 msgid "Space" msgstr "Space" #: ../src/interface.c:10965 msgid "Change to Extended layer Keyboard" msgstr "विसà¥à¤¤à¤¾à¤°à¤¿à¤¤ लेयर कà¥à¤‚जीपट में बदलें" #: ../src/interface.c:10971 msgid "" "Select the language in which you want to write. This list contains keymaps " "in order as inscript then user defined then xkb and then any keymaps opened " "that are not default listed" msgstr "" "वह भाषा चà¥à¤¨à¥‡à¤‚ जिसमें आप लिखना चाहते हैं. यह सूची inscript रूप में कà¥à¤‚जीमानचितà¥à¤° समाहित करती " "है बनिसà¥à¤ªà¤¤ xkb पर परिभाषित के अलावा और कà¥à¤‚जी मानचितà¥à¤° खà¥à¤²à¤¾ है जो कि तयशà¥à¤¦à¤¾ रूप से " "सूचीबदà¥à¤§ नहीं है" #. TRANSLATORS: Replace this string with your names, one name per line. #: ../src/interface.c:12541 msgid "translator-credits" msgstr "" #: ../src/interface.c:12547 msgid "iok" msgstr "" #: ../src/interface.c:12548 msgid "GPLv2 or later\n" msgstr "" #: ../src/support.c:90 ../src/support.c:114 #, c-format msgid "Couldn't find pixmap file: %s" msgstr "" iok-2.1.3/po/sr@latin.po0000644000076400007640000001055711776460111011776 00000000000000# Serbian(Latin) translations for iok # Copyright (C) 2008 Parag Nemade # This file is distributed under the same license as the iok package. # MiloÅ¡ KomarÄević , 2010. # msgid "" msgstr "" "Project-Id-Version: iok\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2012-06-29 14:48+0530\n" "PO-Revision-Date: 2010-02-17 20:36+0100\n" "Last-Translator: MiloÅ¡ KomarÄević \n" "Language-Team: Serbian \n" "Language: sr\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n" "%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" #: ../iok.desktop.in.h:1 msgid "Indic Onscreen Keyboard" msgstr "" #: ../iok.desktop.in.h:2 msgid "Enter Indic characters with a virtual keyboard" msgstr "" #: ../src/interface.c:1987 msgid "" "This keymap file does not map uniquely to a keyboard and therefore cannot be " "displayed correctly" msgstr "" #: ../src/interface.c:3180 msgid "Select the language in which you want to write" msgstr "Izaberite jezik na kome želite da piÅ¡ete" #: ../src/interface.c:3182 ../src/interface.c:10955 msgid "Change to English Keyboard" msgstr "Promeni na englesku tastaturu" #: ../src/interface.c:3255 msgid "ReassignKey" msgstr "" #: ../src/interface.c:3265 msgid "Reassign Keyvalue of Key" msgstr "" #: ../src/interface.c:3276 msgid "to another Key" msgstr "" #. Don't need to show menus #. Create the menu items #: ../src/interface.c:3291 ../src/interface.c:10447 msgid "Reassign" msgstr "" #: ../src/interface.c:3295 msgid "Cancel" msgstr "Otkaži" #: ../src/interface.c:3586 msgid "Open Keymap File" msgstr "" #: ../src/interface.c:3636 msgid "Write to Keymap File" msgstr "" #: ../src/interface.c:3655 msgid "" "This application supports only for Inscript type keymaps therefore no custom " "xkb keymaps can be created." msgstr "" #: ../src/interface.c:3681 msgid "" "This application supports saving the inscript keymaps using filename as " "\"locale_code-custom_name-inscript2.mim\" only. If you are planning to " "change the default keymap name then use only this pattern." msgstr "" #. Don't need to show menus #. Create the menu items #: ../src/interface.c:10407 msgid "Open" msgstr "Otvori" #: ../src/interface.c:10408 msgid "Open a Keymap that is not listed in a combobox" msgstr "" #: ../src/interface.c:10410 msgid "Save" msgstr "SaÄuvaj" #: ../src/interface.c:10411 msgid "Save current state of loaded keymap to a new keymap" msgstr "" #: ../src/interface.c:10414 msgid "Quit" msgstr "" #: ../src/interface.c:10416 msgid "Close iok application" msgstr "Zatvori program iok" #: ../src/interface.c:10449 msgid "Reassign key value of some key to some other key" msgstr "" #: ../src/interface.c:10451 msgid "Swap" msgstr "Zameni" #: ../src/interface.c:10453 msgid "Swap key values between any 2 keys in loaded keymap" msgstr "" #. Don't need to show menus #. Create the menu items #: ../src/interface.c:10473 msgid "About" msgstr "O programu" #: ../src/interface.c:10475 msgid "About iok application" msgstr "O programu iok" #: ../src/interface.c:10491 msgid "Keymap" msgstr "Raspored tastera" #: ../src/interface.c:10494 msgid "Keys" msgstr "Tasteri" #: ../src/interface.c:10497 msgid "Help" msgstr "Pomoć" #: ../src/interface.c:10682 msgid "Backspace" msgstr "" #: ../src/interface.c:10699 msgid "Tab" msgstr "" #: ../src/interface.c:10792 msgid "Caps" msgstr "" #: ../src/interface.c:10863 msgid "Enter" msgstr "" #: ../src/interface.c:10879 ../src/interface.c:10944 msgid "Shift" msgstr "" #: ../src/interface.c:10958 msgid "Space" msgstr "Razmak" #: ../src/interface.c:10965 #, fuzzy msgid "Change to Extended layer Keyboard" msgstr "Promeni na englesku tastaturu" #: ../src/interface.c:10971 msgid "" "Select the language in which you want to write. This list contains keymaps " "in order as inscript then user defined then xkb and then any keymaps opened " "that are not default listed" msgstr "" #. TRANSLATORS: Replace this string with your names, one name per line. #: ../src/interface.c:12541 msgid "translator-credits" msgstr "MiloÅ¡ KomarÄević" #: ../src/interface.c:12547 msgid "iok" msgstr "iok" #: ../src/interface.c:12548 msgid "GPLv2 or later\n" msgstr "GJLv2 ili kasnija\n" #: ../src/support.c:90 ../src/support.c:114 #, c-format msgid "Couldn't find pixmap file: %s" msgstr "" iok-2.1.3/po/nds.po0000644000076400007640000001227311776460111011003 00000000000000# Low German translation of iok # Copyright (C) 2008 iok # This file is distributed under the same license as the iok package. # Nils-Christoph Fiedler , 2010. # msgid "" msgstr "" "Project-Id-Version: iok\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2012-06-29 14:48+0530\n" "PO-Revision-Date: 2010-12-05 11:59+0100\n" "Last-Translator: Nils-Christoph Fiedler \n" "Language-Team: Low German \n" "Language: \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=utf-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Poedit-Language: Low German\n" #: ../iok.desktop.in.h:1 msgid "Indic Onscreen Keyboard" msgstr "Indisches Billschirmknöppboord" #: ../iok.desktop.in.h:2 msgid "Enter Indic characters with a virtual keyboard" msgstr "Indische Teken mit virtuellem Knöppboord entern" #: ../src/interface.c:1987 msgid "" "This keymap file does not map uniquely to a keyboard and therefore cannot be " "displayed correctly" msgstr "" #: ../src/interface.c:3180 msgid "Select the language in which you want to write" msgstr "Wähl de Sprak, in de je schrieven wullt." #: ../src/interface.c:3182 ../src/interface.c:10955 msgid "Change to English Keyboard" msgstr "To Engels Knöppboord wesseln" #: ../src/interface.c:3255 msgid "ReassignKey" msgstr "Wert ee'm Knopp towiesen" #: ../src/interface.c:3265 msgid "Reassign Keyvalue of Key" msgstr "Knoppwert ee'm Knopp towiesen" #: ../src/interface.c:3276 msgid "to another Key" msgstr "to e'em annern Slötel" #. Don't need to show menus #. Create the menu items #: ../src/interface.c:3291 ../src/interface.c:10447 msgid "Reassign" msgstr "Towiesen" #: ../src/interface.c:3295 msgid "Cancel" msgstr "Avbreken" #: ../src/interface.c:3586 msgid "Open Keymap File" msgstr "Knöppkoortdatei opmaken" #: ../src/interface.c:3636 msgid "Write to Keymap File" msgstr "In Knöppkoortdatei schrieven" #: ../src/interface.c:3655 msgid "" "This application supports only for Inscript type keymaps therefore no custom " "xkb keymaps can be created." msgstr "" #: ../src/interface.c:3681 msgid "" "This application supports saving the inscript keymaps using filename as " "\"locale_code-custom_name-inscript2.mim\" only. If you are planning to " "change the default keymap name then use only this pattern." msgstr "" #. Don't need to show menus #. Create the menu items #: ../src/interface.c:10407 msgid "Open" msgstr "opmaken" #: ../src/interface.c:10408 msgid "Open a Keymap that is not listed in a combobox" msgstr "Knöppkoort opmaken, de nich in de combobox steiht" #: ../src/interface.c:10410 msgid "Save" msgstr "Spiekern" #: ../src/interface.c:10411 msgid "Save current state of loaded keymap to a new keymap" msgstr "Aktuellen Tostand vun Knöppkoort to nejer Knöppkoort spiekern" #: ../src/interface.c:10414 msgid "Quit" msgstr "Sluten" #: ../src/interface.c:10416 msgid "Close iok application" msgstr "iok Programm sluten" #: ../src/interface.c:10449 msgid "Reassign key value of some key to some other key" msgstr "Knoppwert vun ee'm Knopp ee'm annern Knopp towiesen" #: ../src/interface.c:10451 msgid "Swap" msgstr "Swap" #: ../src/interface.c:10453 msgid "Swap key values between any 2 keys in loaded keymap" msgstr "Werte vun twej Knöppen wesseln" #. Don't need to show menus #. Create the menu items #: ../src/interface.c:10473 msgid "About" msgstr "Över" #: ../src/interface.c:10475 msgid "About iok application" msgstr "Över iok Programm" #: ../src/interface.c:10491 msgid "Keymap" msgstr "Knöppkoort" #: ../src/interface.c:10494 msgid "Keys" msgstr "knöppe" #: ../src/interface.c:10497 msgid "Help" msgstr "Hölp" #: ../src/interface.c:10682 msgid "Backspace" msgstr "Backspace" #: ../src/interface.c:10699 msgid "Tab" msgstr "Tab" #: ../src/interface.c:10792 msgid "Caps" msgstr "Caps" #: ../src/interface.c:10863 msgid "Enter" msgstr "Enter" #: ../src/interface.c:10879 ../src/interface.c:10944 msgid "Shift" msgstr "Shift" #: ../src/interface.c:10958 msgid "Space" msgstr "Leertaste" #: ../src/interface.c:10965 #, fuzzy msgid "Change to Extended layer Keyboard" msgstr "To Engels Knöppboord wesseln" #: ../src/interface.c:10971 msgid "" "Select the language in which you want to write. This list contains keymaps " "in order as inscript then user defined then xkb and then any keymaps opened " "that are not default listed" msgstr "" "Wähl de Sprak ut, in de je schrieven wullt. Düsse List beinhollt " "Knöppkoorten as inscript, Bruker defineert, xkb und annere." #. TRANSLATORS: Replace this string with your names, one name per line. #: ../src/interface.c:12541 msgid "translator-credits" msgstr "Nils-Christoph Fiedler " #: ../src/interface.c:12547 msgid "iok" msgstr "iok" #: ../src/interface.c:12548 msgid "GPLv2 or later\n" msgstr "GPLv2 or laater\n" #: ../src/support.c:90 ../src/support.c:114 #, c-format msgid "Couldn't find pixmap file: %s" msgstr "Künn pixmap Datei nich finnen: %s" #~ msgid "to English" #~ msgstr "nach Englisch" #, fuzzy #~ msgid "English" #~ msgstr "nach Englisch" #~ msgid "OpenMap" #~ msgstr "OpenMap" #~ msgid "WriteMap" #~ msgstr "SchreibeZuordnung" #~ msgid "swap_window" #~ msgstr "swap_window" iok-2.1.3/po/da.po0000644000076400007640000001200711776460111010576 00000000000000# Danish translation of iok # Copyright (C) 2010 # This file is distributed under the same license as the iok package. # Kris Thomsen , 2010. # msgid "" msgstr "" "Project-Id-Version: iok\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2012-06-29 14:48+0530\n" "PO-Revision-Date: 2010-02-06 14:45+0100\n" "Last-Translator: Kris Thomsen \n" "Language-Team: Danish \n" "Language: da\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" #: ../iok.desktop.in.h:1 msgid "Indic Onscreen Keyboard" msgstr "Indic skærmtastatur" #: ../iok.desktop.in.h:2 msgid "Enter Indic characters with a virtual keyboard" msgstr "Indtast Indic-karakterer med et virtuelt tastatur" #: ../src/interface.c:1987 msgid "" "This keymap file does not map uniquely to a keyboard and therefore cannot be " "displayed correctly" msgstr "" #: ../src/interface.c:3180 msgid "Select the language in which you want to write" msgstr "Vælg sproget som du ønsker at skrive i" #: ../src/interface.c:3182 ../src/interface.c:10955 msgid "Change to English Keyboard" msgstr "Skift til engelsk tastatur" #: ../src/interface.c:3255 msgid "ReassignKey" msgstr "OverflytTast" #: ../src/interface.c:3265 msgid "Reassign Keyvalue of Key" msgstr "Overflyt tasteværdi af tast" #: ../src/interface.c:3276 msgid "to another Key" msgstr "til en anden tast" #. Don't need to show menus #. Create the menu items #: ../src/interface.c:3291 ../src/interface.c:10447 msgid "Reassign" msgstr "Overflyt" #: ../src/interface.c:3295 msgid "Cancel" msgstr "Annullér" #: ../src/interface.c:3586 msgid "Open Keymap File" msgstr "Ã…ben tegnsætsfil" #: ../src/interface.c:3636 msgid "Write to Keymap File" msgstr "Skriv til tegnsætsfil" #: ../src/interface.c:3655 msgid "" "This application supports only for Inscript type keymaps therefore no custom " "xkb keymaps can be created." msgstr "" #: ../src/interface.c:3681 msgid "" "This application supports saving the inscript keymaps using filename as " "\"locale_code-custom_name-inscript2.mim\" only. If you are planning to " "change the default keymap name then use only this pattern." msgstr "" #. Don't need to show menus #. Create the menu items #: ../src/interface.c:10407 msgid "Open" msgstr "Ã…ben" #: ../src/interface.c:10408 msgid "Open a Keymap that is not listed in a combobox" msgstr "Ã…ben et tegnsæt som ikke er listet i en kombinationsboks" #: ../src/interface.c:10410 msgid "Save" msgstr "Gem" #: ../src/interface.c:10411 msgid "Save current state of loaded keymap to a new keymap" msgstr "Gem nuværende status af det indlæste tegnsæt til et nyt tegnsæt" #: ../src/interface.c:10414 msgid "Quit" msgstr "Afslut" #: ../src/interface.c:10416 msgid "Close iok application" msgstr "Luk iok-programmet" #: ../src/interface.c:10449 msgid "Reassign key value of some key to some other key" msgstr "Giv tasteværdi af en tast til en anden tast" #: ../src/interface.c:10451 msgid "Swap" msgstr "Ombyt" #: ../src/interface.c:10453 msgid "Swap key values between any 2 keys in loaded keymap" msgstr "Ombyt tasteværdier mellem to taster i det indlæste tegnsæt" #. Don't need to show menus #. Create the menu items #: ../src/interface.c:10473 msgid "About" msgstr "Om" #: ../src/interface.c:10475 msgid "About iok application" msgstr "Om iok-programmet" #: ../src/interface.c:10491 msgid "Keymap" msgstr "Tegnsæt" #: ../src/interface.c:10494 msgid "Keys" msgstr "Taster" #: ../src/interface.c:10497 msgid "Help" msgstr "Hjælp" #: ../src/interface.c:10682 msgid "Backspace" msgstr "Backspace" #: ../src/interface.c:10699 msgid "Tab" msgstr "Tabulator" #: ../src/interface.c:10792 msgid "Caps" msgstr "Caps" #: ../src/interface.c:10863 msgid "Enter" msgstr "Enter" #: ../src/interface.c:10879 ../src/interface.c:10944 msgid "Shift" msgstr "Shift" #: ../src/interface.c:10958 msgid "Space" msgstr "Mellemrum" #: ../src/interface.c:10965 #, fuzzy msgid "Change to Extended layer Keyboard" msgstr "Skift til engelsk tastatur" #: ../src/interface.c:10971 msgid "" "Select the language in which you want to write. This list contains keymaps " "in order as inscript then user defined then xkb and then any keymaps opened " "that are not default listed" msgstr "" "Vælg sproget som du ønsker at skrive i. Denne liste indeholder tegnsæt i " "rækkefølgen som i skriptet, derefter brugerdefinerede og til sidst alle " "Ã¥bnede tegnsæt som ikke er listet som standard" #. TRANSLATORS: Replace this string with your names, one name per line. #: ../src/interface.c:12541 msgid "translator-credits" msgstr "" "Kris Thomsen\n" "\n" "Dansk-gruppen \n" "Mere info: http://www.dansk-gruppen.dk" #: ../src/interface.c:12547 msgid "iok" msgstr "iok" #: ../src/interface.c:12548 msgid "GPLv2 or later\n" msgstr "GPLv2 eller senere\n" #: ../src/support.c:90 ../src/support.c:114 #, c-format msgid "Couldn't find pixmap file: %s" msgstr "Kunne ikke finde pixmap-fil: %s" #~ msgid "to English" #~ msgstr "til engelsk" #~ msgid "English" #~ msgstr "engelsk" iok-2.1.3/po/ja.po0000644000076400007640000001243011776460111010604 00000000000000# iok. # Copyright (C) 2009 # This file is distributed under the same license as the PACKAGE package. # Hyu_gabaru Ryu_ichi , 2009. # msgid "" msgstr "" "Project-Id-Version: 1.0\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2012-06-29 14:48+0530\n" "PO-Revision-Date: 2009-09-21 16:27+0900\n" "Last-Translator: Hyu_gabaru Ryu_ichi \n" "Language-Team: Japanese \n" "Language: ja\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" #: ../iok.desktop.in.h:1 msgid "Indic Onscreen Keyboard" msgstr "ç”»é¢ä¸Šã®ã‚­ãƒ¼ãƒœãƒ¼ãƒ‰ã®è¡¨æ„文字" #: ../iok.desktop.in.h:2 msgid "Enter Indic characters with a virtual keyboard" msgstr "仮想キーボードã§è¡¨æ„文字を入力ã—ã¦ãã ã•ã„" #: ../src/interface.c:1987 msgid "" "This keymap file does not map uniquely to a keyboard and therefore cannot be " "displayed correctly" msgstr "" #: ../src/interface.c:3180 msgid "Select the language in which you want to write" msgstr "書ããŸã„è¨€èªžã‚’é¸æŠžã—ã¦ãã ã•ã„" #: ../src/interface.c:3182 ../src/interface.c:10955 msgid "Change to English Keyboard" msgstr "英語キーボードã¸å¤‰æ›´ã™ã‚‹" #: ../src/interface.c:3255 msgid "ReassignKey" msgstr "å†å‰²å½“ã¦ã‚­ãƒ¼" #: ../src/interface.c:3265 msgid "Reassign Keyvalue of Key" msgstr "キーã«ã‚­ãƒ¼å€¤ã‚’å†å‰²å½“ã¦" #: ../src/interface.c:3276 msgid "to another Key" msgstr "ä»–ã®ã‚­ãƒ¼ã¸" #. Don't need to show menus #. Create the menu items #: ../src/interface.c:3291 ../src/interface.c:10447 msgid "Reassign" msgstr "å†å‰²å½“ã¦" #: ../src/interface.c:3295 msgid "Cancel" msgstr "キャンセル" #: ../src/interface.c:3586 msgid "Open Keymap File" msgstr "キー対応ファイルを開ã" #: ../src/interface.c:3636 msgid "Write to Keymap File" msgstr "ã‚­ãƒ¼å¯¾å¿œãƒ•ã‚¡ã‚¤ãƒ«ã«æ›¸ã" #: ../src/interface.c:3655 msgid "" "This application supports only for Inscript type keymaps therefore no custom " "xkb keymaps can be created." msgstr "" #: ../src/interface.c:3681 msgid "" "This application supports saving the inscript keymaps using filename as " "\"locale_code-custom_name-inscript2.mim\" only. If you are planning to " "change the default keymap name then use only this pattern." msgstr "" #. Don't need to show menus #. Create the menu items #: ../src/interface.c:10407 msgid "Open" msgstr "é–‹ã" #: ../src/interface.c:10408 msgid "Open a Keymap that is not listed in a combobox" msgstr "コンボボックスã«è¡¨ç¤ºã•れã¦ã„ãªã„キー割当ã¦ãƒ•ァイルを開ã" #: ../src/interface.c:10410 msgid "Save" msgstr "ä¿å­˜ã™ã‚‹" #: ../src/interface.c:10411 msgid "Save current state of loaded keymap to a new keymap" msgstr "ロードã•れãŸç¾åœ¨ã®ã‚­ãƒ¼å¯¾å¿œè¡¨ã‚’æ–°ã—ã„キー対応表ã«ä¿å­˜ã™ã‚‹" #: ../src/interface.c:10414 msgid "Quit" msgstr "終了ã™ã‚‹" #: ../src/interface.c:10416 msgid "Close iok application" msgstr "iok アプリケーションを閉ã˜ã‚‹" #: ../src/interface.c:10449 msgid "Reassign key value of some key to some other key" msgstr "ã‚るキーã®ã‚­ãƒ¼å€¤ã‚’ä»–ã®ã‚­ãƒ¼ã«å†å‰²å½“ã¦ã™ã‚‹" #: ../src/interface.c:10451 msgid "Swap" msgstr "交æ›" #: ../src/interface.c:10453 msgid "Swap key values between any 2 keys in loaded keymap" msgstr "ロードã•れãŸã‚­ãƒ¼å¯¾å¿œè¡¨ã®ä»»æ„ã® 2 ã¤ã®ã‚­ãƒ¼ã®ã‚­ãƒ¼å€¤ã‚’交æ›ã™ã‚‹" #. Don't need to show menus #. Create the menu items #: ../src/interface.c:10473 msgid "About" msgstr "ãƒãƒ¼ã‚¸ãƒ§ãƒ³æƒ…å ±" #: ../src/interface.c:10475 msgid "About iok application" msgstr "iok アプリケーションã®ãƒãƒ¼ã‚¸ãƒ§ãƒ³æƒ…å ±" #: ../src/interface.c:10491 msgid "Keymap" msgstr "キー対応表" #: ../src/interface.c:10494 msgid "Keys" msgstr "キー" #: ../src/interface.c:10497 msgid "Help" msgstr "ヘルプ" #: ../src/interface.c:10682 msgid "Backspace" msgstr "後退" #: ../src/interface.c:10699 msgid "Tab" msgstr "タブ" #: ../src/interface.c:10792 msgid "Caps" msgstr "大文字" #: ../src/interface.c:10863 msgid "Enter" msgstr "入力" #: ../src/interface.c:10879 ../src/interface.c:10944 msgid "Shift" msgstr "シフト" #: ../src/interface.c:10958 msgid "Space" msgstr "空白" #: ../src/interface.c:10965 #, fuzzy msgid "Change to Extended layer Keyboard" msgstr "英語キーボードã¸å¤‰æ›´ã™ã‚‹" #: ../src/interface.c:10971 msgid "" "Select the language in which you want to write. This list contains keymaps " "in order as inscript then user defined then xkb and then any keymaps opened " "that are not default listed" msgstr "" "書ããŸã„è¨€èªžã‚’é¸æŠžã—ã¦ãã ã•ã„。ã“ã®ä¸€è¦§ã¯ã‚¤ãƒ³ã‚¹ã‚¯ãƒªãƒ—トã‹ã‚‰ã€åˆ©ç”¨è€…定義ã€" "xkbã€çœç•¥æ™‚ã«ã¯è¡¨ç¤ºã•れãªã„é–‹ã„ãŸã‚­ãƒ¼å¯¾å¿œè¡¨ã®é †ã«ã‚­ãƒ¼å¯¾å¿œè¡¨ã‚’å«ã‚“ã§ã„ã¾ã™" #. TRANSLATORS: Replace this string with your names, one name per line. #: ../src/interface.c:12541 msgid "translator-credits" msgstr "æ—¥å‘原 é¾ä¸€ , 2009" #: ../src/interface.c:12547 msgid "iok" msgstr "iok" #: ../src/interface.c:12548 msgid "GPLv2 or later\n" msgstr "GPLv2 以é™\n" #: ../src/support.c:90 ../src/support.c:114 #, c-format msgid "Couldn't find pixmap file: %s" msgstr "pixmap ファイルãŒè¦‹ã¤ã‘られã¾ã›ã‚“: %s" #~ msgid "to English" #~ msgstr "英語ã«" #~ msgid "English" #~ msgstr "英語" iok-2.1.3/po/ca.po0000644000076400007640000001330211776460111010574 00000000000000# Catalan translation of iok by Softcatalà # Copyright (C) 2009 Free Software Foundation # This file is distributed under the same license as the liveusb-creator package. # Xavier Conde Rueda , 2009. # # This file is translated according to the glossary and style guide of # Softcatalà. If you plan to modify this file, please read first the page # of the Catalan translation team for the Fedora project at: # http://www.softcatala.org/projectes/fedora/ # and contact the previous translator. # # Aquest fitxer s'ha de traduir d'acord amb el recull de termes i la guia # d'estil de Softcatalà. Si voleu modificar aquest fitxer, llegiu si # us plau la pàgina de catalanització del projecte Fedora a: # http://www.softcatala.org/projectes/fedora/ # i contacteu l'anterior traductor/a. # msgid "" msgstr "" "Project-Id-Version: \n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2012-06-29 14:48+0530\n" "PO-Revision-Date: 2009-09-12 18:14+0100\n" "Last-Translator: Xavier Conde Rueda \n" "Language-Team: Catalan \n" "Language: ca\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=utf-8\n" "Content-Transfer-Encoding: 8bit\n" #: ../iok.desktop.in.h:1 msgid "Indic Onscreen Keyboard" msgstr "Teclat índic en pantalla" #: ../iok.desktop.in.h:2 msgid "Enter Indic characters with a virtual keyboard" msgstr "Introduïu caràcters índics amb un teclat virtual" #: ../src/interface.c:1987 msgid "" "This keymap file does not map uniquely to a keyboard and therefore cannot be " "displayed correctly" msgstr "" #: ../src/interface.c:3180 msgid "Select the language in which you want to write" msgstr "Seleccioneu l'idioma en què voleu escriure" #: ../src/interface.c:3182 ../src/interface.c:10955 msgid "Change to English Keyboard" msgstr "Canvia a teclat anglès" #: ../src/interface.c:3255 msgid "ReassignKey" msgstr "ReassignaTecla" #: ../src/interface.c:3265 msgid "Reassign Keyvalue of Key" msgstr "Reassigna el valor de la tecla" #: ../src/interface.c:3276 msgid "to another Key" msgstr "a una altra tecla" #. Don't need to show menus #. Create the menu items #: ../src/interface.c:3291 ../src/interface.c:10447 msgid "Reassign" msgstr "Reassigna" #: ../src/interface.c:3295 msgid "Cancel" msgstr "Cancel·la" #: ../src/interface.c:3586 msgid "Open Keymap File" msgstr "Obre el fitxer de mapa de tecles" #: ../src/interface.c:3636 msgid "Write to Keymap File" msgstr "Escriu al fitxer de mapa de tecles" #: ../src/interface.c:3655 msgid "" "This application supports only for Inscript type keymaps therefore no custom " "xkb keymaps can be created." msgstr "" #: ../src/interface.c:3681 msgid "" "This application supports saving the inscript keymaps using filename as " "\"locale_code-custom_name-inscript2.mim\" only. If you are planning to " "change the default keymap name then use only this pattern." msgstr "" #. Don't need to show menus #. Create the menu items #: ../src/interface.c:10407 msgid "Open" msgstr "Obre" #: ../src/interface.c:10408 msgid "Open a Keymap that is not listed in a combobox" msgstr "Obre un mapa de tecles que no estigui llistat a la caixa" #: ../src/interface.c:10410 msgid "Save" msgstr "Desa" #: ../src/interface.c:10411 msgid "Save current state of loaded keymap to a new keymap" msgstr "" "Desa l'estat actual del mapa de tecles carregat en un nou mapa de tecles" #: ../src/interface.c:10414 msgid "Quit" msgstr "Surt" #: ../src/interface.c:10416 msgid "Close iok application" msgstr "Tanca l'aplicació" #: ../src/interface.c:10449 msgid "Reassign key value of some key to some other key" msgstr "Reassigna el valor d'una tecla a una altra tecla" #: ../src/interface.c:10451 msgid "Swap" msgstr "Intercanvia" #: ../src/interface.c:10453 msgid "Swap key values between any 2 keys in loaded keymap" msgstr "Intercanvia els valors entre dues tecles en el mapa de tecles" #. Don't need to show menus #. Create the menu items #: ../src/interface.c:10473 msgid "About" msgstr "Quant a" #: ../src/interface.c:10475 msgid "About iok application" msgstr "Quant a l'iok" #: ../src/interface.c:10491 msgid "Keymap" msgstr "Mapa de tecles" #: ../src/interface.c:10494 msgid "Keys" msgstr "Tecles" #: ../src/interface.c:10497 msgid "Help" msgstr "Ajuda" #: ../src/interface.c:10682 msgid "Backspace" msgstr "Tecla de retrocès" #: ../src/interface.c:10699 msgid "Tab" msgstr "Tabulador" #: ../src/interface.c:10792 msgid "Caps" msgstr "Bloq maj" #: ../src/interface.c:10863 msgid "Enter" msgstr "Entrar" #: ../src/interface.c:10879 ../src/interface.c:10944 msgid "Shift" msgstr "Maj" #: ../src/interface.c:10958 msgid "Space" msgstr "Espai" #: ../src/interface.c:10965 #, fuzzy msgid "Change to Extended layer Keyboard" msgstr "Canvia a teclat anglès" #: ../src/interface.c:10971 msgid "" "Select the language in which you want to write. This list contains keymaps " "in order as inscript then user defined then xkb and then any keymaps opened " "that are not default listed" msgstr "" "Seleccioneu l'idioma en què voleu escriure. Aquesta llista conté mapes de " "tecles ordenats per alfabet, definit per l'usuari, per xkb i finalment " "qualsevol mapa de tecles oberts no llistats per defecte" #. TRANSLATORS: Replace this string with your names, one name per line. #: ../src/interface.c:12541 msgid "translator-credits" msgstr "Xavier Conde Rueda , 2009" #: ../src/interface.c:12547 msgid "iok" msgstr "iok" #: ../src/interface.c:12548 msgid "GPLv2 or later\n" msgstr "GPLv2 o posterior\n" #: ../src/support.c:90 ../src/support.c:114 #, c-format msgid "Couldn't find pixmap file: %s" msgstr "No s'ha trobat el fitxer mapa de píxels: %s" #~ msgid "to English" #~ msgstr "en anglès" #, fuzzy #~ msgid "English" #~ msgstr "en anglès" iok-2.1.3/po/gu.po0000644000076400007640000001571111776460111010632 00000000000000# swkothar , 2012. #zanata msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2012-06-29 14:48+0530\n" "PO-Revision-Date: 2012-07-05 04:11-0400\n" "Last-Translator: swkothar \n" "Language-Team: Gujarati\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Language: gu\n" "Plural-Forms: nplurals=2; plural=(n != 1)\n" "X-Generator: Zanata 1.6.1\n" #: ../iok.desktop.in.h:1 msgid "Indic Onscreen Keyboard" msgstr "ભારતીય ઓનસà«àª•à«àª°à«€àª¨ કિબોરà«àª¡" #: ../iok.desktop.in.h:2 msgid "Enter Indic characters with a virtual keyboard" msgstr "વરà«àªšà«àª¯à«àª…લ કિબોરà«àª¡ સાથે ભારતીય અકà«àª·àª°à«‹àª¨à«‡ દાખલ કરો" #: ../src/interface.c:1987 msgid "" "This keymap file does not map uniquely to a keyboard and therefore cannot be" " displayed correctly" msgstr "" "આ કીમેપ ફાઇલ કિબોરà«àª¡àª®àª¾àª‚ બંધબેસતી નથી અને માટે તે યોગà«àª¯ રીતે દરà«àª¶àª¾àªµà«€ શકાતૠ" "નથી" #: ../src/interface.c:3180 msgid "Select the language in which you want to write" msgstr "તમે જે ભાષામાં લખવા માંગતા હોય તે પસંદ કરો" #: ../src/interface.c:3182 ../src/interface.c:10955 msgid "Change to English Keyboard" msgstr "અંગà«àª°à«‡àªœà«€ કિબોરà«àª¡àª¨à«‡ બદલો" #: ../src/interface.c:3255 msgid "ReassignKey" msgstr "કી ફરીથી દાખલ કરો" #: ../src/interface.c:3265 msgid "Reassign Keyvalue of Key" msgstr "કીની કી કિંમતને ફરીથી દાખલ કરો" #: ../src/interface.c:3276 msgid "to another Key" msgstr "બીજી કીમા" #. Don't need to show menus #. Create the menu items #: ../src/interface.c:3291 ../src/interface.c:10447 msgid "Reassign" msgstr "ફરીથી દાખલ કરો" #: ../src/interface.c:3295 msgid "Cancel" msgstr "રદ કરો" #: ../src/interface.c:3586 msgid "Open Keymap File" msgstr "કીમેપ ફાઇલને ખોલો" #: ../src/interface.c:3636 msgid "Write to Keymap File" msgstr "કિમેપ ફાઇલમાં લખો" #: ../src/interface.c:3655 msgid "" "This application supports only for Inscript type keymaps therefore no custom" " xkb keymaps can be created." msgstr "" "આ કારà«àª¯àª•à«àª°àª® Inscript પà«àª°àª•ારનાં કિમેપને પણ આધાર આપે છે માટે વૈવિધà«àª¯ xkb " "કીમેપને બનાવી શકાય છે." #: ../src/interface.c:3681 msgid "" "This application supports saving the inscript keymaps using filename as " "\"locale_code-custom_name-inscript2.mim\" only. If you are planning to " "change the default keymap name then use only this pattern." msgstr "" "આ કારà«àª¯àª•à«àª°àª® \"locale_code-custom_name-inscript2.mim\" તરીકે ફાઇલનામની મદદથી " "inscript કીમેપને સંગà«àª°àª¹àªµàª¾ આધાર આપે છે. જો તમે મૂળભૂત કીમેપને બદલવા પà«àª²àª¾àª¨ " "કરી રહà«àª¯àª¾ હોય પછી આ ભાતને વાપરો." #. Don't need to show menus #. Create the menu items #: ../src/interface.c:10407 msgid "Open" msgstr "ખોલો" #: ../src/interface.c:10408 msgid "Open a Keymap that is not listed in a combobox" msgstr "કીમેપ ને ખોલો કે જે કોમà«àª¬à«‹àª¬à«‹àª•à«àª¸àª®àª¾àª‚ યાદી થયેલ નથી" #: ../src/interface.c:10410 msgid "Save" msgstr "સંગà«àª°àª¹ કરો" #: ../src/interface.c:10411 msgid "Save current state of loaded keymap to a new keymap" msgstr "કીમેપને નવૠકરવા લોડ થયેલ કીમેપની હાલની સà«àª¥àª¿àª¤àª¿àª¨à«‡ સંગà«àª°àª¹à«‹" #: ../src/interface.c:10414 msgid "Quit" msgstr "બહાર નીકળો" #: ../src/interface.c:10416 msgid "Close iok application" msgstr "iok કારà«àª¯àª•à«àª°àª®àª¨à«‡ બંધ કરો" #: ../src/interface.c:10449 msgid "Reassign key value of some key to some other key" msgstr "અમà«àª• બીજી કી માં અમà«àª• કીની કી કિંમતને ફરીથી દાખલ કરો" #: ../src/interface.c:10451 msgid "Swap" msgstr "અદલાબદલી કરો" #: ../src/interface.c:10453 msgid "Swap key values between any 2 keys in loaded keymap" msgstr "લોડ થયેલ કીમેપમાં કોઇપણ ૨ કીઓની વચà«àªšà«‡ કી કિંમતોને અદલાબદલી કરો" #. Don't need to show menus #. Create the menu items #: ../src/interface.c:10473 msgid "About" msgstr "વિશે" #: ../src/interface.c:10475 msgid "About iok application" msgstr "iok કારà«àª¯àª•à«àª°àª® વિશે" #: ../src/interface.c:10491 msgid "Keymap" msgstr "કીમેપ" #: ../src/interface.c:10494 msgid "Keys" msgstr "કીઓ" #: ../src/interface.c:10497 msgid "Help" msgstr "મદદ" #: ../src/interface.c:10682 msgid "Backspace" msgstr "બેકસà«àªªà«‡àª¸" #: ../src/interface.c:10699 msgid "Tab" msgstr "ટેબ" #: ../src/interface.c:10792 msgid "Caps" msgstr "કેપà«àª¸" #: ../src/interface.c:10863 msgid "Enter" msgstr "દાખલ કરો" #: ../src/interface.c:10879 ../src/interface.c:10944 msgid "Shift" msgstr "શિફà«àªŸ" #: ../src/interface.c:10958 msgid "Space" msgstr "જગà«àª¯àª¾" #: ../src/interface.c:10965 msgid "Change to Extended layer Keyboard" msgstr "વિસà«àª¤àª°à«‡àª² લેયર કિબોરà«àª¡àª¨à«‡ બદલો" #: ../src/interface.c:10971 msgid "" "Select the language in which you want to write. This list contains keymaps " "in order as inscript then user defined then xkb and then any keymaps opened " "that are not default listed" msgstr "" "જે તમે લખવા માંગો છો તે ભાષાને પસંદ કરો. આ યાદી ઠઇનસà«àª•à«àª°àª¿àªªà«àªŸ પછી " "વà«àª¯àª¾àª–à«àª¯àª¾àª¯àª¿àª¤ થયેલ વપરાશકરà«àª¤àª¾ અને પછી ખોલેલ કોઇપણ કીમેપો તરીકે કà«àª°àª®àª®àª¾àª‚ " "કીમેપોને સમાવે છે" #. TRANSLATORS: Replace this string with your names, one name per line. #: ../src/interface.c:12541 msgid "translator-credits" msgstr "શà«àª°à«àªµà«‡àª¤àª¾ કોઠારી " #: ../src/interface.c:12547 msgid "iok" msgstr "iok" #: ../src/interface.c:12548 msgid "GPLv2 or later\n" msgstr "GPLv2 અથવા પછીની\n" #: ../src/support.c:90 ../src/support.c:114 #, c-format msgid "Couldn't find pixmap file: %s" msgstr "પિકà«àª¸àª®à«‡àªª ફાઇલને શોધી શકાયૠનહિં: %s" iok-2.1.3/po/hne.po0000644000076400007640000001426411776460111010773 00000000000000# SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. # FIRST AUTHOR , YEAR. # #, fuzzy msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2012-06-29 14:48+0530\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: Chhattisgarhi \n" "Language: \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=utf-8\n" "Content-Transfer-Encoding: 8bit\n" #: ../iok.desktop.in.h:1 msgid "Indic Onscreen Keyboard" msgstr "इंडिक ऑनसà¥à¤•à¥à¤°à¥€à¤¨ कà¥à¤‚जीपट" #: ../iok.desktop.in.h:2 msgid "Enter Indic characters with a virtual keyboard" msgstr "वरà¥à¤šà¥à¤…ल कà¥à¤‚जीपट से भारतीय वरà¥à¤£ दाखिल करें" #: ../src/interface.c:1987 msgid "" "This keymap file does not map uniquely to a keyboard and therefore cannot be " "displayed correctly" msgstr "" #: ../src/interface.c:3180 msgid "Select the language in which you want to write" msgstr "वह भाषा चà¥à¤¨à¥‡à¤‚ जिसमें आप लिखना चाहते हैं" #: ../src/interface.c:3182 ../src/interface.c:10955 msgid "Change to English Keyboard" msgstr "अंगà¥à¤°à¥‡à¤œà¥€ कà¥à¤‚जीपट में बदलें" #: ../src/interface.c:3255 msgid "ReassignKey" msgstr "कà¥à¤‚जी फिर नियत करें" #: ../src/interface.c:3265 msgid "Reassign Keyvalue of Key" msgstr "कà¥à¤‚जी का कà¥à¤‚जीमान फिर नियत करें" #: ../src/interface.c:3276 msgid "to another Key" msgstr "किसी दूसरे कà¥à¤‚जी में" #. Don't need to show menus #. Create the menu items #: ../src/interface.c:3291 ../src/interface.c:10447 msgid "Reassign" msgstr "फिर नियत करें" #: ../src/interface.c:3295 msgid "Cancel" msgstr "रदà¥à¤¦ करें" #: ../src/interface.c:3586 msgid "Open Keymap File" msgstr "कà¥à¤‚जी मैप फाइल खोलें" #: ../src/interface.c:3636 msgid "Write to Keymap File" msgstr "कà¥à¤‚जीमैप फाइल में लिखें" #: ../src/interface.c:3655 msgid "" "This application supports only for Inscript type keymaps therefore no custom " "xkb keymaps can be created." msgstr "" #: ../src/interface.c:3681 msgid "" "This application supports saving the inscript keymaps using filename as " "\"locale_code-custom_name-inscript2.mim\" only. If you are planning to " "change the default keymap name then use only this pattern." msgstr "" #. Don't need to show menus #. Create the menu items #: ../src/interface.c:10407 msgid "Open" msgstr "खोलें" #: ../src/interface.c:10408 msgid "Open a Keymap that is not listed in a combobox" msgstr "कोई कà¥à¤‚जी मानचितà¥à¤° खोलें जो कि कोंबो बॉकà¥à¤¸ में सूचीबदà¥à¤§ नहीं है" #: ../src/interface.c:10410 msgid "Save" msgstr "सहेजें" #: ../src/interface.c:10411 msgid "Save current state of loaded keymap to a new keymap" msgstr "किसी नये कà¥à¤‚जी मानचितà¥à¤° में लोड किठकà¥à¤‚जीमानचितà¥à¤° की मौजूदा सà¥à¤¥à¤¿à¤¤à¤¿ सहेजें" #: ../src/interface.c:10414 msgid "Quit" msgstr "बाहर" #: ../src/interface.c:10416 msgid "Close iok application" msgstr "iok अनà¥à¤ªà¥à¤°à¤¯à¥‹à¤— चà¥à¤¨à¥‡à¤‚" #: ../src/interface.c:10449 msgid "Reassign key value of some key to some other key" msgstr "कà¥à¤› दूसरे कà¥à¤‚जी में कà¥à¤› कà¥à¤‚जी के कà¥à¤‚जी मान फिर नियत करें" #: ../src/interface.c:10451 msgid "Swap" msgstr "सà¥à¤µà¥ˆà¤ª करें" #: ../src/interface.c:10453 msgid "Swap key values between any 2 keys in loaded keymap" msgstr "किसी 2 कà¥à¤‚जी के बीच लोडेड कà¥à¤‚जीमानचितà¥à¤° में कà¥à¤‚जी मान सà¥à¤µà¥ˆà¤ª करें" #. Don't need to show menus #. Create the menu items #: ../src/interface.c:10473 msgid "About" msgstr "परिचय" #: ../src/interface.c:10475 msgid "About iok application" msgstr "iok अनà¥à¤ªà¥à¤°à¤¯à¥‹à¤— का परिचय" #: ../src/interface.c:10491 msgid "Keymap" msgstr "कà¥à¤‚जी मानचितà¥à¤°" #: ../src/interface.c:10494 msgid "Keys" msgstr "कà¥à¤‚जी" #: ../src/interface.c:10497 msgid "Help" msgstr "मदद" #: ../src/interface.c:10682 msgid "Backspace" msgstr "Backspace" #: ../src/interface.c:10699 msgid "Tab" msgstr "Tab" #: ../src/interface.c:10792 msgid "Caps" msgstr "Caps" #: ../src/interface.c:10863 msgid "Enter" msgstr "Enter" #: ../src/interface.c:10879 ../src/interface.c:10944 msgid "Shift" msgstr "Shift" #: ../src/interface.c:10958 msgid "Space" msgstr "Space" #: ../src/interface.c:10965 msgid "Change to Extended layer Keyboard" msgstr "विसà¥à¤¤à¤¾à¤°à¤¿à¤¤ लेयर कà¥à¤‚जीपट में बदलें" #: ../src/interface.c:10971 msgid "" "Select the language in which you want to write. This list contains keymaps " "in order as inscript then user defined then xkb and then any keymaps opened " "that are not default listed" msgstr "" "वह भाषा चà¥à¤¨à¥‡à¤‚ जिसमें आप लिखना चाहते हैं. यह सूची inscript रूप में कà¥à¤‚जीमानचितà¥à¤° समाहित करती " "है बनिसà¥à¤ªà¤¤ xkb पर परिभाषित के अलावा और कà¥à¤‚जी मानचितà¥à¤° खà¥à¤²à¤¾ है जो कि तयशà¥à¤¦à¤¾ रूप से " "सूचीबदà¥à¤§ नहीं है" #. TRANSLATORS: Replace this string with your names, one name per line. #: ../src/interface.c:12541 msgid "translator-credits" msgstr "" #: ../src/interface.c:12547 msgid "iok" msgstr "" #: ../src/interface.c:12548 msgid "GPLv2 or later\n" msgstr "" #: ../src/support.c:90 ../src/support.c:114 #, c-format msgid "Couldn't find pixmap file: %s" msgstr "" iok-2.1.3/po/de_CH.po0000644000076400007640000002031511776460111011155 00000000000000# German translation of iok # Copyright (C) 2008 iok # This file is distributed under the same license as the iok package. # # Fabian Affolter , 2009. # Dominik Sandjaja , 2009. # msgid "" msgstr "" "Project-Id-Version: iok\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2012-06-29 14:48+0530\n" "PO-Revision-Date: 2009-04-18 01:03+0100\n" "Last-Translator: Fabian Affolter \n" "Language-Team: German \n" "Language: de\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=utf-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Poedit-Language: Swiss German\n" #: ../iok.desktop.in.h:1 msgid "Indic Onscreen Keyboard" msgstr "Indische Bildschirm-Tastatur" #: ../iok.desktop.in.h:2 msgid "Enter Indic characters with a virtual keyboard" msgstr "Indische Zeichen mit der virtuellen Tastatur eingeben" #: ../src/interface.c:1987 msgid "" "This keymap file does not map uniquely to a keyboard and therefore cannot be " "displayed correctly" msgstr "" #: ../src/interface.c:3180 msgid "Select the language in which you want to write" msgstr "Wählen Sie die Sprache, in der Sie schreiben wollen" #: ../src/interface.c:3182 ../src/interface.c:10955 msgid "Change to English Keyboard" msgstr "Zur englischen Tastatur wechseln" #: ../src/interface.c:3255 msgid "ReassignKey" msgstr "NeuzuweisenTaste" #: ../src/interface.c:3265 msgid "Reassign Keyvalue of Key" msgstr "Neuzuweisung des Tastenwerts der Taste" #: ../src/interface.c:3276 msgid "to another Key" msgstr "auf eine andere Taste" #. Don't need to show menus #. Create the menu items #: ../src/interface.c:3291 ../src/interface.c:10447 msgid "Reassign" msgstr "Neuzuweisen" #: ../src/interface.c:3295 msgid "Cancel" msgstr "Abbruch" #: ../src/interface.c:3586 msgid "Open Keymap File" msgstr "Tastaturbelegungs-Datei öffnen" #: ../src/interface.c:3636 msgid "Write to Keymap File" msgstr "In Tastaturbelegungs-Datei schreiben" #: ../src/interface.c:3655 msgid "" "This application supports only for Inscript type keymaps therefore no custom " "xkb keymaps can be created." msgstr "" #: ../src/interface.c:3681 msgid "" "This application supports saving the inscript keymaps using filename as " "\"locale_code-custom_name-inscript2.mim\" only. If you are planning to " "change the default keymap name then use only this pattern." msgstr "" #. Don't need to show menus #. Create the menu items #: ../src/interface.c:10407 msgid "Open" msgstr "Öffnen" #: ../src/interface.c:10408 msgid "Open a Keymap that is not listed in a combobox" msgstr "" "Tastaturbelegungs-Datei öffnen, die nicht in keiner Combo-Box aufgelistet ist" #: ../src/interface.c:10410 msgid "Save" msgstr "Speichern" #: ../src/interface.c:10411 msgid "Save current state of loaded keymap to a new keymap" msgstr "Aktuellen Zustand der geladenen Keymap als neue Keymap speichern" #: ../src/interface.c:10414 msgid "Quit" msgstr "Beenden" #: ../src/interface.c:10416 msgid "Close iok application" msgstr "iok schliessen" #: ../src/interface.c:10449 msgid "Reassign key value of some key to some other key" msgstr "Neuzuweisung eines Tastenwerts zu einer anderen Taste" #: ../src/interface.c:10451 msgid "Swap" msgstr "Wechsle" #: ../src/interface.c:10453 msgid "Swap key values between any 2 keys in loaded keymap" msgstr "" "Tastenwerte zwischen zwei beliebigen Tasten in der geladenen " "Tastaturbelegung austauschen" #. Don't need to show menus #. Create the menu items #: ../src/interface.c:10473 msgid "About" msgstr "Über" #: ../src/interface.c:10475 msgid "About iok application" msgstr "Über die iok-Applikation" #: ../src/interface.c:10491 msgid "Keymap" msgstr "Tasturbelegung" #: ../src/interface.c:10494 msgid "Keys" msgstr "Tasten" #: ../src/interface.c:10497 msgid "Help" msgstr "Hilfe" #: ../src/interface.c:10682 msgid "Backspace" msgstr "Rücklauf" #: ../src/interface.c:10699 msgid "Tab" msgstr "Tabulator " #: ../src/interface.c:10792 msgid "Caps" msgstr "Feststelltaste" #: ../src/interface.c:10863 msgid "Enter" msgstr "Eingabetaste" #: ../src/interface.c:10879 ../src/interface.c:10944 msgid "Shift" msgstr "Umschalttaste" #: ../src/interface.c:10958 msgid "Space" msgstr "Leerschlag" #: ../src/interface.c:10965 #, fuzzy msgid "Change to Extended layer Keyboard" msgstr "Zur englischen Tastatur wechseln" #: ../src/interface.c:10971 msgid "" "Select the language in which you want to write. This list contains keymaps " "in order as inscript then user defined then xkb and then any keymaps opened " "that are not default listed" msgstr "" "Wählen Sie die Sprache, in der Sie schreiben wollen. Diese Liste enthält die " "Keymaps sortiert nach: erst inscript, dann benutzerdefiniert, dann xkb und " "dann alle geöffneten Keymaps, die nicht in der Vorgabe-Liste sind" #. TRANSLATORS: Replace this string with your names, one name per line. #: ../src/interface.c:12541 msgid "translator-credits" msgstr "Fabian Affolter , 2009." #: ../src/interface.c:12547 msgid "iok" msgstr "iok" #: ../src/interface.c:12548 msgid "GPLv2 or later\n" msgstr "GPLv2 oder später\n" #: ../src/support.c:90 ../src/support.c:114 #, c-format msgid "Couldn't find pixmap file: %s" msgstr "Konnte pixmap-Datei nicht finden: %s" #~ msgid "to English" #~ msgstr "nach Englisch" #, fuzzy #~ msgid "English" #~ msgstr "nach Englisch" #, fuzzy #~ msgid "OpenMap" #~ msgstr "OpenMap" #~ msgid "WriteMap" #~ msgstr "SchreibeZuordnung" #~ msgid "" #~ "~\n" #~ "`" #~ msgstr "" #~ "~\n" #~ "`" #~ msgid "" #~ "!\n" #~ "1" #~ msgstr "" #~ "!\n" #~ "1" #~ msgid "" #~ "@\n" #~ "2" #~ msgstr "" #~ "@\n" #~ "2" #~ msgid "" #~ "#\n" #~ "3" #~ msgstr "" #~ "#\n" #~ "3" #~ msgid "" #~ "$\n" #~ "4" #~ msgstr "" #~ "$\n" #~ "4" #~ msgid "" #~ "%\n" #~ "5" #~ msgstr "" #~ "%\n" #~ "5" #~ msgid "" #~ "^\n" #~ "6" #~ msgstr "" #~ "^\n" #~ "6" #~ msgid "" #~ "&\n" #~ "7" #~ msgstr "" #~ "&\n" #~ "7" #~ msgid "" #~ "*\n" #~ "8" #~ msgstr "" #~ "*\n" #~ "8" #~ msgid "" #~ "(\n" #~ "9" #~ msgstr "" #~ "(\n" #~ "9" #~ msgid "" #~ ")\n" #~ "0" #~ msgstr "" #~ ")\n" #~ "0" #~ msgid "" #~ "_\n" #~ "-" #~ msgstr "" #~ "_\n" #~ "-" #~ msgid "" #~ "+\n" #~ "=" #~ msgstr "" #~ "+\n" #~ "=" #~ msgid "" #~ "Q\n" #~ "q" #~ msgstr "" #~ "Q\n" #~ "q" #~ msgid "" #~ "W\n" #~ "w" #~ msgstr "" #~ "W\n" #~ "w" #~ msgid "" #~ "E\n" #~ "e" #~ msgstr "" #~ "E\n" #~ "e" #~ msgid "" #~ "R\n" #~ "r" #~ msgstr "" #~ "R\n" #~ "r" #~ msgid "" #~ "T\n" #~ "t" #~ msgstr "" #~ "T\n" #~ "t" #~ msgid "" #~ "Y\n" #~ "y" #~ msgstr "" #~ "Y\n" #~ "y" #~ msgid "" #~ "U\n" #~ "u" #~ msgstr "" #~ "U\n" #~ "u" #~ msgid "" #~ "I\n" #~ "i" #~ msgstr "" #~ "I\n" #~ "i" #~ msgid "" #~ "O\n" #~ "o" #~ msgstr "" #~ "O\n" #~ "o" #~ msgid "" #~ "P\n" #~ "p" #~ msgstr "" #~ "P\n" #~ "p" #~ msgid "" #~ "{\n" #~ "[" #~ msgstr "" #~ "{\n" #~ "[" #~ msgid "" #~ "}\n" #~ "]" #~ msgstr "" #~ "}\n" #~ "]" #~ msgid "" #~ "|\n" #~ "\\" #~ msgstr "" #~ "|\n" #~ "\\" #~ msgid "" #~ "A\n" #~ "a" #~ msgstr "" #~ "A\n" #~ "a" #~ msgid "" #~ "S\n" #~ "s" #~ msgstr "" #~ "S\n" #~ "s" #~ msgid "" #~ "D\n" #~ "d" #~ msgstr "" #~ "D\n" #~ "d" #~ msgid "" #~ "F\n" #~ "f" #~ msgstr "" #~ "F\n" #~ "f" #~ msgid "" #~ "G\n" #~ "g" #~ msgstr "" #~ "G\n" #~ "g" #~ msgid "" #~ "H\n" #~ "h" #~ msgstr "" #~ "H\n" #~ "h" #~ msgid "" #~ "J\n" #~ "j" #~ msgstr "" #~ "J\n" #~ "j" #~ msgid "" #~ "K\n" #~ "k" #~ msgstr "" #~ "K\n" #~ "k" #~ msgid "" #~ "L\n" #~ "l" #~ msgstr "" #~ "L\n" #~ "l" #~ msgid "" #~ ":\n" #~ ";" #~ msgstr "" #~ ":\n" #~ ";" #~ msgid "" #~ "\"\n" #~ "'" #~ msgstr "" #~ "\"\n" #~ "'" #~ msgid "" #~ "Z\n" #~ "z" #~ msgstr "" #~ "Z\n" #~ "z" #~ msgid "" #~ "X\n" #~ "x" #~ msgstr "" #~ "X\n" #~ "x" #~ msgid "" #~ "C\n" #~ "c" #~ msgstr "" #~ "C\n" #~ "c" #~ msgid "" #~ "V\n" #~ "v" #~ msgstr "" #~ "V\n" #~ "v" #~ msgid "" #~ "B\n" #~ "b" #~ msgstr "" #~ "B\n" #~ "b" #~ msgid "" #~ "N\n" #~ "n" #~ msgstr "" #~ "N\n" #~ "n" #~ msgid "" #~ "M\n" #~ "m" #~ msgstr "" #~ "M\n" #~ "m" #~ msgid "" #~ "<\n" #~ "," #~ msgstr "" #~ "<\n" #~ "," #~ msgid "" #~ ">\n" #~ "." #~ msgstr "" #~ ">\n" #~ "." #~ msgid "" #~ "?\n" #~ "/" #~ msgstr "" #~ "?\n" #~ "/" #, fuzzy #~ msgid "swap_window" #~ msgstr "swap_window" #~ msgid "Key 1" #~ msgstr "Taste 1" iok-2.1.3/po/iok.pot0000664000076400007640000000774611776460267011214 00000000000000# SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. # FIRST AUTHOR , YEAR. # #, fuzzy msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2012-07-09 10:10+0530\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" "Language: \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=CHARSET\n" "Content-Transfer-Encoding: 8bit\n" #: ../iok.desktop.in.h:1 msgid "Indic Onscreen Keyboard" msgstr "" #: ../iok.desktop.in.h:2 msgid "Enter Indic characters with a virtual keyboard" msgstr "" #: ../src/interface.c:1987 msgid "" "This keymap file does not map uniquely to a keyboard and therefore cannot be " "displayed correctly" msgstr "" #: ../src/interface.c:3180 msgid "Select the language in which you want to write" msgstr "" #: ../src/interface.c:3182 ../src/interface.c:10958 msgid "Change to English Keyboard" msgstr "" #: ../src/interface.c:3255 msgid "ReassignKey" msgstr "" #: ../src/interface.c:3265 msgid "Reassign Keyvalue of Key" msgstr "" #: ../src/interface.c:3276 msgid "to another Key" msgstr "" #. Don't need to show menus #. Create the menu items #: ../src/interface.c:3291 ../src/interface.c:10450 msgid "Reassign" msgstr "" #: ../src/interface.c:3295 msgid "Cancel" msgstr "" #: ../src/interface.c:3586 msgid "Open Keymap File" msgstr "" #: ../src/interface.c:3636 msgid "Write to Keymap File" msgstr "" #: ../src/interface.c:3655 msgid "" "This application supports only for Inscript type keymaps therefore no custom " "xkb keymaps can be created." msgstr "" #: ../src/interface.c:3685 msgid "" "This application supports saving the inscript keymaps using filename as " "\"locale_code-custom_name-inscript2.mim\" only. If you are planning to " "change the default keymap name then use only this pattern." msgstr "" #. Don't need to show menus #. Create the menu items #: ../src/interface.c:10410 msgid "Open" msgstr "" #: ../src/interface.c:10411 msgid "Open a Keymap that is not listed in a combobox" msgstr "" #: ../src/interface.c:10413 msgid "Save" msgstr "" #: ../src/interface.c:10414 msgid "Save current state of loaded keymap to a new keymap" msgstr "" #: ../src/interface.c:10417 msgid "Quit" msgstr "" #: ../src/interface.c:10419 msgid "Close iok application" msgstr "" #: ../src/interface.c:10452 msgid "Reassign key value of some key to some other key" msgstr "" #: ../src/interface.c:10454 msgid "Swap" msgstr "" #: ../src/interface.c:10456 msgid "Swap key values between any 2 keys in loaded keymap" msgstr "" #. Don't need to show menus #. Create the menu items #: ../src/interface.c:10476 msgid "About" msgstr "" #: ../src/interface.c:10478 msgid "About iok application" msgstr "" #: ../src/interface.c:10494 msgid "Keymap" msgstr "" #: ../src/interface.c:10497 msgid "Keys" msgstr "" #: ../src/interface.c:10500 msgid "Help" msgstr "" #: ../src/interface.c:10685 msgid "Backspace" msgstr "" #: ../src/interface.c:10702 msgid "Tab" msgstr "" #: ../src/interface.c:10795 msgid "Caps" msgstr "" #: ../src/interface.c:10866 msgid "Enter" msgstr "" #: ../src/interface.c:10882 ../src/interface.c:10947 msgid "Shift" msgstr "" #: ../src/interface.c:10961 msgid "Space" msgstr "" #: ../src/interface.c:10968 msgid "Change to Extended layer Keyboard" msgstr "" #: ../src/interface.c:10974 msgid "" "Select the language in which you want to write. This list contains keymaps " "in order as inscript then user defined then xkb and then any keymaps opened " "that are not default listed" msgstr "" #. TRANSLATORS: Replace this string with your names, one name per line. #: ../src/interface.c:12544 msgid "translator-credits" msgstr "" #: ../src/interface.c:12550 msgid "iok" msgstr "" #: ../src/interface.c:12551 msgid "GPLv2 or later\n" msgstr "" #: ../src/support.c:90 ../src/support.c:114 #, c-format msgid "Couldn't find pixmap file: %s" msgstr "" iok-2.1.3/po/ar.po0000644000076400007640000001346211776460111010622 00000000000000# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. # # Fawaz Al-alyan , 2010. # Fawaz Al-Alayn , 2010. msgid "" msgstr "" "Project-Id-Version: \n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2012-06-29 14:48+0530\n" "PO-Revision-Date: 2010-07-13 08:52+0300\n" "Last-Translator: Fawaz Al-Alayn \n" "Language-Team: Arabic \n" "Language: ar\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-Generator: Lokalize 1.0\n" "Plural-Forms: nplurals=6; plural=n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 " "&& n%100<=10 ? 3 : n%100>=11 && n%100<=99 ? 4 : 5;\n" #: ../iok.desktop.in.h:1 msgid "Indic Onscreen Keyboard" msgstr "لوحة Ø§Ù„Ù…ÙØ§ØªÙŠØ­ على الشاشة الخاصة بالهندية" #: ../iok.desktop.in.h:2 msgid "Enter Indic characters with a virtual keyboard" msgstr "أدخل الأحر٠الهندية بوسطة لوحة Ø§Ù„Ù…ÙØ§ØªÙŠØ­ Ø§Ù„Ø§ÙØªØ±Ø§Ø¶ÙŠØ©" #: ../src/interface.c:1987 msgid "" "This keymap file does not map uniquely to a keyboard and therefore cannot be " "displayed correctly" msgstr "" #: ../src/interface.c:3180 msgid "Select the language in which you want to write" msgstr "حدد اللغة التي تريد الكتابة بها" #: ../src/interface.c:3182 ../src/interface.c:10955 msgid "Change to English Keyboard" msgstr "تغيير لوحة Ø§Ù„Ù…ÙØ§ØªÙŠØ­ إلى اللغة الإنجليزية" #: ../src/interface.c:3255 msgid "ReassignKey" msgstr "إعادة تعيين الزر" #: ../src/interface.c:3265 msgid "Reassign Keyvalue of Key" msgstr "إعادة تعيين الـ Keyvalue للزر" #: ../src/interface.c:3276 msgid "to another Key" msgstr "إلى زر آخر" #. Don't need to show menus #. Create the menu items #: ../src/interface.c:3291 ../src/interface.c:10447 msgid "Reassign" msgstr "إعادة تعيين" #: ../src/interface.c:3295 msgid "Cancel" msgstr "إلغاء" #: ../src/interface.c:3586 msgid "Open Keymap File" msgstr "Ø§ÙØªØ­ مل٠الـ Keymap" #: ../src/interface.c:3636 msgid "Write to Keymap File" msgstr "الكتابة ÙÙŠ مل٠الـKeymap" #: ../src/interface.c:3655 msgid "" "This application supports only for Inscript type keymaps therefore no custom " "xkb keymaps can be created." msgstr "" #: ../src/interface.c:3681 msgid "" "This application supports saving the inscript keymaps using filename as " "\"locale_code-custom_name-inscript2.mim\" only. If you are planning to " "change the default keymap name then use only this pattern." msgstr "" #. Don't need to show menus #. Create the menu items #: ../src/interface.c:10407 msgid "Open" msgstr "ÙØªØ­" #: ../src/interface.c:10408 msgid "Open a Keymap that is not listed in a combobox" msgstr "Ø§ÙØªØ­ الـ Keymap الذي لم يتم سرده ÙÙŠ الـ combobox" #: ../src/interface.c:10410 msgid "Save" msgstr "Ø­ÙØ¸" #: ../src/interface.c:10411 msgid "Save current state of loaded keymap to a new keymap" msgstr "Ø­ÙØ¸ الحالة الراهنة للـkeymap المحمل إلى الـ keymap الجديدة" #: ../src/interface.c:10414 msgid "Quit" msgstr "خروج" #: ../src/interface.c:10416 msgid "Close iok application" msgstr "إغلاق تطبيق الـ iok" #: ../src/interface.c:10449 msgid "Reassign key value of some key to some other key" msgstr "إعادة تعيين قيمة الزر لبعض الأزرار إلى بعض الأزرار الأخرى" #: ../src/interface.c:10451 msgid "Swap" msgstr "مبادلة" #: ../src/interface.c:10453 msgid "Swap key values between any 2 keys in loaded keymap" msgstr "مبادلة قيم الزر بين أي Ù…ÙØªØ§Ø­ÙŠÙ† ÙÙŠ الـ keymap المحملة" #. Don't need to show menus #. Create the menu items #: ../src/interface.c:10473 msgid "About" msgstr "عن" #: ../src/interface.c:10475 msgid "About iok application" msgstr "عن تطبيق الـ iok" #: ../src/interface.c:10491 msgid "Keymap" msgstr "Keymap" #: ../src/interface.c:10494 msgid "Keys" msgstr "أزرار" #: ../src/interface.c:10497 msgid "Help" msgstr "تعليمات" #: ../src/interface.c:10682 msgid "Backspace" msgstr "Backspace" #: ../src/interface.c:10699 msgid "Tab" msgstr "التبويب" #: ../src/interface.c:10792 msgid "Caps" msgstr "الأحر٠الكبيرة" #: ../src/interface.c:10863 msgid "Enter" msgstr "الإدخال" #: ../src/interface.c:10879 ../src/interface.c:10944 msgid "Shift" msgstr "تبديل الأحرÙ" #: ../src/interface.c:10958 msgid "Space" msgstr "Ø§Ù„Ù…Ø³Ø§ÙØ©" #: ../src/interface.c:10965 #, fuzzy msgid "Change to Extended layer Keyboard" msgstr "تغيير لوحة Ø§Ù„Ù…ÙØ§ØªÙŠØ­ إلى اللغة الإنجليزية" #: ../src/interface.c:10971 msgid "" "Select the language in which you want to write. This list contains keymaps " "in order as inscript then user defined then xkb and then any keymaps opened " "that are not default listed" msgstr "" "حدد اللغة التي تريد الكتابة بها. تتضمن هذه القائمة الـ keymapsبالترتيب مثل " "الـ inscript ثم التعري٠بالمستخدم ثم الـ xkb ومن ثم أي keymaps Ù…ÙØªÙˆØ­Ø©ÙˆØ§Ù„تي " "ليست مدرجة Ø§ÙØªØ±Ø§Ø¶ÙŠØ§Ù‹" #. TRANSLATORS: Replace this string with your names, one name per line. #: ../src/interface.c:12541 msgid "translator-credits" msgstr "حقوق المترجم" #: ../src/interface.c:12547 msgid "iok" msgstr "iok" #: ../src/interface.c:12548 msgid "GPLv2 or later\n" msgstr "GPLv2 أو أعلى\n" #: ../src/support.c:90 ../src/support.c:114 #, c-format msgid "Couldn't find pixmap file: %s" msgstr "تعذر العثور على المل٠pixmap: %s" #~ msgid "to English" #~ msgstr "إلى أنجليزي" #~ msgid "English" #~ msgstr "الإنجليزية" iok-2.1.3/po/brx.po0000644000076400007640000001271211776460111011010 00000000000000# SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. # FIRST AUTHOR , YEAR. # #, fuzzy msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2012-06-29 14:48+0530\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: Bodo \n" "Language: \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=utf-8\n" "Content-Transfer-Encoding: 8bit\n" #: ../iok.desktop.in.h:1 msgid "Indic Onscreen Keyboard" msgstr "इंडिक ऑनसà¥à¤•à¥à¤°à¥€à¤¨ कà¥à¤‚जीपट" #: ../iok.desktop.in.h:2 msgid "Enter Indic characters with a virtual keyboard" msgstr "वरà¥à¤šà¥à¤…ल कà¥à¤‚जीपट से भारतीय वरà¥à¤£ दाखिल करें" #: ../src/interface.c:1987 msgid "" "This keymap file does not map uniquely to a keyboard and therefore cannot be " "displayed correctly" msgstr "" #: ../src/interface.c:3180 msgid "Select the language in which you want to write" msgstr "वह भाषा चà¥à¤¨à¥‡à¤‚ जिसमें आप लिखना चाहते हैं" #: ../src/interface.c:3182 ../src/interface.c:10955 msgid "Change to English Keyboard" msgstr "अंगà¥à¤°à¥‡à¤œà¥€ कà¥à¤‚जीपट में बदलें" #: ../src/interface.c:3255 msgid "ReassignKey" msgstr "कà¥à¤‚जी फिर नियत करें" #: ../src/interface.c:3265 msgid "Reassign Keyvalue of Key" msgstr "कà¥à¤‚जी का कà¥à¤‚जीमान फिर नियत करें" #: ../src/interface.c:3276 msgid "to another Key" msgstr "किसी दूसरे कà¥à¤‚जी में" #. Don't need to show menus #. Create the menu items #: ../src/interface.c:3291 ../src/interface.c:10447 msgid "Reassign" msgstr "फिर नियत करें" #: ../src/interface.c:3295 msgid "Cancel" msgstr "रदà¥à¤¦ करें" #: ../src/interface.c:3586 msgid "Open Keymap File" msgstr "कà¥à¤‚जी मैप फाइल खोलें" #: ../src/interface.c:3636 msgid "Write to Keymap File" msgstr "कà¥à¤‚जीमैप फाइल में लिखें" #: ../src/interface.c:3655 msgid "" "This application supports only for Inscript type keymaps therefore no custom " "xkb keymaps can be created." msgstr "" #: ../src/interface.c:3681 msgid "" "This application supports saving the inscript keymaps using filename as " "\"locale_code-custom_name-inscript2.mim\" only. If you are planning to " "change the default keymap name then use only this pattern." msgstr "" #. Don't need to show menus #. Create the menu items #: ../src/interface.c:10407 msgid "Open" msgstr "खोलें" #: ../src/interface.c:10408 msgid "Open a Keymap that is not listed in a combobox" msgstr "कोई कà¥à¤‚जी मानचितà¥à¤° खोलें जो कि कोंबो बॉकà¥à¤¸ में सूचीबदà¥à¤§ नहीं है" #: ../src/interface.c:10410 msgid "Save" msgstr "सहेजें" #: ../src/interface.c:10411 msgid "Save current state of loaded keymap to a new keymap" msgstr "किसी नये कà¥à¤‚जी मानचितà¥à¤° में लोड किठकà¥à¤‚जीमानचितà¥à¤° की मौजूदा सà¥à¤¥à¤¿à¤¤à¤¿ सहेजें" #: ../src/interface.c:10414 msgid "Quit" msgstr "बाहर" #: ../src/interface.c:10416 msgid "Close iok application" msgstr "iok अनà¥à¤ªà¥à¤°à¤¯à¥‹à¤— चà¥à¤¨à¥‡à¤‚" #: ../src/interface.c:10449 msgid "Reassign key value of some key to some other key" msgstr "कà¥à¤› दूसरे कà¥à¤‚जी में कà¥à¤› कà¥à¤‚जी के कà¥à¤‚जी मान फिर नियत करें" #: ../src/interface.c:10451 msgid "Swap" msgstr "सà¥à¤µà¥ˆà¤ª करें" #: ../src/interface.c:10453 msgid "Swap key values between any 2 keys in loaded keymap" msgstr "किसी 2 कà¥à¤‚जी के बीच लोडेड कà¥à¤‚जीमानचितà¥à¤° में कà¥à¤‚जी मान सà¥à¤µà¥ˆà¤ª करें" #. Don't need to show menus #. Create the menu items #: ../src/interface.c:10473 msgid "About" msgstr "" #: ../src/interface.c:10475 msgid "About iok application" msgstr "" #: ../src/interface.c:10491 msgid "Keymap" msgstr "" #: ../src/interface.c:10494 msgid "Keys" msgstr "" #: ../src/interface.c:10497 msgid "Help" msgstr "" #: ../src/interface.c:10682 msgid "Backspace" msgstr "" #: ../src/interface.c:10699 msgid "Tab" msgstr "" #: ../src/interface.c:10792 msgid "Caps" msgstr "" #: ../src/interface.c:10863 msgid "Enter" msgstr "" #: ../src/interface.c:10879 ../src/interface.c:10944 msgid "Shift" msgstr "" #: ../src/interface.c:10958 msgid "Space" msgstr "" #: ../src/interface.c:10965 msgid "Change to Extended layer Keyboard" msgstr "" #: ../src/interface.c:10971 msgid "" "Select the language in which you want to write. This list contains keymaps " "in order as inscript then user defined then xkb and then any keymaps opened " "that are not default listed" msgstr "" #. TRANSLATORS: Replace this string with your names, one name per line. #: ../src/interface.c:12541 msgid "translator-credits" msgstr "" #: ../src/interface.c:12547 msgid "iok" msgstr "" #: ../src/interface.c:12548 msgid "GPLv2 or later\n" msgstr "" #: ../src/support.c:90 ../src/support.c:114 #, c-format msgid "Couldn't find pixmap file: %s" msgstr "" iok-2.1.3/po/ml.po0000644000076400007640000002026311776460111010625 00000000000000# anipeter , 2012. #zanata msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2012-06-29 14:48+0530\n" "PO-Revision-Date: 2012-07-02 04:26-0400\n" "Last-Translator: anipeter \n" "Language-Team: Malayalam\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Language: ml\n" "Plural-Forms: nplurals=2; plural=(n != 1)\n" "X-Generator: Zanata 1.6.1\n" #: ../iok.desktop.in.h:1 msgid "Indic Onscreen Keyboard" msgstr "ഇനàµâ€à´¡à´¿à´•ൠഓണàµâ€à´¸àµà´•àµà´°àµ€à´¨àµâ€ കീബോരàµâ€à´¡àµ" #: ../iok.desktop.in.h:2 msgid "Enter Indic characters with a virtual keyboard" msgstr "വിരàµâ€à´šàµà´šàµà´µà´²àµâ€ കീബോരàµâ€à´¡àµ ഉപയോഗിചàµà´šàµàµ ഇനàµâ€à´¡à´¿à´•ൠഅകàµà´·à´°à´™àµà´™à´³àµâ€ നലàµâ€à´•àµà´•" #: ../src/interface.c:1987 msgid "" "This keymap file does not map uniquely to a keyboard and therefore cannot be" " displayed correctly" msgstr "" "à´ˆ കീമാപàµà´ªàµ ഫയരàµâ€ ഒരൠകീബോരàµâ€à´¡àµà´®à´¾à´¯à´¿ ചേരàµà´¨àµà´¨à´¿à´²àµà´² അതിനാലàµâ€ ശരിയായി " "à´ªàµà´°à´¦à´°àµâ€à´¶à´¿à´ªàµà´ªà´¿à´¯àµà´•àµà´•àµà´µà´¾à´¨àµâ€ സാധàµà´¯à´®à´²àµà´²." #: ../src/interface.c:3180 msgid "Select the language in which you want to write" msgstr "നിങàµà´™à´³àµâ€à´•àµà´•àµàµ à´Žà´´àµà´¤àµà´µà´¾à´¨àµà´³àµà´³ ഭാഷ തെരഞàµà´žàµ†à´Ÿàµà´•àµà´•àµà´•" #: ../src/interface.c:3182 ../src/interface.c:10955 msgid "Change to English Keyboard" msgstr "ഇംഗàµà´²àµ€à´·àµ കീബോരàµâ€à´¡à´¿à´²à´•àµà´•ൠമാറàµà´±àµà´•" #: ../src/interface.c:3255 msgid "ReassignKey" msgstr "കീ വീണàµà´Ÿàµà´‚ നലàµâ€à´•àµà´•" #: ../src/interface.c:3265 msgid "Reassign Keyvalue of Key" msgstr "വീണàµà´Ÿàµà´‚ നലàµâ€à´•à´¿à´¯ കീയàµà´Ÿàµ† കീമൂലàµà´²àµà´¯à´‚" #: ../src/interface.c:3276 msgid "to another Key" msgstr "മറàµà´±àµŠà´°àµ കീയിലേകàµà´•àµ" #. Don't need to show menus #. Create the menu items #: ../src/interface.c:3291 ../src/interface.c:10447 msgid "Reassign" msgstr "വീണàµà´Ÿàµà´‚ നലàµâ€à´•àµà´•" #: ../src/interface.c:3295 msgid "Cancel" msgstr "റദàµà´¦à´¾à´•àµà´•àµà´•" #: ../src/interface.c:3586 msgid "Open Keymap File" msgstr "കീമാപàµà´ªàµ ഫയലàµâ€ à´¤àµà´±à´•àµà´•àµà´•" #: ../src/interface.c:3636 msgid "Write to Keymap File" msgstr "കീമാപàµà´ªàµ ഫയലിലേകàµà´•àµàµ സൂകàµà´·à´¿à´•àµà´•àµà´•" #: ../src/interface.c:3655 msgid "" "This application supports only for Inscript type keymaps therefore no custom" " xkb keymaps can be created." msgstr "" "à´ˆ à´ªàµà´°à´¯àµ‹à´—à´‚ ഇനàµâ€à´¸àµà´•àµà´°à´¿à´ªàµà´±àµà´±àµ തരതàµà´¤à´¿à´²àµà´³àµà´³ കീമാപàµà´ªàµà´•à´³àµâ€à´•àµà´•àµàµ മാതàµà´°à´‚ പിനàµà´¤àµà´£ " "ലഭàµà´¯à´®à´¾à´•àµà´•àµà´¨àµà´¨àµ. അതിനാലàµâ€, നിങàµà´™à´³àµâ€à´•àµà´•à´¿à´·àµà´Ÿà´®àµà´³àµà´³ രീതിയിലàµâ€ xkb കീമാപàµà´ªàµà´•à´³àµâ€ " "തയàµà´¯à´¾à´±à´¾à´•àµà´•àµà´µà´¾à´¨àµâ€ സാധàµà´¯à´®à´²àµà´²." #: ../src/interface.c:3681 msgid "" "This application supports saving the inscript keymaps using filename as " "\"locale_code-custom_name-inscript2.mim\" only. If you are planning to " "change the default keymap name then use only this pattern." msgstr "" "à´ˆ à´ªàµà´°à´¯àµ‹à´—à´¤àµà´¤à´¿à´²àµâ€ നിങàµà´™à´³àµâ€à´•àµà´•àµàµ ഇനàµâ€à´¸àµà´•àµà´°à´¿à´ªàµà´±àµà´±àµ കീമാപàµà´ªàµà´•à´³àµâ€ \"locale_code-" "custom_name-inscript2.mim\" à´Žà´¨àµà´¨ പേരിലàµâ€ മാതàµà´°à´®àµ‡ സൂകàµà´·à´¿à´¯àµà´•àµà´•àµà´µà´¾à´¨àµâ€ " "സാധàµà´¯à´®à´¾à´•ൂ. à´¸àµà´µà´¤à´µàµ‡à´¯àµà´³àµà´³ കീമാപàµà´ªàµ നാമം നിങàµà´™à´³àµâ€à´•àµà´•àµàµ മാറàµà´±à´£à´®àµ†à´™àµà´•à´¿à´²àµâ€, à´ˆ മാതൃക " "മാതàµà´°à´‚ ഉപയോഗിയàµà´•àµà´•àµà´•." #. Don't need to show menus #. Create the menu items #: ../src/interface.c:10407 msgid "Open" msgstr "à´¤àµà´±à´•àµà´•àµà´•" #: ../src/interface.c:10408 msgid "Open a Keymap that is not listed in a combobox" msgstr "കോംബോ ബോകàµà´¸à´¿à´²àµâ€ ലഭàµà´¯à´®à´²àµà´²à´¾à´¤àµà´¤ ഒരൠകീമാപàµà´ªàµ à´¤àµà´±à´•àµà´•àµà´•" #: ../src/interface.c:10410 msgid "Save" msgstr "സൂകàµà´·à´¿à´•àµà´•àµà´•" #: ../src/interface.c:10411 msgid "Save current state of loaded keymap to a new keymap" msgstr "" "നിലവിലàµâ€ ലഭàµà´¯à´®à´¾à´•àµà´•à´¿à´¯ കീമാപàµà´ªà´¿à´¨àµà´±àµ† അവസàµà´¥ മറàµà´±àµŠà´°àµ à´ªàµà´¤à´¿à´¯ കീമാപàµà´ªà´¿à´²àµ‡à´•àµà´•àµàµ " "സൂകàµà´·à´¿à´•àµà´•àµà´•" #: ../src/interface.c:10414 msgid "Quit" msgstr "à´ªàµà´±à´¤àµà´¤àµàµ à´•à´Ÿà´•àµà´•àµà´•" #: ../src/interface.c:10416 msgid "Close iok application" msgstr "iok à´ªàµà´°à´¯àµ‹à´—à´‚ à´…à´Ÿà´¯àµà´•àµà´•àµà´•" #: ../src/interface.c:10449 msgid "Reassign key value of some key to some other key" msgstr "ഒരൠകീയàµà´Ÿàµ† മൂലàµà´²àµà´¯à´‚ മറàµà´±àµŠà´°àµ കീയàµà´•àµà´•àµàµ നലàµâ€à´•àµà´•" #: ../src/interface.c:10451 msgid "Swap" msgstr "à´¸àµà´µà´¾à´ªàµà´ªàµ" #: ../src/interface.c:10453 msgid "Swap key values between any 2 keys in loaded keymap" msgstr "" "ലഭàµà´¯à´®à´¾à´•àµà´•à´¿à´¯ കീമാപàµà´ªà´¿à´²àµà´³àµà´³ à´à´¤àµ†à´™àµà´•à´¿à´²àµà´‚ à´°à´£àµà´Ÿàµàµ കീകളàµâ€ തമàµà´®à´¿à´²àµâ€ മൂലàµà´²àµà´¯à´‚ " "à´¸àµà´µà´¾à´ªàµà´ªàµ ചെയàµà´¯àµà´•" #. Don't need to show menus #. Create the menu items #: ../src/interface.c:10473 msgid "About" msgstr "സംബനàµà´§à´¿à´šàµà´šàµàµ" #: ../src/interface.c:10475 msgid "About iok application" msgstr "iok à´ªàµà´°à´¯àµ‹à´—à´‚ സംബനàµà´§à´¿à´šàµà´šàµàµ" #: ../src/interface.c:10491 msgid "Keymap" msgstr "കീമാപàµà´ªàµ" #: ../src/interface.c:10494 msgid "Keys" msgstr "കീകളàµâ€" #: ../src/interface.c:10497 msgid "Help" msgstr "സഹായം" #: ../src/interface.c:10682 msgid "Backspace" msgstr "Backspace" #: ../src/interface.c:10699 msgid "Tab" msgstr "Tab" #: ../src/interface.c:10792 msgid "Caps" msgstr "Caps" #: ../src/interface.c:10863 msgid "Enter" msgstr "Enter" #: ../src/interface.c:10879 ../src/interface.c:10944 msgid "Shift" msgstr "Shift" #: ../src/interface.c:10958 msgid "Space" msgstr "Space" #: ../src/interface.c:10965 msgid "Change to Extended layer Keyboard" msgstr "à´Žà´•àµà´¸àµà´±àµà´±àµ†à´¨àµâ€à´¡à´¡àµ ലേയരàµâ€ കീബോരàµâ€à´¡àµ ആയി മാറàµà´±àµà´•" #: ../src/interface.c:10971 msgid "" "Select the language in which you want to write. This list contains keymaps " "in order as inscript then user defined then xkb and then any keymaps opened " "that are not default listed" msgstr "" "à´Žà´´àµà´¤àµà´µà´¾à´¨àµà´³àµà´³ ഭാഷ തെരഞàµà´žàµ†à´Ÿàµà´•àµà´•àµà´•. ഇനàµâ€à´¸àµà´•àµà´°à´¿à´ªàµà´±àµà´±àµ, ഉപയോകàµà´¤à´¾à´µàµàµ സജàµà´œà´®à´¾à´•àµà´•ിയവ," " xkb, à´¸àµà´µà´¤à´µàµ‡ à´µàµà´¯à´•àµà´¤à´®à´¾à´•àµà´•ിയിടàµà´Ÿà´¿à´²àµà´²à´¾à´¤àµà´¤à´¤àµà´‚ à´¤àµà´±à´¨àµà´¨à´¿à´Ÿàµà´Ÿàµà´®àµà´³àµà´³ à´à´¤àµ†à´™àµà´•à´¿à´²àµà´‚ " "കീമാപàµà´ªàµà´•à´³àµâ€ à´Žà´¨àµà´¨à´¿à´™àµà´™à´¨àµ†à´¯àµà´³àµà´³ à´•àµà´°à´®à´¤àµà´¤à´¿à´²à´¾à´£àµàµ പടàµà´Ÿà´¿à´•യിലàµà´³àµà´³ കീമാപàµà´ªàµà´•à´³àµâ€." #. TRANSLATORS: Replace this string with your names, one name per line. #: ../src/interface.c:12541 msgid "translator-credits" msgstr "അനി പീറàµà´±à´°àµâ€ < apeter@redhat.com>" #: ../src/interface.c:12547 msgid "iok" msgstr "iok" #: ../src/interface.c:12548 msgid "GPLv2 or later\n" msgstr "GPLv2 à´…à´²àµà´²àµ†à´™àµà´•à´¿à´²àµâ€ ശേഷമàµà´³àµà´³\n" #: ../src/support.c:90 ../src/support.c:114 #, c-format msgid "Couldn't find pixmap file: %s" msgstr "pixmap ഫയലàµâ€ ലഭàµà´¯à´®à´¾à´•àµà´•àµà´µà´¾à´¨àµâ€ സാധàµà´¯à´®à´¾à´¯à´¿à´²àµà´²: %s" iok-2.1.3/po/mr.po0000644000076400007640000001607011776460111010634 00000000000000# sandeeps , 2012. #zanata msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2012-06-29 14:48+0530\n" "PO-Revision-Date: 2012-07-01 11:38-0400\n" "Last-Translator: sandeeps \n" "Language-Team: Marathi\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Language: mr\n" "Plural-Forms: nplurals=2; plural=(n != 1)\n" "X-Generator: Zanata 1.6.1\n" #: ../iok.desktop.in.h:1 msgid "Indic Onscreen Keyboard" msgstr "इनà¥à¤¡à¤¿à¤• ऑनसà¥à¤•à¥à¤°à¥€à¤¨ किबोरà¥à¤¡" #: ../iok.desktop.in.h:2 msgid "Enter Indic characters with a virtual keyboard" msgstr "आभासी कळफलकसह इंडिक अकà¥à¤·à¤° पà¥à¤°à¤µà¤¿à¤·à¥à¤Ÿ करा" #: ../src/interface.c:1987 msgid "" "This keymap file does not map uniquely to a keyboard and therefore cannot be" " displayed correctly" msgstr "" "हि किमॅप फाइल à¤à¤•मेवरितà¥à¤¯à¤¾ किबोरà¥à¤¡à¤¶à¥€ जà¥à¤³à¤²à¥€ नाही व मà¥à¤¹à¤£à¥‚नच तà¥à¤¯à¤¾à¤¸ योगà¥à¤¯à¤°à¤¿à¤¤à¥à¤¯à¤¾ " "दाखवणे शकà¥à¤¯ नाही" #: ../src/interface.c:3180 msgid "Select the language in which you want to write" msgstr "लिहणà¥à¤¯à¤¾à¤•रीता भाषा निवडा" #: ../src/interface.c:3182 ../src/interface.c:10955 msgid "Change to English Keyboard" msgstr "इंगà¥à¤°à¤œà¥€ कळफलक वापरा" #: ../src/interface.c:3255 msgid "ReassignKey" msgstr "ReassignKey" #: ../src/interface.c:3265 msgid "Reassign Keyvalue of Key" msgstr "कि चे किमूलà¥à¤¯ पà¥à¤¨à¥à¤¹à¤¾ लागू करा" #: ../src/interface.c:3276 msgid "to another Key" msgstr "इतर कि करीता" #. Don't need to show menus #. Create the menu items #: ../src/interface.c:3291 ../src/interface.c:10447 msgid "Reassign" msgstr "पà¥à¤¨à¥à¤¹à¤¾ लागू करा" #: ../src/interface.c:3295 msgid "Cancel" msgstr "रदà¥à¤¦ करा" #: ../src/interface.c:3586 msgid "Open Keymap File" msgstr "किमॅप फाइल उघडा" #: ../src/interface.c:3636 msgid "Write to Keymap File" msgstr "किमॅप फाइल करीता लिहा" #: ../src/interface.c:3655 msgid "" "This application supports only for Inscript type keymaps therefore no custom" " xkb keymaps can be created." msgstr "" "हे ॲपà¥à¤²à¤¿à¤•ेशन फकà¥à¤¤ इंसà¥à¤•à¥à¤°à¤¿à¤ªà¥à¤Ÿ किमॅपला समरà¥à¤¥à¤¨ पà¥à¤°à¤µà¤¤à¥‡ व मà¥à¤¹à¤£à¥‚नच पसंतीचे xkb " "किमॅपà¥à¤¸à¤šà¥‡ निरà¥à¤®à¤¾à¤£ शकà¥à¤¯ नाही." #: ../src/interface.c:3681 msgid "" "This application supports saving the inscript keymaps using filename as " "\"locale_code-custom_name-inscript2.mim\" only. If you are planning to " "change the default keymap name then use only this pattern." msgstr "" "हे ॲपà¥à¤²à¤¿à¤•ेशन \"locale_code-custom_name-inscript2.mim\" पà¥à¤°à¤•ारचà¥à¤¯à¤¾ " "फाइलकरीताच, इंसà¥à¤•à¥à¤°à¤¿à¤ªà¥à¤Ÿ फाइल मà¥à¤¹à¤£à¥‚न साठवणà¥à¤¯à¤¾à¤¸ समरà¥à¤¥à¤¨ पà¥à¤°à¤µà¤¤à¥‡. पूरà¥à¤µà¤¨à¤¿à¤°à¥à¤§à¤¾à¤°à¤¿à¤¤ " "किमॅप नाव बदलायचे असलà¥à¤¯à¤¾à¤µà¤°à¤š या रचनेचा वापर करा." #. Don't need to show menus #. Create the menu items #: ../src/interface.c:10407 msgid "Open" msgstr "उघडा" #: ../src/interface.c:10408 msgid "Open a Keymap that is not listed in a combobox" msgstr "कॉमà¥à¤¬à¥‹à¤¬à¥‰à¤•à¥à¤¸ अंतरà¥à¤—त यादीतील न आढळलेले किमॅप उघडा" #: ../src/interface.c:10410 msgid "Save" msgstr "साठवा" #: ../src/interface.c:10411 msgid "Save current state of loaded keymap to a new keymap" msgstr "दाखल केलेलà¥à¤¯à¤¾ किमॅपचे वरà¥à¤¤à¤®à¤¾à¤¨ सà¥à¤¤à¤° नवीन किमॅप करीता साठवा" #: ../src/interface.c:10414 msgid "Quit" msgstr "बाहेर पडा" #: ../src/interface.c:10416 msgid "Close iok application" msgstr "iok à¤à¤ªà¥à¤²à¥€à¤•ेशन बंद करा" #: ../src/interface.c:10449 msgid "Reassign key value of some key to some other key" msgstr "काहिक किचे कि मूलà¥à¤¯ इतर कि करीता पà¥à¤¨à¥à¤¹ लागू करा" #: ../src/interface.c:10451 msgid "Swap" msgstr "सà¥à¤µà¥…प करा" #: ../src/interface.c:10453 msgid "Swap key values between any 2 keys in loaded keymap" msgstr "" "दाखल केलेले किमॅप अंतरà¥à¤—त कà¥à¤ à¤²à¥à¤¯à¤¾à¤¹à¥€ 2 किजॠअंतरà¥à¤—त कि मूलà¥à¤¯ अदला बदल करा" #. Don't need to show menus #. Create the menu items #: ../src/interface.c:10473 msgid "About" msgstr "विषयी" #: ../src/interface.c:10475 msgid "About iok application" msgstr "iok à¤à¤ªà¥à¤²à¥€à¤•ेशन विषयी" #: ../src/interface.c:10491 msgid "Keymap" msgstr "किमॅप" #: ../src/interface.c:10494 msgid "Keys" msgstr "किजà¥" #: ../src/interface.c:10497 msgid "Help" msgstr "मदत" #: ../src/interface.c:10682 msgid "Backspace" msgstr "बॅकसà¥à¤ªà¥‡à¤¸" #: ../src/interface.c:10699 msgid "Tab" msgstr "टॅब" #: ../src/interface.c:10792 msgid "Caps" msgstr "कॅपà¥à¤¸à¥" #: ../src/interface.c:10863 msgid "Enter" msgstr "à¤à¤¨à¥à¤Ÿà¤°" #: ../src/interface.c:10879 ../src/interface.c:10944 msgid "Shift" msgstr "शिफà¥à¤Ÿ" #: ../src/interface.c:10958 msgid "Space" msgstr "सà¥à¤ªà¥‡à¤¸" #: ../src/interface.c:10965 msgid "Change to Extended layer Keyboard" msgstr "à¤à¤•à¥à¤¸à¤Ÿà¥‡à¤‚डेड लेअर किबोरà¥à¤¡à¤šà¤¾ वापर करा" #: ../src/interface.c:10971 msgid "" "Select the language in which you want to write. This list contains keymaps " "in order as inscript then user defined then xkb and then any keymaps opened " "that are not default listed" msgstr "" "लिहणà¥à¤¯à¤¾à¤•रीता भाषा निवडा. या यादीत किमॅप इनसà¥à¤•à¥à¤°à¤¿à¤ªà¥à¤Ÿà¤šà¥à¤¯à¤¾ कà¥à¤°à¤®à¤µà¤¾à¤°à¥€ नà¥à¤°à¥‚प, नंतर" " वापरकरà¥à¤¤à¤¾ दà¥à¤µà¤¾à¤°à¥‡ निशà¥à¤šà¤¿à¤¤, तà¥à¤¯à¤¾à¤¨à¤‚तर xkb व शेवटी कà¥à¤ à¤²à¤¿à¤¹à¥€ मà¥à¤²à¤­à¥‚त सà¥à¤µà¤°à¥‚पी यादीत" " न दरà¥à¤¶à¤µà¤²à¥‡à¤²à¥à¤¯à¤¾ किमॅप नà¥à¤°à¥‚प" #. TRANSLATORS: Replace this string with your names, one name per line. #: ../src/interface.c:12541 msgid "translator-credits" msgstr "संदिप शेडमाके , 2009, 2011." #: ../src/interface.c:12547 msgid "iok" msgstr "iok" #: ../src/interface.c:12548 msgid "GPLv2 or later\n" msgstr "GPLv2 किंवा पà¥à¤¢à¤¿à¤²\n" #: ../src/support.c:90 ../src/support.c:114 #, c-format msgid "Couldn't find pixmap file: %s" msgstr "pixmap फाइल आढळले नाही: %s" iok-2.1.3/po/as.po0000644000076400007640000001641311776460111010622 00000000000000# ngoswami , 2012. #zanata msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2012-06-29 14:48+0530\n" "PO-Revision-Date: 2012-07-05 05:19-0400\n" "Last-Translator: ngoswami \n" "Language-Team: Assamese\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Language: as\n" "Plural-Forms: nplurals=2; plural=(n != 1)\n" "X-Generator: Zanata 1.6.1\n" #: ../iok.desktop.in.h:1 msgid "Indic Onscreen Keyboard" msgstr "ইনà§à¦¡à¦¿à¦• অনসà§à¦•à§à§°à¦¿à¦£ কিবৰà§à¦¡" #: ../iok.desktop.in.h:2 msgid "Enter Indic characters with a virtual keyboard" msgstr "à¦à¦Ÿà¦¾ ভাৰà§à¦šà§à§±à§‡à¦² কিবৰà§à¦¡à§°à§‡ ইনà§à¦¡à¦¿à¦• আখৰ লিখক" #: ../src/interface.c:1987 msgid "" "This keymap file does not map uniquely to a keyboard and therefore cannot be" " displayed correctly" msgstr "" "à¦à¦‡ কি'মেপ à¦à¦Ÿà¦¾ কিবৰà§à¦¡à§° সৈতে অবিকলà§à¦ªà¦¿à¦¤à¦­à¦¾à§±à§‡ মেপ নকৰে আৰৠসেয়েহে সঠিকভাৱে " "পà§à§°à¦¦à§°à§à¦¶à¦¨ কৰিব নোৱাৰি।" #: ../src/interface.c:3180 msgid "Select the language in which you want to write" msgstr "আপà§à¦¨à¦¿ লিখিবলৈ বà§à¦¯à§±à¦¹à¦¾à§° কৰিব বিচৰা ভাষা বাছক" #: ../src/interface.c:3182 ../src/interface.c:10955 msgid "Change to English Keyboard" msgstr "ইংৰাজী কিবৰà§à¦¡à¦²à§ˆ সলনি কৰক" #: ../src/interface.c:3255 msgid "ReassignKey" msgstr "ReassignKey" #: ../src/interface.c:3265 msgid "Reassign Keyvalue of Key" msgstr "কি'à§° কি'মান পà§à¦¨à§° ধাৰà§à¦¯à§à¦¯ কৰক" #: ../src/interface.c:3276 msgid "to another Key" msgstr "অনà§à¦¯ à¦à¦Ÿà¦¾ কি'লৈ" #. Don't need to show menus #. Create the menu items #: ../src/interface.c:3291 ../src/interface.c:10447 msgid "Reassign" msgstr "পà§à¦¨à§° ধাৰà§à¦¯à§à¦¯ কৰক" #: ../src/interface.c:3295 msgid "Cancel" msgstr "বাতিল কৰক" #: ../src/interface.c:3586 msgid "Open Keymap File" msgstr "কি'মেপ নথিপতà§à§° খোলক" #: ../src/interface.c:3636 msgid "Write to Keymap File" msgstr "কি'মেপ নথিপতà§à§°à¦²à§ˆ লিখক" #: ../src/interface.c:3655 msgid "" "This application supports only for Inscript type keymaps therefore no custom" " xkb keymaps can be created." msgstr "" "à¦à¦‡ অনà§à¦ªà§à§°à§Ÿà§‹à¦—ে কেৱল ইনসà§à¦•à§à§°à¦¿à¦ªà§à¦Ÿ ধৰণ কিমেপসমূহ সমৰà§à¦¥à¦¨ কৰে সেয়েহে কোনো " "সà§à¦¬à¦¾à¦¨à¦¿à§°à§à¦¬à¦¾à¦šà¦¿à¦¤ xkb কি'মেপ সৃষà§à¦Ÿà¦¿ কৰিব নোৱাৰি।" #: ../src/interface.c:3681 msgid "" "This application supports saving the inscript keymaps using filename as " "\"locale_code-custom_name-inscript2.mim\" only. If you are planning to " "change the default keymap name then use only this pattern." msgstr "" "à¦à¦‡ অনà§à¦ªà§à§°à§Ÿà§‹à¦—ে কেৱল নথিপতà§à§°à¦¨à¦¾à¦® \"locale_code-custom_name-inscript2.mim\" " "বà§à¦¯à§±à¦¹à¦¾à§° কৰি ইনসà§à¦•à§à§°à¦¿à¦ªà§à¦Ÿ কি'মেপসমূহ সংৰকà§à¦·à¦£ কৰাটো সমৰà§à¦¥à¦¨ কৰে। যদি আপà§à¦¨à¦¿ " "অবিকলà§à¦ªà¦¿à¦¤ কি'মেপ নাম পৰিৱৰà§à¦¤à¦¨ কৰিব বà§à¦²à¦¿ ভাৱি আছে তেনà§à¦¤à§‡ কেৱল à¦à¦‡ বিনà§à¦¯à¦¾à¦¸ " "বà§à¦¯à§±à¦¹à¦¾à§° কৰিব।" #. Don't need to show menus #. Create the menu items #: ../src/interface.c:10407 msgid "Open" msgstr "খোলক" #: ../src/interface.c:10408 msgid "Open a Keymap that is not listed in a combobox" msgstr "কমà§à¦¬à§‹à¦¬à¦¾à¦•চত নথকা à¦à¦Ÿà¦¾ কি'মেপ খোলক" #: ../src/interface.c:10410 msgid "Save" msgstr "সাà¦à¦šà¦•" #: ../src/interface.c:10411 msgid "Save current state of loaded keymap to a new keymap" msgstr "ল'ড কৰা কি'মেপৰ বৰà§à¦¤à§à¦¤à¦®à¦¾à¦¨à§° অৱসà§à¦¥à¦¾ নতà§à¦¨ কি'মেপলৈ সাà¦à¦šà¦•" #: ../src/interface.c:10414 msgid "Quit" msgstr "পà§à§°à¦¸à§à¦¥à¦¾à¦¨ কৰক" #: ../src/interface.c:10416 msgid "Close iok application" msgstr "iok অনà§à¦ªà§à§°à§Ÿà§‹à¦— বনà§à¦§ কৰক" #: ../src/interface.c:10449 msgid "Reassign key value of some key to some other key" msgstr "কোনো কি'à§° মান অনà§à¦¯ à¦à¦Ÿà¦¾ কি'লৈ পà§à¦¨à¦ƒ ধাৰà§à¦¯à§à¦¯ কৰক" #: ../src/interface.c:10451 msgid "Swap" msgstr "শà§à¦¬à¦¾à¦ª কৰক" #: ../src/interface.c:10453 msgid "Swap key values between any 2 keys in loaded keymap" msgstr "ল'ড কৰা কি'মেপৰ যিকোনো ২ টা মান শà§à¦¬à¦¾à¦ª কৰক" #. Don't need to show menus #. Create the menu items #: ../src/interface.c:10473 msgid "About" msgstr "বিষয়ে" #: ../src/interface.c:10475 msgid "About iok application" msgstr "iok অনà§à¦ªà§à§°à§Ÿà§‹à¦—à§° বিষয়ে" #: ../src/interface.c:10491 msgid "Keymap" msgstr "কি'মেপ" #: ../src/interface.c:10494 msgid "Keys" msgstr "কি'বোৰ" #: ../src/interface.c:10497 msgid "Help" msgstr "সহায়" #: ../src/interface.c:10682 msgid "Backspace" msgstr "Backspace" #: ../src/interface.c:10699 msgid "Tab" msgstr "Tab" #: ../src/interface.c:10792 msgid "Caps" msgstr "Caps" #: ../src/interface.c:10863 msgid "Enter" msgstr "Enter" #: ../src/interface.c:10879 ../src/interface.c:10944 msgid "Shift" msgstr "Shift" #: ../src/interface.c:10958 msgid "Space" msgstr "Space" #: ../src/interface.c:10965 msgid "Change to Extended layer Keyboard" msgstr "পà§à§°à¦¸à¦¾à§°à¦¿à¦¤ সà§à¦¤à§° কিবৰà§à¦¡à¦²à§‡ পৰিবৰà§à¦¤à¦¨ কৰক" #: ../src/interface.c:10971 msgid "" "Select the language in which you want to write. This list contains keymaps " "in order as inscript then user defined then xkb and then any keymaps opened " "that are not default listed" msgstr "" "আপà§à¦¨à¦¿ লিখিবলৈ বà§à¦¯à§±à¦¹à¦¾à§° কৰিব বিচৰা ভাষা বাছক। à¦à¦‡ তালিকায় কি'মেপসমূহ যি কà§à§°à¦®à§‡ " "ইনসà§à¦•à§à§°à¦¿à¦ªà§à¦Ÿ তাৰ পিছত বà§à¦¯à§±à¦¹à¦¾à§°à¦•াৰীয়ে সংজà§à¦žà¦¾ দিয়া তাৰ পিছত xkb আৰৠতাৰ পিছত " "কোনো খোলা কি'মেপ যাক অবিকলà§à¦ªà¦¿à¦¤ ৰূপে তালিকাভà§à¦•à§à¦¤ কৰা হোৱা নাই অনà§à¦¤à§°à§à¦­à§à¦•à§à¦¤ কৰে" #. TRANSLATORS: Replace this string with your names, one name per line. #: ../src/interface.c:12541 msgid "translator-credits" msgstr "" "অমিতাকà§à¦· ফà§à¦•ন (aphukan@fedoraproject.org), নীলমদà§à¦¯à§à¦¤à¦¿ গোসà§à¦¬à¦¾à¦®à§€ " "(ngoswami@redhat.com)" #: ../src/interface.c:12547 msgid "iok" msgstr "iok" #: ../src/interface.c:12548 msgid "GPLv2 or later\n" msgstr "GPLv2 বা তাৰ পিছৰ\n" #: ../src/support.c:90 ../src/support.c:114 #, c-format msgid "Couldn't find pixmap file: %s" msgstr "পিকà§à¦¸à¦®à§‡à¦ª নথিপতà§à§° পোৱা নগল: %s" iok-2.1.3/po/mni.po0000644000076400007640000001235711776460111011005 00000000000000# SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. # FIRST AUTHOR , YEAR. # #, fuzzy msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2012-06-29 14:48+0530\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: Manipuri \n" "Language: \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=utf-8\n" "Content-Transfer-Encoding: 8bit\n" #: ../iok.desktop.in.h:1 msgid "Indic Onscreen Keyboard" msgstr "ইনà§à¦¡à¦¿à¦• অন-সà§à¦•à§à¦°à§€à¦¨ কি-বোরà§à¦¡" #: ../iok.desktop.in.h:2 msgid "Enter Indic characters with a virtual keyboard" msgstr "ভারà§à¦šà§à§Ÿà¦¾à¦² কি-বোরà§à¦¡à§‡à¦° সাহাযà§à¦¯à§‡ ভারতীয় ভাষার লিপি লিখà§à¦¨" #: ../src/interface.c:1987 msgid "" "This keymap file does not map uniquely to a keyboard and therefore cannot be " "displayed correctly" msgstr "" #: ../src/interface.c:3180 msgid "Select the language in which you want to write" msgstr "লেখার জনà§à¦¯ বà§à¦¯à¦¬à¦¹à¦¾à¦° করতে ইচà§à¦›à§à¦• ভাষা নিরà§à¦¬à¦¾à¦šà¦¨ করà§à¦¨" #: ../src/interface.c:3182 ../src/interface.c:10955 msgid "Change to English Keyboard" msgstr "ইংরাজি কি-বোরà§à¦¡à§‡ পরিবরà§à¦¤à¦¨ করà§à¦¨" #: ../src/interface.c:3255 msgid "ReassignKey" msgstr "" #: ../src/interface.c:3265 msgid "Reassign Keyvalue of Key" msgstr "" #: ../src/interface.c:3276 msgid "to another Key" msgstr "" #. Don't need to show menus #. Create the menu items #: ../src/interface.c:3291 ../src/interface.c:10447 msgid "Reassign" msgstr "পà§à¦¨à¦°à¦¾à§Ÿ মান নিরà§à¦§à¦¾à¦°à¦£" #: ../src/interface.c:3295 msgid "Cancel" msgstr "বাতিল" #: ../src/interface.c:3586 msgid "Open Keymap File" msgstr "কি-মà§à¦¯à¦¾à¦ª ফাইল খà§à¦²à§à¦¨" #: ../src/interface.c:3636 msgid "Write to Keymap File" msgstr "কি-মà§à¦¯à¦¾à¦ª ফাইল লিখà§à¦¨" #: ../src/interface.c:3655 msgid "" "This application supports only for Inscript type keymaps therefore no custom " "xkb keymaps can be created." msgstr "" #: ../src/interface.c:3681 msgid "" "This application supports saving the inscript keymaps using filename as " "\"locale_code-custom_name-inscript2.mim\" only. If you are planning to " "change the default keymap name then use only this pattern." msgstr "" #. Don't need to show menus #. Create the menu items #: ../src/interface.c:10407 msgid "Open" msgstr "খà§à¦²à§à¦¨" #: ../src/interface.c:10408 msgid "Open a Keymap that is not listed in a combobox" msgstr "কমà§à¦¬à§‹-বকà§à¦¸à§‡à¦° মধà§à¦¯à§‡ তালিকাভà§à¦•à§à¦¤ না হওয়া à¦à¦•টি কি-মà§à¦¯à¦¾à¦ª খà§à¦²à§à¦¨" #: ../src/interface.c:10410 msgid "Save" msgstr "সংরকà§à¦·à¦£ করà§à¦¨" #: ../src/interface.c:10411 msgid "Save current state of loaded keymap to a new keymap" msgstr "লোড করা কি-মà§à¦¯à¦¾à¦ªà§‡à¦° বরà§à¦¤à¦®à¦¾à¦¨ অবসà§à¦¥à¦¾ à¦à¦•টি নতà§à¦¨ কি-মà§à¦¯à¦¾à¦ªà§‡ সংরকà§à¦·à¦£ করা হবে" #: ../src/interface.c:10414 msgid "Quit" msgstr "পà§à¦°à¦¸à§à¦¥à¦¾à¦¨" #: ../src/interface.c:10416 msgid "Close iok application" msgstr "iok অà§à¦¯à¦¾à¦ªà§à¦²à¦¿à¦•েশন বনà§à¦§ করà§à¦¨" #: ../src/interface.c:10449 msgid "Reassign key value of some key to some other key" msgstr "কোনো কি-র মান অনà§à¦¯ à¦à¦•টি কি-র জনà§à¦¯ ধারà§à¦¯ করà§à¦¨" #: ../src/interface.c:10451 msgid "Swap" msgstr "" #: ../src/interface.c:10453 msgid "Swap key values between any 2 keys in loaded keymap" msgstr "" #. Don't need to show menus #. Create the menu items #: ../src/interface.c:10473 msgid "About" msgstr "" #: ../src/interface.c:10475 msgid "About iok application" msgstr "" #: ../src/interface.c:10491 msgid "Keymap" msgstr "" #: ../src/interface.c:10494 msgid "Keys" msgstr "" #: ../src/interface.c:10497 msgid "Help" msgstr "" #: ../src/interface.c:10682 msgid "Backspace" msgstr "" #: ../src/interface.c:10699 msgid "Tab" msgstr "" #: ../src/interface.c:10792 msgid "Caps" msgstr "" #: ../src/interface.c:10863 msgid "Enter" msgstr "" #: ../src/interface.c:10879 ../src/interface.c:10944 msgid "Shift" msgstr "" #: ../src/interface.c:10958 msgid "Space" msgstr "" #: ../src/interface.c:10965 msgid "Change to Extended layer Keyboard" msgstr "কি-বোরà§à¦¡à§‡à¦° বরà§à¦§à¦¿à¦¤ সà§à¦¤à¦°à§‡ পরিবরà§à¦¤à¦¨ করà§à¦¨" #: ../src/interface.c:10971 msgid "" "Select the language in which you want to write. This list contains keymaps " "in order as inscript then user defined then xkb and then any keymaps opened " "that are not default listed" msgstr "" #. TRANSLATORS: Replace this string with your names, one name per line. #: ../src/interface.c:12541 msgid "translator-credits" msgstr "" #: ../src/interface.c:12547 msgid "iok" msgstr "" #: ../src/interface.c:12548 msgid "GPLv2 or later\n" msgstr "" #: ../src/support.c:90 ../src/support.c:114 #, c-format msgid "Couldn't find pixmap file: %s" msgstr "" iok-2.1.3/po/or.po0000644000076400007640000001726411776460111010644 00000000000000# mgiri , 2012. #zanata msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2012-06-29 14:48+0530\n" "PO-Revision-Date: 2012-07-05 03:31-0400\n" "Last-Translator: mgiri \n" "Language-Team: Oriya\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Language: or\n" "Plural-Forms: nplurals=2; plural=(n != 1)\n" "X-Generator: Zanata 1.6.1\n" #: ../iok.desktop.in.h:1 msgid "Indic Onscreen Keyboard" msgstr "ଭାରତୀୟ ଅନସà­à¬•à­à¬°à¬¿à¬¨ କିବୋରà­à¬¡" #: ../iok.desktop.in.h:2 msgid "Enter Indic characters with a virtual keyboard" msgstr "ଗୋଟିଠଆଭାସୀ କିବୋରà­à¬¡ ସହିତ ଭାରତୀୟ ଅକà­à¬·à¬°à¬—à­à¬¡à¬¼à¬¿à¬•ୠଭରଣ କରନà­à¬¤à­" #: ../src/interface.c:1987 msgid "" "This keymap file does not map uniquely to a keyboard and therefore cannot be" " displayed correctly" msgstr "" "à¬à¬¹à¬¿ କିମà­à­Ÿà¬¾à¬ª ଫାଇଲ କୌଣସି କିବୋରà­à¬¡ ସହିତ ମିଶି ନଥାଠà¬à¬¬à¬‚ ତେଣୠସଠିକ ଭାବରେ ଦରà­à¬¶à¬¾à¬‡ " "ହà­à¬à¬¨à¬¾à¬¹à¬¿à¬" #: ../src/interface.c:3180 msgid "Select the language in which you want to write" msgstr "ଆପଣ କେଉଠଭାଷାରେ ଲେଖିବାକୠଚାହà­à¬à¬›à¬¨à­à¬¤à¬¿ ତାହା ବାଛନà­à¬¤à­" #: ../src/interface.c:3182 ../src/interface.c:10955 msgid "Change to English Keyboard" msgstr "ଇଂରାଜୀ କିବୋରà­à¬¡à¬•ୠପରିବରà­à¬¤à­à¬¤à¬¨ କରନà­à¬¤à­" #: ../src/interface.c:3255 msgid "ReassignKey" msgstr "ReassignKey" #: ../src/interface.c:3265 msgid "Reassign Keyvalue of Key" msgstr "କି ର କି ମୂଲà­à­Ÿà¬•ୠପà­à¬¨à¬ƒà¬ªà­à¬°à¬¦à¬¾à¬¨ କରନà­à¬¤à­" #: ../src/interface.c:3276 msgid "to another Key" msgstr "ଅନà­à­Ÿ à¬à¬• କି କà­" #. Don't need to show menus #. Create the menu items #: ../src/interface.c:3291 ../src/interface.c:10447 msgid "Reassign" msgstr "ପà­à¬¨à¬ƒ ପà­à¬°à¬¦à¬¾à¬¨ କରନà­à¬¤à­" #: ../src/interface.c:3295 msgid "Cancel" msgstr "ବାତିଲ କରନà­à¬¤à­" #: ../src/interface.c:3586 msgid "Open Keymap File" msgstr "କି ମà­à­Ÿà¬¾à¬ª ଫାଇଲକୠଖୋଲନà­à¬¤à­" #: ../src/interface.c:3636 msgid "Write to Keymap File" msgstr "କି ମà­à­Ÿà¬¾à¬ª ଫାଇଲରେ ଲେଖନà­à¬¤à­" #: ../src/interface.c:3655 msgid "" "This application supports only for Inscript type keymaps therefore no custom" " xkb keymaps can be created." msgstr "" "à¬à¬¹à¬¿ ପà­à¬°à­Ÿà­‹à¬— କେବଳ ଇନସà­à¬•à­à¬°à¬¿à¬ªà­à¬Ÿ କିମà­à­Ÿà¬¾à¬ªà¬•ୠସହାୟତା ଦେଇଥାଠତେଣୠକୌଣସି xkb କିମà­à­Ÿà¬¾à¬ªà¬•à­" " ନିରà­à¬®à¬¾à¬£ କରିହà­à¬ ନାହିà¬à¥¤" #: ../src/interface.c:3681 msgid "" "This application supports saving the inscript keymaps using filename as " "\"locale_code-custom_name-inscript2.mim\" only. If you are planning to " "change the default keymap name then use only this pattern." msgstr "" "à¬à¬¹à¬¿ ପà­à¬°à­Ÿà­‹à¬— ଇନସà­à¬•à­à¬°à¬¿à¬ªà­à¬Ÿ କିମà­à­Ÿà¬¾à¬ªà¬•à­ \"locale_code-custom_name-inscript2.mim\" " "ନାମକ ଫାଇଲନାମ ବà­à­Ÿà¬¬à¬¹à¬¾à¬° କରି ସହାୟତା ଦେଇଥାà¬à¥¤ ଯଦି ଆପଣ ପୂରà­à¬¬à¬¨à¬¿à¬°à­à¬¦à­à¬§à¬¾à¬°à¬¿à¬¤ କିମà­à­Ÿà¬¾à¬ª " "ନାମକୠପରିବରà­à¬¤à­à¬¤à¬¨ କରିବାକୠଚାହà­à¬à¬›à¬¨à­à¬¤à¬¿ ତେବେ କେବଳ à¬à¬¹à¬¿ ଶୈଳୀକୠବà­à­Ÿà¬¬à¬¹à¬¾à¬° କରନà­à¬¤à­à¥¤" #. Don't need to show menus #. Create the menu items #: ../src/interface.c:10407 msgid "Open" msgstr "ଖୋଲନà­à¬¤à­" #: ../src/interface.c:10408 msgid "Open a Keymap that is not listed in a combobox" msgstr "ଗୋଟିଠକି ମà­à­Ÿà¬¾à¬ª ଖୋଲନà­à¬¤à­ ଯାହାକି କମà­à¬¬à­‹ ବାକà­à¬¸à¬°à­‡ ତାଲିକାଭà­à¬•à­à¬¤ ହୋଇନାହିà¬" #: ../src/interface.c:10410 msgid "Save" msgstr "ସଂରକà­à¬·à¬£ କରନà­à¬¤à­" #: ../src/interface.c:10411 msgid "Save current state of loaded keymap to a new keymap" msgstr "" "ଧାରଣ କରାଯାଇଥିବା କି ମà­à­Ÿà¬¾à¬ªà¬° ସାମà­à¬ªà­à¬°à¬¤à¬¿à¬• ସà­à¬¥à¬¿à¬¤à¬¿à¬•ୠଗୋଟିଠନୂତନ କି ମà­à­Ÿà¬¾à¬ªà¬°à­‡ ସଂରକà­à¬·à¬£ " "କରନà­à¬¤à­" #: ../src/interface.c:10414 msgid "Quit" msgstr "ବିଦାୟ ନିଅନà­à¬¤à­" #: ../src/interface.c:10416 msgid "Close iok application" msgstr "iok ପà­à¬°à­Ÿà­‹à¬—କୠବନà­à¬¦ କରନà­à¬¤à­" #: ../src/interface.c:10449 msgid "Reassign key value of some key to some other key" msgstr "କିଛି କି ର କି ମୂଲà­à­Ÿà¬•ୠଅନà­à­Ÿ କିଛି କିକୠପà­à¬¨à¬ƒ ପà­à¬°à¬¦à¬¾à¬¨ କରନà­à¬¤à­" #: ../src/interface.c:10451 msgid "Swap" msgstr "ଅଦଳ ବଦଳ କରନà­à¬¤à­" #: ../src/interface.c:10453 msgid "Swap key values between any 2 keys in loaded keymap" msgstr "ଧାରଣ କରାଯାଇଥିବା ଯେକୌଣସି 2ଟି କି ମଧà­à¬¯à¬°à­‡ କି ମୂଲà­à­Ÿà¬—à­à¬¡à¬¼à¬¿à¬•ୠଅଦଳ ବଦଳ କରନà­à¬¤à­" #. Don't need to show menus #. Create the menu items #: ../src/interface.c:10473 msgid "About" msgstr "ବିବରଣୀ" #: ../src/interface.c:10475 msgid "About iok application" msgstr "iok ପà­à¬°à­Ÿà­‹à¬— ବିଷୟରେ" #: ../src/interface.c:10491 msgid "Keymap" msgstr "କି ମà­à­Ÿà¬¾à¬ª" #: ../src/interface.c:10494 msgid "Keys" msgstr "କି ଗà­à¬¡à¬¼à¬¿à¬•" #: ../src/interface.c:10497 msgid "Help" msgstr "ସହାୟତା" #: ../src/interface.c:10682 msgid "Backspace" msgstr "Backspace" #: ../src/interface.c:10699 msgid "Tab" msgstr "Tab" #: ../src/interface.c:10792 msgid "Caps" msgstr "Caps" #: ../src/interface.c:10863 msgid "Enter" msgstr "Enter" #: ../src/interface.c:10879 ../src/interface.c:10944 msgid "Shift" msgstr "Shift" #: ../src/interface.c:10958 msgid "Space" msgstr "Space" #: ../src/interface.c:10965 msgid "Change to Extended layer Keyboard" msgstr "ଅନà­à¬²à¬®à­à¬¬à¬¿à¬¤ ସà­à¬¤à¬° କିବୋରà­à¬¡à¬•ୠପରିବରà­à¬¤à­à¬¤à¬¨ କରନà­à¬¤à­" #: ../src/interface.c:10971 msgid "" "Select the language in which you want to write. This list contains keymaps " "in order as inscript then user defined then xkb and then any keymaps opened " "that are not default listed" msgstr "" "ଆପଣ କେଉଠଭାଷାରେ ଲେଖିବାକୠଚାହà­à¬à¬›à¬¨à­à¬¤à¬¿ ତାହା ବାଛନà­à¬¤à­à¥¤ à¬à¬¹à¬¿ ତାଲିକା ନିମà­à¬¨à¬²à¬¿à¬–ିତ " "କà­à¬°à¬®à¬°à­‡ କିମà­à­Ÿà¬¾à¬ªà¬—à­à¬¡à¬¼à¬¿à¬•ୠଧାରଣ କରିଥାà¬: ଇନସà­à¬•à­à¬°à¬¿à¬ªà­à¬Ÿ (inscript) ତାପରେ ଚାଳକ " "ନିରà­à¬¦à­à¬§à¬¾à¬°à¬¿à¬¤ ତାପରେ xkb à¬à¬¬à¬‚ ତାପରେ ଖୋଲାଯାଇଥିବା ଯେକୌଣସି କିମà­à­Ÿà¬¾à¬ª ଯାହାକି " "ପୂରà­à¬¬à¬¨à¬¿à¬°à­à¬¦à­à¬§à¬¾à¬°à¬¿à¬¤ ଭାବରେ ତାଲିକାଭà­à¬•à­à¬¤ ନà­à¬¹à¬" #. TRANSLATORS: Replace this string with your names, one name per line. #: ../src/interface.c:12541 msgid "translator-credits" msgstr "ମନୋଜ କà­à¬®à¬¾à¬° ଗିରି " #: ../src/interface.c:12547 msgid "iok" msgstr "iok" #: ../src/interface.c:12548 msgid "GPLv2 or later\n" msgstr "GPLv2 କିମà­à¬¬à¬¾ ପରବରà­à¬¤à­à¬¤à¬¿\n" #: ../src/support.c:90 ../src/support.c:114 #, c-format msgid "Couldn't find pixmap file: %s" msgstr "pixmap ଫାଇଲକୠଖୋଜି ପାଇଲା ନାହିà¬: %s" iok-2.1.3/po/ChangeLog0000644000076400007640000000001411776460111011417 00000000000000See git log iok-2.1.3/po/sd.po0000644000076400007640000000774211776460111010632 00000000000000# SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. # FIRST AUTHOR , YEAR. # #, fuzzy msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2012-06-29 14:48+0530\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: Sindhi \n" "Language: \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=utf-8\n" "Content-Transfer-Encoding: 8bit\n" #: ../iok.desktop.in.h:1 msgid "Indic Onscreen Keyboard" msgstr "" #: ../iok.desktop.in.h:2 msgid "Enter Indic characters with a virtual keyboard" msgstr "" #: ../src/interface.c:1987 msgid "" "This keymap file does not map uniquely to a keyboard and therefore cannot be " "displayed correctly" msgstr "" #: ../src/interface.c:3180 msgid "Select the language in which you want to write" msgstr "" #: ../src/interface.c:3182 ../src/interface.c:10955 msgid "Change to English Keyboard" msgstr "" #: ../src/interface.c:3255 msgid "ReassignKey" msgstr "" #: ../src/interface.c:3265 msgid "Reassign Keyvalue of Key" msgstr "" #: ../src/interface.c:3276 msgid "to another Key" msgstr "" #. Don't need to show menus #. Create the menu items #: ../src/interface.c:3291 ../src/interface.c:10447 msgid "Reassign" msgstr "" #: ../src/interface.c:3295 msgid "Cancel" msgstr "" #: ../src/interface.c:3586 msgid "Open Keymap File" msgstr "" #: ../src/interface.c:3636 msgid "Write to Keymap File" msgstr "" #: ../src/interface.c:3655 msgid "" "This application supports only for Inscript type keymaps therefore no custom " "xkb keymaps can be created." msgstr "" #: ../src/interface.c:3681 msgid "" "This application supports saving the inscript keymaps using filename as " "\"locale_code-custom_name-inscript2.mim\" only. If you are planning to " "change the default keymap name then use only this pattern." msgstr "" #. Don't need to show menus #. Create the menu items #: ../src/interface.c:10407 msgid "Open" msgstr "" #: ../src/interface.c:10408 msgid "Open a Keymap that is not listed in a combobox" msgstr "" #: ../src/interface.c:10410 msgid "Save" msgstr "" #: ../src/interface.c:10411 msgid "Save current state of loaded keymap to a new keymap" msgstr "" #: ../src/interface.c:10414 msgid "Quit" msgstr "" #: ../src/interface.c:10416 msgid "Close iok application" msgstr "" #: ../src/interface.c:10449 msgid "Reassign key value of some key to some other key" msgstr "" #: ../src/interface.c:10451 msgid "Swap" msgstr "" #: ../src/interface.c:10453 msgid "Swap key values between any 2 keys in loaded keymap" msgstr "" #. Don't need to show menus #. Create the menu items #: ../src/interface.c:10473 msgid "About" msgstr "" #: ../src/interface.c:10475 msgid "About iok application" msgstr "" #: ../src/interface.c:10491 msgid "Keymap" msgstr "" #: ../src/interface.c:10494 msgid "Keys" msgstr "" #: ../src/interface.c:10497 msgid "Help" msgstr "" #: ../src/interface.c:10682 msgid "Backspace" msgstr "" #: ../src/interface.c:10699 msgid "Tab" msgstr "" #: ../src/interface.c:10792 msgid "Caps" msgstr "" #: ../src/interface.c:10863 msgid "Enter" msgstr "" #: ../src/interface.c:10879 ../src/interface.c:10944 msgid "Shift" msgstr "" #: ../src/interface.c:10958 msgid "Space" msgstr "" #: ../src/interface.c:10965 msgid "Change to Extended layer Keyboard" msgstr "" #: ../src/interface.c:10971 msgid "" "Select the language in which you want to write. This list contains keymaps " "in order as inscript then user defined then xkb and then any keymaps opened " "that are not default listed" msgstr "" #. TRANSLATORS: Replace this string with your names, one name per line. #: ../src/interface.c:12541 msgid "translator-credits" msgstr "" #: ../src/interface.c:12547 msgid "iok" msgstr "" #: ../src/interface.c:12548 msgid "GPLv2 or later\n" msgstr "" #: ../src/support.c:90 ../src/support.c:114 #, c-format msgid "Couldn't find pixmap file: %s" msgstr "" iok-2.1.3/po/de.po0000644000076400007640000002030511776460111010602 00000000000000# German translation of iok # Copyright (C) 2008 iok # This file is distributed under the same license as the iok package. # Fabian Affolter , 2009. # Dominik Sandjaja , 2009. # msgid "" msgstr "" "Project-Id-Version: iok\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2012-06-29 14:48+0530\n" "PO-Revision-Date: 2009-08-04 09:04+0100\n" "Last-Translator: Fabian Affolter \n" "Language-Team: German \n" "Language: de\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=utf-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Poedit-Language: German\n" #: ../iok.desktop.in.h:1 msgid "Indic Onscreen Keyboard" msgstr "Indische Bildschirm-Tastatur" #: ../iok.desktop.in.h:2 msgid "Enter Indic characters with a virtual keyboard" msgstr "Indische Zeichen mit der virtuellen Tastatur eingeben" #: ../src/interface.c:1987 msgid "" "This keymap file does not map uniquely to a keyboard and therefore cannot be " "displayed correctly" msgstr "" #: ../src/interface.c:3180 msgid "Select the language in which you want to write" msgstr "Wählen Sie die Sprache, in der Sie schreiben wollen" #: ../src/interface.c:3182 ../src/interface.c:10955 msgid "Change to English Keyboard" msgstr "Zur englischen Tastatur wechseln" #: ../src/interface.c:3255 msgid "ReassignKey" msgstr "ReassignKey" #: ../src/interface.c:3265 msgid "Reassign Keyvalue of Key" msgstr "Neuzuweisung des Tastenwerts der Taste" #: ../src/interface.c:3276 msgid "to another Key" msgstr "auf eine andere Taste" #. Don't need to show menus #. Create the menu items #: ../src/interface.c:3291 ../src/interface.c:10447 msgid "Reassign" msgstr "Neuzuweisung" #: ../src/interface.c:3295 msgid "Cancel" msgstr "Abbruch" #: ../src/interface.c:3586 msgid "Open Keymap File" msgstr "Keymap-Datei öffnen" #: ../src/interface.c:3636 msgid "Write to Keymap File" msgstr "In Keymap-Datei schreiben" #: ../src/interface.c:3655 msgid "" "This application supports only for Inscript type keymaps therefore no custom " "xkb keymaps can be created." msgstr "" #: ../src/interface.c:3681 msgid "" "This application supports saving the inscript keymaps using filename as " "\"locale_code-custom_name-inscript2.mim\" only. If you are planning to " "change the default keymap name then use only this pattern." msgstr "" #. Don't need to show menus #. Create the menu items #: ../src/interface.c:10407 msgid "Open" msgstr "Öffnen" #: ../src/interface.c:10408 msgid "Open a Keymap that is not listed in a combobox" msgstr "Keymap-Datei öffnen, die in keiner Combo-Box aufgelistet ist" #: ../src/interface.c:10410 msgid "Save" msgstr "Speichern" #: ../src/interface.c:10411 msgid "Save current state of loaded keymap to a new keymap" msgstr "Aktuellen Zustand der geladenen Keymap als neue Keymap speichern" #: ../src/interface.c:10414 msgid "Quit" msgstr "Beenden" #: ../src/interface.c:10416 msgid "Close iok application" msgstr "iok-Anwendung schließen" #: ../src/interface.c:10449 msgid "Reassign key value of some key to some other key" msgstr "Neuzuweisung eines Tastenwerts zu einer anderen Taste" #: ../src/interface.c:10451 msgid "Swap" msgstr "Wechsle" #: ../src/interface.c:10453 msgid "Swap key values between any 2 keys in loaded keymap" msgstr "" "Tastenwerte zwischen zwei beliebigen Tasten in der geladenen Keymap " "austauschen" #. Don't need to show menus #. Create the menu items #: ../src/interface.c:10473 msgid "About" msgstr "Über" #: ../src/interface.c:10475 msgid "About iok application" msgstr "Über iok" #: ../src/interface.c:10491 msgid "Keymap" msgstr "Tastenzuordnung" #: ../src/interface.c:10494 msgid "Keys" msgstr "Tasten" #: ../src/interface.c:10497 msgid "Help" msgstr "Hilfe" #: ../src/interface.c:10682 msgid "Backspace" msgstr "Rücklauf" #: ../src/interface.c:10699 msgid "Tab" msgstr "Tabulator " #: ../src/interface.c:10792 msgid "Caps" msgstr "Feststelltaste" #: ../src/interface.c:10863 msgid "Enter" msgstr "Enter " #: ../src/interface.c:10879 ../src/interface.c:10944 msgid "Shift" msgstr "Umschalttaste" #: ../src/interface.c:10958 msgid "Space" msgstr "Leerschlag" #: ../src/interface.c:10965 #, fuzzy msgid "Change to Extended layer Keyboard" msgstr "Zur englischen Tastatur wechseln" #: ../src/interface.c:10971 msgid "" "Select the language in which you want to write. This list contains keymaps " "in order as inscript then user defined then xkb and then any keymaps opened " "that are not default listed" msgstr "" "Wählen Sie die Sprache, in der Sie schreiben wollen. Diese Liste enthält die " "Keymaps sortiert nach: erst inscript, dann benutzerdefiniert, dann xkb und " "dann alle geöffneten Keymaps, die nicht in der Vorgabe-Liste sind" #. TRANSLATORS: Replace this string with your names, one name per line. #: ../src/interface.c:12541 msgid "translator-credits" msgstr "" "Fabian Affolter , 2009.\n" "Dominik Sandjaja , 2009." #: ../src/interface.c:12547 msgid "iok" msgstr "iok" #: ../src/interface.c:12548 msgid "GPLv2 or later\n" msgstr "GPLv2 oder später\n" #: ../src/support.c:90 ../src/support.c:114 #, c-format msgid "Couldn't find pixmap file: %s" msgstr "Konnte pixmap-Datei nicht finden: %s" #~ msgid "to English" #~ msgstr "nach Englisch" #, fuzzy #~ msgid "English" #~ msgstr "nach Englisch" #, fuzzy #~ msgid "OpenMap" #~ msgstr "OpenMap" #~ msgid "WriteMap" #~ msgstr "SchreibeZuordnung" #~ msgid "" #~ "~\n" #~ "`" #~ msgstr "" #~ "~\n" #~ "`" #~ msgid "" #~ "!\n" #~ "1" #~ msgstr "" #~ "!\n" #~ "1" #~ msgid "" #~ "@\n" #~ "2" #~ msgstr "" #~ "@\n" #~ "2" #~ msgid "" #~ "#\n" #~ "3" #~ msgstr "" #~ "#\n" #~ "3" #~ msgid "" #~ "$\n" #~ "4" #~ msgstr "" #~ "$\n" #~ "4" #~ msgid "" #~ "%\n" #~ "5" #~ msgstr "" #~ "%\n" #~ "5" #~ msgid "" #~ "^\n" #~ "6" #~ msgstr "" #~ "^\n" #~ "6" #~ msgid "" #~ "&\n" #~ "7" #~ msgstr "" #~ "&\n" #~ "7" #~ msgid "" #~ "*\n" #~ "8" #~ msgstr "" #~ "*\n" #~ "8" #~ msgid "" #~ "(\n" #~ "9" #~ msgstr "" #~ "(\n" #~ "9" #~ msgid "" #~ ")\n" #~ "0" #~ msgstr "" #~ ")\n" #~ "0" #~ msgid "" #~ "_\n" #~ "-" #~ msgstr "" #~ "_\n" #~ "-" #~ msgid "" #~ "+\n" #~ "=" #~ msgstr "" #~ "+\n" #~ "=" #~ msgid "" #~ "Q\n" #~ "q" #~ msgstr "" #~ "Q\n" #~ "q" #~ msgid "" #~ "W\n" #~ "w" #~ msgstr "" #~ "W\n" #~ "w" #~ msgid "" #~ "E\n" #~ "e" #~ msgstr "" #~ "E\n" #~ "e" #~ msgid "" #~ "R\n" #~ "r" #~ msgstr "" #~ "R\n" #~ "r" #~ msgid "" #~ "T\n" #~ "t" #~ msgstr "" #~ "T\n" #~ "t" #~ msgid "" #~ "Y\n" #~ "y" #~ msgstr "" #~ "Y\n" #~ "y" #~ msgid "" #~ "U\n" #~ "u" #~ msgstr "" #~ "U\n" #~ "u" #~ msgid "" #~ "I\n" #~ "i" #~ msgstr "" #~ "I\n" #~ "i" #~ msgid "" #~ "O\n" #~ "o" #~ msgstr "" #~ "O\n" #~ "o" #~ msgid "" #~ "P\n" #~ "p" #~ msgstr "" #~ "P\n" #~ "p" #~ msgid "" #~ "{\n" #~ "[" #~ msgstr "" #~ "{\n" #~ "[" #~ msgid "" #~ "}\n" #~ "]" #~ msgstr "" #~ "}\n" #~ "]" #~ msgid "" #~ "|\n" #~ "\\" #~ msgstr "" #~ "|\n" #~ "\\" #~ msgid "" #~ "A\n" #~ "a" #~ msgstr "" #~ "A\n" #~ "a" #~ msgid "" #~ "S\n" #~ "s" #~ msgstr "" #~ "S\n" #~ "s" #~ msgid "" #~ "D\n" #~ "d" #~ msgstr "" #~ "D\n" #~ "d" #~ msgid "" #~ "F\n" #~ "f" #~ msgstr "" #~ "F\n" #~ "f" #~ msgid "" #~ "G\n" #~ "g" #~ msgstr "" #~ "G\n" #~ "g" #~ msgid "" #~ "H\n" #~ "h" #~ msgstr "" #~ "H\n" #~ "h" #~ msgid "" #~ "J\n" #~ "j" #~ msgstr "" #~ "J\n" #~ "j" #~ msgid "" #~ "K\n" #~ "k" #~ msgstr "" #~ "K\n" #~ "k" #~ msgid "" #~ "L\n" #~ "l" #~ msgstr "" #~ "L\n" #~ "l" #~ msgid "" #~ ":\n" #~ ";" #~ msgstr "" #~ ":\n" #~ ";" #~ msgid "" #~ "\"\n" #~ "'" #~ msgstr "" #~ "\"\n" #~ "'" #~ msgid "" #~ "Z\n" #~ "z" #~ msgstr "" #~ "Z\n" #~ "z" #~ msgid "" #~ "X\n" #~ "x" #~ msgstr "" #~ "X\n" #~ "x" #~ msgid "" #~ "C\n" #~ "c" #~ msgstr "" #~ "C\n" #~ "c" #~ msgid "" #~ "V\n" #~ "v" #~ msgstr "" #~ "V\n" #~ "v" #~ msgid "" #~ "B\n" #~ "b" #~ msgstr "" #~ "B\n" #~ "b" #~ msgid "" #~ "N\n" #~ "n" #~ msgstr "" #~ "N\n" #~ "n" #~ msgid "" #~ "M\n" #~ "m" #~ msgstr "" #~ "M\n" #~ "m" #~ msgid "" #~ "<\n" #~ "," #~ msgstr "" #~ "<\n" #~ "," #~ msgid "" #~ ">\n" #~ "." #~ msgstr "" #~ ">\n" #~ "." #~ msgid "" #~ "?\n" #~ "/" #~ msgstr "" #~ "?\n" #~ "/" #, fuzzy #~ msgid "swap_window" #~ msgstr "swap_window" #~ msgid "Key 1" #~ msgstr "Taste 1" iok-2.1.3/po/pt_BR.po0000644000076400007640000002011511776460111011217 00000000000000# Brazilian Portuguese translation of Iok. # This file is distributed under the same license as the Iok package. # Taylon Silmer , 2008, 2009. # msgid "" msgstr "" "Project-Id-Version: Iok\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2012-06-29 14:48+0530\n" "PO-Revision-Date: 2009-09-14 14:31-0300\n" "Last-Translator: Taylon \n" "Language-Team: Brazilian Portuguese \n" "Language: pt_BR\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" "X-Poedit-Language: Portuguese\n" "X-Poedit-Country: BRAZIL\n" #: ../iok.desktop.in.h:1 msgid "Indic Onscreen Keyboard" msgstr "Indic Onscreen Keyboard" #: ../iok.desktop.in.h:2 msgid "Enter Indic characters with a virtual keyboard" msgstr "Digite caracteres índicos com um teclado virtual" #: ../src/interface.c:1987 msgid "" "This keymap file does not map uniquely to a keyboard and therefore cannot be " "displayed correctly" msgstr "" #: ../src/interface.c:3180 msgid "Select the language in which you want to write" msgstr "Selecionar o idioma no qual você deseja escrever" #: ../src/interface.c:3182 ../src/interface.c:10955 msgid "Change to English Keyboard" msgstr "Altera para o teclado em inglês" #: ../src/interface.c:3255 msgid "ReassignKey" msgstr "ReatribuirTecla" #: ../src/interface.c:3265 msgid "Reassign Keyvalue of Key" msgstr "Reatribuir valor da tecla" #: ../src/interface.c:3276 msgid "to another Key" msgstr "para outra tecla" #. Don't need to show menus #. Create the menu items #: ../src/interface.c:3291 ../src/interface.c:10447 msgid "Reassign" msgstr "Reatribuir" #: ../src/interface.c:3295 msgid "Cancel" msgstr "Cancelar" #: ../src/interface.c:3586 msgid "Open Keymap File" msgstr "Abre um arquivo de mapa de teclas" #: ../src/interface.c:3636 msgid "Write to Keymap File" msgstr "Salva no arquivo de mapa de teclas" #: ../src/interface.c:3655 msgid "" "This application supports only for Inscript type keymaps therefore no custom " "xkb keymaps can be created." msgstr "" #: ../src/interface.c:3681 msgid "" "This application supports saving the inscript keymaps using filename as " "\"locale_code-custom_name-inscript2.mim\" only. If you are planning to " "change the default keymap name then use only this pattern." msgstr "" #. Don't need to show menus #. Create the menu items #: ../src/interface.c:10407 msgid "Open" msgstr "Abrir" #: ../src/interface.c:10408 msgid "Open a Keymap that is not listed in a combobox" msgstr "Abre um mapa de teclas que não está listado na caixa de seleção" #: ../src/interface.c:10410 msgid "Save" msgstr "Salvar" #: ../src/interface.c:10411 msgid "Save current state of loaded keymap to a new keymap" msgstr "Salva o estado atual do mapa de teclas carregado em um novo mapa" #: ../src/interface.c:10414 msgid "Quit" msgstr "Sair" #: ../src/interface.c:10416 msgid "Close iok application" msgstr "Fecha a aplicação iok" #: ../src/interface.c:10449 msgid "Reassign key value of some key to some other key" msgstr "Reatribui o valor de alguma tecla para alguma outra tecla" #: ../src/interface.c:10451 msgid "Swap" msgstr "Trocar" #: ../src/interface.c:10453 msgid "Swap key values between any 2 keys in loaded keymap" msgstr "Troca o valor entre duas teclas no mapa de teclas carregado" #. Don't need to show menus #. Create the menu items #: ../src/interface.c:10473 msgid "About" msgstr "Sobre" #: ../src/interface.c:10475 msgid "About iok application" msgstr "Sobre a aplicação iok" #: ../src/interface.c:10491 msgid "Keymap" msgstr "Mapa de teclas" #: ../src/interface.c:10494 msgid "Keys" msgstr "Teclas" #: ../src/interface.c:10497 msgid "Help" msgstr "Ajuda" #: ../src/interface.c:10682 msgid "Backspace" msgstr "Backspace" #: ../src/interface.c:10699 msgid "Tab" msgstr "Tab" #: ../src/interface.c:10792 msgid "Caps" msgstr "Caps" #: ../src/interface.c:10863 msgid "Enter" msgstr "Enter" #: ../src/interface.c:10879 ../src/interface.c:10944 msgid "Shift" msgstr "Shift" #: ../src/interface.c:10958 msgid "Space" msgstr "Espaço" #: ../src/interface.c:10965 #, fuzzy msgid "Change to Extended layer Keyboard" msgstr "Altera para o teclado em inglês" #: ../src/interface.c:10971 msgid "" "Select the language in which you want to write. This list contains keymaps " "in order as inscript then user defined then xkb and then any keymaps opened " "that are not default listed" msgstr "" "Selecione o idioma no qual você deseja escrever. Esta lista contém mapas de " "teclas pela ordem de inscrição, depois pela definida pelo usuário, depois " "pelo xkb e então qualquer mapa de teclas aberto que não esteja listado por " "padrão." #. TRANSLATORS: Replace this string with your names, one name per line. #: ../src/interface.c:12541 msgid "translator-credits" msgstr "Taylon Silmer " #: ../src/interface.c:12547 msgid "iok" msgstr "iok" #: ../src/interface.c:12548 msgid "GPLv2 or later\n" msgstr "GPLv2 ou superior\n" #: ../src/support.c:90 ../src/support.c:114 #, c-format msgid "Couldn't find pixmap file: %s" msgstr "Não foi possível encontrar o arquivo pixmap: %s" #~ msgid "to English" #~ msgstr "Ir para inglês" #, fuzzy #~ msgid "English" #~ msgstr "Ir para inglês" #~ msgid "OpenMap" #~ msgstr "AbrirMapeamento" #~ msgid "WriteMap" #~ msgstr "SalvarMapeamento" #~ msgid "" #~ "~\n" #~ "`" #~ msgstr "" #~ "~\n" #~ "`" #~ msgid "" #~ "!\n" #~ "1" #~ msgstr "" #~ "!\n" #~ "1" #~ msgid "" #~ "@\n" #~ "2" #~ msgstr "" #~ "@\n" #~ "2" #~ msgid "" #~ "#\n" #~ "3" #~ msgstr "" #~ "#\n" #~ "3" #~ msgid "" #~ "$\n" #~ "4" #~ msgstr "" #~ "$\n" #~ "4" #~ msgid "" #~ "%\n" #~ "5" #~ msgstr "" #~ "%\n" #~ "5" #~ msgid "" #~ "^\n" #~ "6" #~ msgstr "" #~ "^\n" #~ "6" #~ msgid "" #~ "&\n" #~ "7" #~ msgstr "" #~ "&\n" #~ "7" #~ msgid "" #~ "*\n" #~ "8" #~ msgstr "" #~ "*\n" #~ "8" #~ msgid "" #~ "(\n" #~ "9" #~ msgstr "" #~ "(\n" #~ "9" #~ msgid "" #~ ")\n" #~ "0" #~ msgstr "" #~ ")\n" #~ "0" #~ msgid "" #~ "_\n" #~ "-" #~ msgstr "" #~ "_\n" #~ "-" #~ msgid "" #~ "+\n" #~ "=" #~ msgstr "" #~ "+\n" #~ "=" #~ msgid "" #~ "Q\n" #~ "q" #~ msgstr "" #~ "Q\n" #~ "q" #~ msgid "" #~ "W\n" #~ "w" #~ msgstr "" #~ "W\n" #~ "w" #~ msgid "" #~ "E\n" #~ "e" #~ msgstr "" #~ "E\n" #~ "e" #~ msgid "" #~ "R\n" #~ "r" #~ msgstr "" #~ "R\n" #~ "r" #~ msgid "" #~ "T\n" #~ "t" #~ msgstr "" #~ "T\n" #~ "t" #~ msgid "" #~ "Y\n" #~ "y" #~ msgstr "" #~ "Y\n" #~ "y" #~ msgid "" #~ "U\n" #~ "u" #~ msgstr "" #~ "U\n" #~ "u" #~ msgid "" #~ "I\n" #~ "i" #~ msgstr "" #~ "I\n" #~ "i" #~ msgid "" #~ "O\n" #~ "o" #~ msgstr "" #~ "O\n" #~ "o" #~ msgid "" #~ "P\n" #~ "p" #~ msgstr "" #~ "P\n" #~ "p" #~ msgid "" #~ "{\n" #~ "[" #~ msgstr "" #~ "{\n" #~ "[" #~ msgid "" #~ "}\n" #~ "]" #~ msgstr "" #~ "}\n" #~ "]" #~ msgid "" #~ "|\n" #~ "\\" #~ msgstr "" #~ "|\n" #~ "\\" #~ msgid "" #~ "A\n" #~ "a" #~ msgstr "" #~ "A\n" #~ "a" #~ msgid "" #~ "S\n" #~ "s" #~ msgstr "" #~ "S\n" #~ "s" #~ msgid "" #~ "D\n" #~ "d" #~ msgstr "" #~ "D\n" #~ "d" #~ msgid "" #~ "F\n" #~ "f" #~ msgstr "" #~ "F\n" #~ "f" #~ msgid "" #~ "G\n" #~ "g" #~ msgstr "" #~ "G\n" #~ "g" #~ msgid "" #~ "H\n" #~ "h" #~ msgstr "" #~ "H\n" #~ "h" #~ msgid "" #~ "J\n" #~ "j" #~ msgstr "" #~ "J\n" #~ "j" #~ msgid "" #~ "K\n" #~ "k" #~ msgstr "" #~ "K\n" #~ "k" #~ msgid "" #~ "L\n" #~ "l" #~ msgstr "" #~ "L\n" #~ "l" #~ msgid "" #~ ":\n" #~ ";" #~ msgstr "" #~ ":\n" #~ ";" #~ msgid "" #~ "\"\n" #~ "'" #~ msgstr "" #~ "\"\n" #~ "'" #~ msgid "" #~ "Z\n" #~ "z" #~ msgstr "" #~ "Z\n" #~ "z" #~ msgid "" #~ "X\n" #~ "x" #~ msgstr "" #~ "X\n" #~ "x" #~ msgid "" #~ "C\n" #~ "c" #~ msgstr "" #~ "C\n" #~ "c" #~ msgid "" #~ "V\n" #~ "v" #~ msgstr "" #~ "V\n" #~ "v" #~ msgid "" #~ "B\n" #~ "b" #~ msgstr "" #~ "B\n" #~ "b" #~ msgid "" #~ "N\n" #~ "n" #~ msgstr "" #~ "N\n" #~ "n" #~ msgid "" #~ "M\n" #~ "m" #~ msgstr "" #~ "M\n" #~ "m" #~ msgid "" #~ "<\n" #~ "," #~ msgstr "" #~ "<\n" #~ "," #~ msgid "" #~ ">\n" #~ "." #~ msgstr "" #~ ">\n" #~ "." #~ msgid "" #~ "?\n" #~ "/" #~ msgstr "" #~ "?\n" #~ "/" #~ msgid "swap_window" #~ msgstr "troca_janela" #~ msgid "Key 2" #~ msgstr "Tecla 2" iok-2.1.3/po/sv.po0000644000076400007640000001217211776460111010645 00000000000000# Swedish messages for iok. # Copyright © 2010 Free Software Foundation, Inc. # This file is distributed under the same license as the iok package. # Göran Uddeborg , 2010. # # $Revision: 1.3 $ msgid "" msgstr "" "Project-Id-Version: iok master\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2012-06-29 14:48+0530\n" "PO-Revision-Date: 2010-09-08 21:51+0200\n" "Last-Translator: Göran Uddeborg \n" "Language-Team: Swedish \n" "Language: sv\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" #: ../iok.desktop.in.h:1 msgid "Indic Onscreen Keyboard" msgstr "Indiskt tangentbord pÃ¥ skärmen" #: ../iok.desktop.in.h:2 msgid "Enter Indic characters with a virtual keyboard" msgstr "Mata in indiska tecken med ett virtuellt tangentbord" #: ../src/interface.c:1987 msgid "" "This keymap file does not map uniquely to a keyboard and therefore cannot be " "displayed correctly" msgstr "" #: ../src/interface.c:3180 msgid "Select the language in which you want to write" msgstr "Välj sprÃ¥ket du vill skriva pÃ¥" #: ../src/interface.c:3182 ../src/interface.c:10955 msgid "Change to English Keyboard" msgstr "Byt till engelskt tangentbord" #: ../src/interface.c:3255 msgid "ReassignKey" msgstr "Ändra tangent" #: ../src/interface.c:3265 msgid "Reassign Keyvalue of Key" msgstr "Ändra tangentvärde för tangent" #: ../src/interface.c:3276 msgid "to another Key" msgstr "till en annan tangent" #. Don't need to show menus #. Create the menu items #: ../src/interface.c:3291 ../src/interface.c:10447 msgid "Reassign" msgstr "Ändra" #: ../src/interface.c:3295 msgid "Cancel" msgstr "Avbryt" #: ../src/interface.c:3586 msgid "Open Keymap File" msgstr "Öppna tangentmappningsfil" #: ../src/interface.c:3636 msgid "Write to Keymap File" msgstr "Skriv till tangentmappningsfil" #: ../src/interface.c:3655 msgid "" "This application supports only for Inscript type keymaps therefore no custom " "xkb keymaps can be created." msgstr "" #: ../src/interface.c:3681 msgid "" "This application supports saving the inscript keymaps using filename as " "\"locale_code-custom_name-inscript2.mim\" only. If you are planning to " "change the default keymap name then use only this pattern." msgstr "" #. Don't need to show menus #. Create the menu items #: ../src/interface.c:10407 msgid "Open" msgstr "Öppna" #: ../src/interface.c:10408 msgid "Open a Keymap that is not listed in a combobox" msgstr "Öppna en tangentmappning som inte är listad i en combobox" #: ../src/interface.c:10410 msgid "Save" msgstr "Spara" #: ../src/interface.c:10411 msgid "Save current state of loaded keymap to a new keymap" msgstr "" "Spara nuvarande tillstÃ¥nd av inlästa tangentmappningar till en ny " "tangentmappning" #: ../src/interface.c:10414 msgid "Quit" msgstr "Avsluta" #: ../src/interface.c:10416 msgid "Close iok application" msgstr "Stäng iok-programmet" #: ../src/interface.c:10449 msgid "Reassign key value of some key to some other key" msgstr "Ändra tangentvärdet pÃ¥ nÃ¥gon tangent till nÃ¥gon annan tangent" #: ../src/interface.c:10451 msgid "Swap" msgstr "Växla" #: ../src/interface.c:10453 msgid "Swap key values between any 2 keys in loaded keymap" msgstr "Växla tangentvärden mellan 2 tangenter i en inläst tangentmappning" #. Don't need to show menus #. Create the menu items #: ../src/interface.c:10473 msgid "About" msgstr "Om" #: ../src/interface.c:10475 msgid "About iok application" msgstr "Om iok-programmet" #: ../src/interface.c:10491 msgid "Keymap" msgstr "Tangentmappning" #: ../src/interface.c:10494 msgid "Keys" msgstr "Tangenter" #: ../src/interface.c:10497 msgid "Help" msgstr "Hjälp" #: ../src/interface.c:10682 msgid "Backspace" msgstr "Backsteg" #: ../src/interface.c:10699 msgid "Tab" msgstr "Tabulator" #: ../src/interface.c:10792 msgid "Caps" msgstr "SkiftlÃ¥s" #: ../src/interface.c:10863 msgid "Enter" msgstr "Retur" #: ../src/interface.c:10879 ../src/interface.c:10944 msgid "Shift" msgstr "Skift" #: ../src/interface.c:10958 msgid "Space" msgstr "Mellanslag" #: ../src/interface.c:10965 #, fuzzy msgid "Change to Extended layer Keyboard" msgstr "Byt till engelskt tangentbord" #: ../src/interface.c:10971 msgid "" "Select the language in which you want to write. This list contains keymaps " "in order as inscript then user defined then xkb and then any keymaps opened " "that are not default listed" msgstr "" "Välj vilket sprÃ¥g du vill skriva pÃ¥. Denna lista inenhÃ¥ller tangentmappar i " "ordningen inscript sedan användardefinierade sedan xkb och sedan eventuella " "tangentmappar öppnade som inte är i standardlistorna" #. TRANSLATORS: Replace this string with your names, one name per line. #: ../src/interface.c:12541 msgid "translator-credits" msgstr "Göran Uddeborg " #: ../src/interface.c:12547 msgid "iok" msgstr "iok" #: ../src/interface.c:12548 msgid "GPLv2 or later\n" msgstr "GPLv2 eller senare\n" #: ../src/support.c:90 ../src/support.c:114 #, c-format msgid "Couldn't find pixmap file: %s" msgstr "Hittade inte bildfilen: %s" #~ msgid "to English" #~ msgstr "till engelska" #~ msgid "English" #~ msgstr "engelska" iok-2.1.3/po/fr.po0000644000076400007640000001226511776460111010627 00000000000000# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. # # Sebastien Natroll , 2010. msgid "" msgstr "" "Project-Id-Version: \n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2012-06-29 14:48+0530\n" "PO-Revision-Date: 2010-03-14 13:39+0100\n" "Last-Translator: Sebastien Natroll \n" "Language-Team: French \n" "Language: fr\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-Generator: Lokalize 1.0\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" #: ../iok.desktop.in.h:1 msgid "Indic Onscreen Keyboard" msgstr "Clavier indien à l'écran" #: ../iok.desktop.in.h:2 msgid "Enter Indic characters with a virtual keyboard" msgstr "Entrer des caractères indiens avec un clavier virtuel" #: ../src/interface.c:1987 msgid "" "This keymap file does not map uniquely to a keyboard and therefore cannot be " "displayed correctly" msgstr "" #: ../src/interface.c:3180 msgid "Select the language in which you want to write" msgstr "Sélectionnez la langue dans laquelle vous voulez écrire" #: ../src/interface.c:3182 ../src/interface.c:10955 msgid "Change to English Keyboard" msgstr "Basculer en clavier anglais" #: ../src/interface.c:3255 msgid "ReassignKey" msgstr "Réassigner la touche" #: ../src/interface.c:3265 msgid "Reassign Keyvalue of Key" msgstr "Réassigner la valeur de la touche" #: ../src/interface.c:3276 msgid "to another Key" msgstr "à une autre touche" #. Don't need to show menus #. Create the menu items #: ../src/interface.c:3291 ../src/interface.c:10447 msgid "Reassign" msgstr "Réassigner" #: ../src/interface.c:3295 msgid "Cancel" msgstr "Annuler" #: ../src/interface.c:3586 msgid "Open Keymap File" msgstr "Ouvrir un fichier d'agencement" #: ../src/interface.c:3636 msgid "Write to Keymap File" msgstr "Enregistrer dans le fichier d'agencement" #: ../src/interface.c:3655 msgid "" "This application supports only for Inscript type keymaps therefore no custom " "xkb keymaps can be created." msgstr "" #: ../src/interface.c:3681 msgid "" "This application supports saving the inscript keymaps using filename as " "\"locale_code-custom_name-inscript2.mim\" only. If you are planning to " "change the default keymap name then use only this pattern." msgstr "" #. Don't need to show menus #. Create the menu items #: ../src/interface.c:10407 msgid "Open" msgstr "Ouvrir" #: ../src/interface.c:10408 msgid "Open a Keymap that is not listed in a combobox" msgstr "Ouvrir un agencement qui n'est pas listé dans un combobox" #: ../src/interface.c:10410 msgid "Save" msgstr "Sauvegarder" #: ../src/interface.c:10411 msgid "Save current state of loaded keymap to a new keymap" msgstr "" "Sauvegarder l'état actuel de l'agencement chargé dans un nouvel agencement" #: ../src/interface.c:10414 msgid "Quit" msgstr "Quitter" #: ../src/interface.c:10416 msgid "Close iok application" msgstr "Fermer l'application iok" #: ../src/interface.c:10449 msgid "Reassign key value of some key to some other key" msgstr "Réassigner la valeur d'une certaine touche à une autre" #: ../src/interface.c:10451 msgid "Swap" msgstr "Échanger" #: ../src/interface.c:10453 msgid "Swap key values between any 2 keys in loaded keymap" msgstr "Échanger les valeurs entre 2 touches dans l'agencement chargé" #. Don't need to show menus #. Create the menu items #: ../src/interface.c:10473 msgid "About" msgstr "À propos" #: ../src/interface.c:10475 msgid "About iok application" msgstr "À propos de l'application iok" #: ../src/interface.c:10491 msgid "Keymap" msgstr "Agencement" #: ../src/interface.c:10494 msgid "Keys" msgstr "Touches" #: ../src/interface.c:10497 msgid "Help" msgstr "Aide" #: ../src/interface.c:10682 msgid "Backspace" msgstr "Retour" #: ../src/interface.c:10699 msgid "Tab" msgstr "Tab" #: ../src/interface.c:10792 msgid "Caps" msgstr "Verr. Maj." #: ../src/interface.c:10863 msgid "Enter" msgstr "Entrée" #: ../src/interface.c:10879 ../src/interface.c:10944 msgid "Shift" msgstr "Maj." #: ../src/interface.c:10958 msgid "Space" msgstr "Espace" #: ../src/interface.c:10965 #, fuzzy msgid "Change to Extended layer Keyboard" msgstr "Basculer en clavier anglais" #: ../src/interface.c:10971 msgid "" "Select the language in which you want to write. This list contains keymaps " "in order as inscript then user defined then xkb and then any keymaps opened " "that are not default listed" msgstr "" "Sélectionnez la langue dans laquelle vous souhaitez écrire. Cette liste " "contient les agencements inscript, ceux définis par l'utilisateur, xkb, et " "les agencements ouverts non listés par défault." #. TRANSLATORS: Replace this string with your names, one name per line. #: ../src/interface.c:12541 msgid "translator-credits" msgstr "Sébastien Natroll , 2010." #: ../src/interface.c:12547 msgid "iok" msgstr "iok" #: ../src/interface.c:12548 msgid "GPLv2 or later\n" msgstr "GPLv2 ou postérieur\n" #: ../src/support.c:90 ../src/support.c:114 #, c-format msgid "Couldn't find pixmap file: %s" msgstr "Impossible de trouver le fichier pixmap : %s" #~ msgid "English" #~ msgstr "anglais" iok-2.1.3/po/fa.po0000644000076400007640000001327111776460111010604 00000000000000# SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. # FIRST AUTHOR , YEAR. # msgid "" msgstr "" "Project-Id-Version: 1\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2012-06-29 14:48+0530\n" "PO-Revision-Date: 2010-08-20 23:41+0330\n" "Last-Translator: Mostafa \n" "Language-Team: Persian \n" "Language: fa\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=utf-8\n" "Content-Transfer-Encoding: 8bit\n" "X-Poedit-Language: Persian\n" "X-Poedit-Country: Iran\n" #: ../iok.desktop.in.h:1 msgid "Indic Onscreen Keyboard" msgstr "ØµÙØ­Ù‡â€ŒÚ©Ù„ید روی ØµÙØ­Ù‡â€ŒÙ†Ù…ایش Indic " #: ../iok.desktop.in.h:2 msgid "Enter Indic characters with a virtual keyboard" msgstr "وارد کردن نویسه های Indic با ØµÙØ­Ù‡ کلید مجازی" #: ../src/interface.c:1987 msgid "" "This keymap file does not map uniquely to a keyboard and therefore cannot be " "displayed correctly" msgstr "" #: ../src/interface.c:3180 msgid "Select the language in which you want to write" msgstr "انتخاب زبانی Ú©Ù‡ Ù…ÛŒ خواهید بنویسید" #: ../src/interface.c:3182 ../src/interface.c:10955 msgid "Change to English Keyboard" msgstr "تغییر به ØµÙØ­Ù‡ کلید انگلیسی" #: ../src/interface.c:3255 msgid "ReassignKey" msgstr "بازانتساب‌کلید" #: ../src/interface.c:3265 msgid "Reassign Keyvalue of Key" msgstr "تنظیمات مقدار کلید" #: ../src/interface.c:3276 msgid "to another Key" msgstr "به کلید دیگر" #. Don't need to show menus #. Create the menu items #: ../src/interface.c:3291 ../src/interface.c:10447 msgid "Reassign" msgstr "انتساب مجدد" #: ../src/interface.c:3295 msgid "Cancel" msgstr "انصراÙ" #: ../src/interface.c:3586 msgid "Open Keymap File" msgstr "بازکردن ÙØ§ÛŒÙ„ نقشه‌کلید" #: ../src/interface.c:3636 msgid "Write to Keymap File" msgstr "نوشتن بر روی ÙØ§ÛŒÙ„ نقشه‌کلید" #: ../src/interface.c:3655 msgid "" "This application supports only for Inscript type keymaps therefore no custom " "xkb keymaps can be created." msgstr "" #: ../src/interface.c:3681 msgid "" "This application supports saving the inscript keymaps using filename as " "\"locale_code-custom_name-inscript2.mim\" only. If you are planning to " "change the default keymap name then use only this pattern." msgstr "" #. Don't need to show menus #. Create the menu items #: ../src/interface.c:10407 msgid "Open" msgstr "باز" #: ../src/interface.c:10408 msgid "Open a Keymap that is not listed in a combobox" msgstr "بازکردن نقشه‌کلیدی Ú©Ù‡ در چندگزینه های ذیل موجود نیست" #: ../src/interface.c:10410 msgid "Save" msgstr "ذخیره" #: ../src/interface.c:10411 msgid "Save current state of loaded keymap to a new keymap" msgstr "ذخیره حالت کنونی نقشه‌کلید بارگذاری شده به نقشه کلید جدید" #: ../src/interface.c:10414 msgid "Quit" msgstr "خروج" #: ../src/interface.c:10416 msgid "Close iok application" msgstr "بستن برنامه iok " #: ../src/interface.c:10449 msgid "Reassign key value of some key to some other key" msgstr "بازنشانی مقدار برخی از کلید های به کلید دیگر" #: ../src/interface.c:10451 msgid "Swap" msgstr "Ø­Ø§ÙØ¸Ù‡Ù” مبادله" #: ../src/interface.c:10453 msgid "Swap key values between any 2 keys in loaded keymap" msgstr "جا به جایی مقادیر کلیدهای بین دو کلید بارگذاری شده در نقشه کلید" #. Don't need to show menus #. Create the menu items #: ../src/interface.c:10473 msgid "About" msgstr "درباره" #: ../src/interface.c:10475 msgid "About iok application" msgstr "دربارهٔ برنامه iok " #: ../src/interface.c:10491 msgid "Keymap" msgstr "نقشه‌کلید " #: ../src/interface.c:10494 msgid "Keys" msgstr "کلیدها" #: ../src/interface.c:10497 msgid "Help" msgstr "Ú©Ù…Ú©" #: ../src/interface.c:10682 msgid "Backspace" msgstr "پس‌بر" #: ../src/interface.c:10699 msgid "Tab" msgstr "جهش" #: ../src/interface.c:10792 msgid "Caps" msgstr "Ù‚ÙÙ„" #: ../src/interface.c:10863 msgid "Enter" msgstr "ورود" #: ../src/interface.c:10879 ../src/interface.c:10944 msgid "Shift" msgstr "تبدیل" #: ../src/interface.c:10958 msgid "Space" msgstr "ÙØ§ØµÙ„Ù‡" #: ../src/interface.c:10965 #, fuzzy msgid "Change to Extended layer Keyboard" msgstr "تغییر به ØµÙØ­Ù‡ کلید انگلیسی" #: ../src/interface.c:10971 msgid "" "Select the language in which you want to write. This list contains keymaps " "in order as inscript then user defined then xkb and then any keymaps opened " "that are not default listed" msgstr "" "انتخاب زبانی Ú©Ù‡ Ù…ÛŒ خواهید بنویسید. این لیستی است Ú©Ù‡ شامل نقشه‌کلیدهای است Ú©Ù‡ " "inscript موجود است Ùˆ سپس کاربر تعری٠شده ها Ùˆ سپس xkb Ùˆ سپس هر نقشه کلیدی Ú©Ù‡ " "باز شده Ùˆ به طور Ù¾ÛŒØ´ÙØ±Ø¶ لیست نشده است." #. TRANSLATORS: Replace this string with your names, one name per line. #: ../src/interface.c:12541 msgid "translator-credits" msgstr "مترجم‌ها" #: ../src/interface.c:12547 msgid "iok" msgstr "ای‌او‌کی(iok)" #: ../src/interface.c:12548 msgid "GPLv2 or later\n" msgstr "جی‌پی‌ال۲ یا بعدی\n" #: ../src/support.c:90 ../src/support.c:114 #, c-format msgid "Couldn't find pixmap file: %s" msgstr "پرونده‌ی pixmap پیدا نشد:: %s" #~ msgid "to English" #~ msgstr "به انگلیسی" #~ msgid "English" #~ msgstr "انگلیسی" iok-2.1.3/po/el.po0000644000076400007640000001355511776460111010623 00000000000000# Greek translation of iok package. # Copyright (C) 2010 # This file is distributed under the same license as the iok package. # Pierros Papadeas , 2010. # msgid "" msgstr "" "Project-Id-Version: iok.trunk\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2012-06-29 14:48+0530\n" "PO-Revision-Date: 2010-03-11 17:40+0200\n" "Last-Translator: Kostas Papadimas \n" "Language-Team: Greek \n" "Language: el\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" #: ../iok.desktop.in.h:1 msgid "Indic Onscreen Keyboard" msgstr "Indic Onscreen Keyboard" #: ../iok.desktop.in.h:2 msgid "Enter Indic characters with a virtual keyboard" msgstr "Εισαγωγή χαÏακτήÏων Indic μέσω ενός ÎµÎ¹ÎºÎ¿Î½Î¹ÎºÎ¿Ï Ï€Î»Î·ÎºÏ„Ïολογίου" #: ../src/interface.c:1987 msgid "" "This keymap file does not map uniquely to a keyboard and therefore cannot be " "displayed correctly" msgstr "" #: ../src/interface.c:3180 msgid "Select the language in which you want to write" msgstr "Επιλέξτε την γλώσσα που θέλετε να γÏάφετε" #: ../src/interface.c:3182 ../src/interface.c:10955 msgid "Change to English Keyboard" msgstr "Αλλαγή σε Αγγλική διάταξη" #: ../src/interface.c:3255 msgid "ReassignKey" msgstr "ΕπανακαθοÏισμός ΚλειδιοÏ" #: ../src/interface.c:3265 msgid "Reassign Keyvalue of Key" msgstr "ΕπανακαθοÏισμός τιμής ΚλειδιοÏ" #: ../src/interface.c:3276 msgid "to another Key" msgstr "σε άλλο Κλειδί" #. Don't need to show menus #. Create the menu items #: ../src/interface.c:3291 ../src/interface.c:10447 msgid "Reassign" msgstr "ΕπανακαθοÏισμός" #: ../src/interface.c:3295 msgid "Cancel" msgstr "ΆκυÏο" #: ../src/interface.c:3586 msgid "Open Keymap File" msgstr "Άνοιγμα αÏχείου χαÏτογÏάφησης πλήκτÏων" #: ../src/interface.c:3636 msgid "Write to Keymap File" msgstr "ΕγγÏαφή σε αÏχείο χαÏτογÏάφησης πλήκτÏων" #: ../src/interface.c:3655 msgid "" "This application supports only for Inscript type keymaps therefore no custom " "xkb keymaps can be created." msgstr "" #: ../src/interface.c:3681 msgid "" "This application supports saving the inscript keymaps using filename as " "\"locale_code-custom_name-inscript2.mim\" only. If you are planning to " "change the default keymap name then use only this pattern." msgstr "" #. Don't need to show menus #. Create the menu items #: ../src/interface.c:10407 msgid "Open" msgstr "Άνοιγμα" #: ../src/interface.c:10408 msgid "Open a Keymap that is not listed in a combobox" msgstr "Άνοιγμα " #: ../src/interface.c:10410 msgid "Save" msgstr "Αποθήκευση" #: ../src/interface.c:10411 msgid "Save current state of loaded keymap to a new keymap" msgstr "Αποθήκευση Ï„Ïέχουσας κατάστασης σε αÏχείο χαÏτογÏάφησης πλήκτÏων" #: ../src/interface.c:10414 msgid "Quit" msgstr "Έξοδος" #: ../src/interface.c:10416 msgid "Close iok application" msgstr "Κλείσιμο εφαÏμογής iok" #: ../src/interface.c:10449 msgid "Reassign key value of some key to some other key" msgstr "ΕπανακαθοÏισμός τιμής πλήκτÏου από άλλο πλήκτÏο" #: ../src/interface.c:10451 msgid "Swap" msgstr "Ανταλλαγή" #: ../src/interface.c:10453 msgid "Swap key values between any 2 keys in loaded keymap" msgstr "" "Εναλλαγή τιμών πλήκτÏων Î¼ÎµÏ„Î±Î¾Ï 2 οποιονδήποτε πλήκτÏων του αÏχείου " "χαÏτογÏάφησης πλήκτÏων" #. Don't need to show menus #. Create the menu items #: ../src/interface.c:10473 msgid "About" msgstr "Μνεία" #: ../src/interface.c:10475 msgid "About iok application" msgstr "Για την εφαÏμογή iok" #: ../src/interface.c:10491 msgid "Keymap" msgstr "Αντιστοίχηση πλήκτÏων" #: ../src/interface.c:10494 msgid "Keys" msgstr "ΠλήκτÏα" #: ../src/interface.c:10497 msgid "Help" msgstr "Βοήθεια" #: ../src/interface.c:10682 msgid "Backspace" msgstr "Backspace" #: ../src/interface.c:10699 msgid "Tab" msgstr "Tab" #: ../src/interface.c:10792 msgid "Caps" msgstr "Caps" #: ../src/interface.c:10863 msgid "Enter" msgstr "Enter" #: ../src/interface.c:10879 ../src/interface.c:10944 msgid "Shift" msgstr "Shift" #: ../src/interface.c:10958 msgid "Space" msgstr "Κενό" #: ../src/interface.c:10965 #, fuzzy msgid "Change to Extended layer Keyboard" msgstr "Αλλαγή σε Αγγλική διάταξη" #: ../src/interface.c:10971 msgid "" "Select the language in which you want to write. This list contains keymaps " "in order as inscript then user defined then xkb and then any keymaps opened " "that are not default listed" msgstr "" "Επιλέξτε την γλώσσα που θέλετε να γÏάφετε. Αυτή η λίστα πεÏιέχει αÏχεία " "χαÏτογÏάφησης πλήκτÏων σε σειÏά όπως στο inscript και μετά αÏχεία επιλεγμένα " "από τον χÏήστη και μετά ανοιγμένα αÏχεία που δεν είναι καταγεγÏαμμένα" #. TRANSLATORS: Replace this string with your names, one name per line. #: ../src/interface.c:12541 msgid "translator-credits" msgstr "ΠιέÏÏος Παπαδέας 2010" #: ../src/interface.c:12547 msgid "iok" msgstr "iok" #: ../src/interface.c:12548 msgid "GPLv2 or later\n" msgstr "GPLv2 ή νεώτεÏηr\n" #: ../src/support.c:90 ../src/support.c:114 #, c-format msgid "Couldn't find pixmap file: %s" msgstr "Αδυναμία εÏÏεσης αÏχείου pixmap: %s" #~ msgid "to English" #~ msgstr "στα Αγγλική" #~ msgid "English" #~ msgstr "Αγγλική" iok-2.1.3/po/pl.po0000644000076400007640000001260411776460111010630 00000000000000# SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. # # Translators: # Piotr DrÄ…g , 2011. msgid "" msgstr "" "Project-Id-Version: fedorahosted-org-svn-iok-po-iok.pot\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2012-06-29 14:48+0530\n" "PO-Revision-Date: 2011-03-28 11:31+0000\n" "Last-Translator: raven \n" "Language-Team: Polish (http://www.transifex.net/projects/p/fedorahosted-org-" "svn-iok-po-io/team/pl/)\n" "Language: pl\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=3; plural=(n==1 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 " "|| n%100>=20) ? 1 : 2)\n" #: ../iok.desktop.in.h:1 msgid "Indic Onscreen Keyboard" msgstr "Indyjska klawiatura ekranowa" #: ../iok.desktop.in.h:2 msgid "Enter Indic characters with a virtual keyboard" msgstr "Wprowadzanie znaków indyjskich za pomocÄ… wirtualnej klawiatury" #: ../src/interface.c:1987 msgid "" "This keymap file does not map uniquely to a keyboard and therefore cannot be " "displayed correctly" msgstr "" #: ../src/interface.c:3180 msgid "Select the language in which you want to write" msgstr "ProszÄ™ wybrać jÄ™zyk, w którym pisać" #: ../src/interface.c:3182 ../src/interface.c:10955 msgid "Change to English Keyboard" msgstr "Zmienia na angielskÄ… klawiaturÄ™" #: ../src/interface.c:3255 msgid "ReassignKey" msgstr "Ponowne przydzielenie klawisza" #: ../src/interface.c:3265 msgid "Reassign Keyvalue of Key" msgstr "Ponowne przydzielenie wartoÅ›ci klawisza" #: ../src/interface.c:3276 msgid "to another Key" msgstr "na inny klawisz" #. Don't need to show menus #. Create the menu items #: ../src/interface.c:3291 ../src/interface.c:10447 msgid "Reassign" msgstr "Przydziel ponownie" #: ../src/interface.c:3295 msgid "Cancel" msgstr "Anuluj" #: ../src/interface.c:3586 msgid "Open Keymap File" msgstr "Otwórz plik mapy klawiszy" #: ../src/interface.c:3636 msgid "Write to Keymap File" msgstr "Zapisz plik mapy klawiszy" #: ../src/interface.c:3655 msgid "" "This application supports only for Inscript type keymaps therefore no custom " "xkb keymaps can be created." msgstr "" #: ../src/interface.c:3681 msgid "" "This application supports saving the inscript keymaps using filename as " "\"locale_code-custom_name-inscript2.mim\" only. If you are planning to " "change the default keymap name then use only this pattern." msgstr "" #. Don't need to show menus #. Create the menu items #: ../src/interface.c:10407 msgid "Open" msgstr "Otwórz" #: ../src/interface.c:10408 msgid "Open a Keymap that is not listed in a combobox" msgstr "Otwiera mapÄ™ klawiszy, która nie znajduje siÄ™ na liÅ›cie" #: ../src/interface.c:10410 msgid "Save" msgstr "Zapisz" #: ../src/interface.c:10411 msgid "Save current state of loaded keymap to a new keymap" msgstr "Zapisuje bieżący stan wczytanej mapy klawiszy do nowej mapy" #: ../src/interface.c:10414 msgid "Quit" msgstr "ZakoÅ„cz" #: ../src/interface.c:10416 msgid "Close iok application" msgstr "KoÅ„czy dziaÅ‚anie aplikacji iok" #: ../src/interface.c:10449 msgid "Reassign key value of some key to some other key" msgstr "Przydziela wartość klawisza do innego klawisza" #: ../src/interface.c:10451 msgid "Swap" msgstr "WymieÅ„" #: ../src/interface.c:10453 msgid "Swap key values between any 2 keys in loaded keymap" msgstr "" "Wymienia wartoÅ›ci klawiszy miÄ™dzy dwoma klawiszami we wczytanej mapie " "klawiszy" #. Don't need to show menus #. Create the menu items #: ../src/interface.c:10473 msgid "About" msgstr "O programie" #: ../src/interface.c:10475 msgid "About iok application" msgstr "O aplikacji iok" #: ../src/interface.c:10491 msgid "Keymap" msgstr "Mapa klawiszy" #: ../src/interface.c:10494 msgid "Keys" msgstr "Klawisze" #: ../src/interface.c:10497 msgid "Help" msgstr "Pomoc" #: ../src/interface.c:10682 msgid "Backspace" msgstr "Backspace" #: ../src/interface.c:10699 msgid "Tab" msgstr "Tab" #: ../src/interface.c:10792 msgid "Caps" msgstr "Caps Lock" #: ../src/interface.c:10863 msgid "Enter" msgstr "Enter" #: ../src/interface.c:10879 ../src/interface.c:10944 msgid "Shift" msgstr "Shift" #: ../src/interface.c:10958 msgid "Space" msgstr "Spacja" #: ../src/interface.c:10965 #, fuzzy msgid "Change to Extended layer Keyboard" msgstr "Zmienia na angielskÄ… klawiaturÄ™" #: ../src/interface.c:10971 msgid "" "Select the language in which you want to write. This list contains keymaps " "in order as inscript then user defined then xkb and then any keymaps opened " "that are not default listed" msgstr "" "ProszÄ™ wybrać jÄ™zyk, w którym pisać. Ta lista zawiera mapy klawiszy w " "nastÄ™pujÄ…cym porzÄ…dku: inscript, nastÄ™pnie okreÅ›lone przez użytkownika, " "nastÄ™pnie XKB, a na koÅ„cu wszystkie otwarte mapy klawiszy nie bÄ™dÄ…ce " "domyÅ›lnie na liÅ›cie" #. TRANSLATORS: Replace this string with your names, one name per line. #: ../src/interface.c:12541 msgid "translator-credits" msgstr "Piotr DrÄ…g , 2008" #: ../src/interface.c:12547 msgid "iok" msgstr "iok" #: ../src/interface.c:12548 msgid "GPLv2 or later\n" msgstr "GPLv2 lub późniejsza\n" #: ../src/support.c:90 ../src/support.c:114 #, c-format msgid "Couldn't find pixmap file: %s" msgstr "Nie można odnaleźć pliku mapy bitowej: %s" #~ msgid "to English" #~ msgstr "na angielskÄ…" #~ msgid "English" #~ msgstr "angielskÄ…" iok-2.1.3/po/pa.po0000644000076400007640000001646211776460111010623 00000000000000# SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. # Translators: # Amanpreet Singh Alam , 2009. # A S Alam , 2009, 2012. # A S Alam , 2011. # jassy , 2012. #zanata msgid "" msgstr "" "Project-Id-Version: fedorahosted-org-svn-iok-po-iok.pot\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2012-06-29 14:48+0530\n" "PO-Revision-Date: 2012-07-03 03:29-0400\n" "Last-Translator: jassy \n" "Language-Team: punjabi-users@lists.sf.net\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Language: pa\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: Zanata 1.6.1\n" #: ../iok.desktop.in.h:1 msgid "Indic Onscreen Keyboard" msgstr "ਇੰਡਿਕ ਆਨਸਕਰੀਨ ਕੀਬੋਰਡ" #: ../iok.desktop.in.h:2 msgid "Enter Indic characters with a virtual keyboard" msgstr "ਵà©à¨°à¨šà©à¨…ਲ ਕੀਬੋਰਡ ਨਾਲ ਭਾਰਤੀ ਅੱਖਰ ਦਿਉ" #: ../src/interface.c:1987 msgid "" "This keymap file does not map uniquely to a keyboard and therefore cannot be" " displayed correctly" msgstr "" "ਇਹ ਕੀਮੈਪ ਫਾਇਲ ਵੱਖਰੇ ਤੌਰ ਤੇ ਕੀਬੋਰਡ ਨਾਲ ਮੈਪ ਨਹੀਂ ਕਰਦੀ ਅਤੇ ਇਸਲਈ ਠੀਕ ਤਰਾਂ ਵੇਖਾਈ " "ਨਹੀਂ ਜਾ ਸਕਦੀ" #: ../src/interface.c:3180 msgid "Select the language in which you want to write" msgstr "ਭਾਸ਼ਾ ਚà©à¨£à©‹, ਜਿਸ ਨਾਲ ਤà©à¨¸à©€à¨‚ ਲਿਖਣਾ ਚਾਹà©à©°à¨¦à©‡ ਹੋ" #: ../src/interface.c:3182 ../src/interface.c:10955 msgid "Change to English Keyboard" msgstr "ਅੰਗਰੇਜ਼ੀ ਕੀਬੋਰਡ ਲਈ ਬਦਲੋ" #: ../src/interface.c:3255 msgid "ReassignKey" msgstr "ਸਵਿੱਚ ਬਦਲੋ" #: ../src/interface.c:3265 msgid "Reassign Keyvalue of Key" msgstr "ਸਵਿੱਚ ਦਾ ਮà©à©±à¨² ਮà©à©œ ਦਿਓ" #: ../src/interface.c:3276 msgid "to another Key" msgstr "ਹੋਰ ਸਵਿੱਚ ਨਾਲ" #. Don't need to show menus #. Create the menu items #: ../src/interface.c:3291 ../src/interface.c:10447 msgid "Reassign" msgstr "ਮà©à©œ-ਦਿਓ" #: ../src/interface.c:3295 msgid "Cancel" msgstr "ਰੱਦ ਕਰੋ" #: ../src/interface.c:3586 msgid "Open Keymap File" msgstr "ਕੀਮੈਪ ਫਾਇਲ ਖੋਲà©à¨¹à©‹" #: ../src/interface.c:3636 msgid "Write to Keymap File" msgstr "ਕੀਮੈਪ ਫਾਇਲ ਲਿਖੋ" #: ../src/interface.c:3655 msgid "" "This application supports only for Inscript type keymaps therefore no custom" " xkb keymaps can be created." msgstr "" "ਇਹ à¨à¨ªà¨²à©€à¨•ੇਸ਼ਨ ਸਿਰਫ ਇੰਸਕਰਿਪਟ ਕਿਸਮ ਦੇ ਕੀਮੈਪਾਂ ਨੂੰ ਸਹਿਯੋਗੀ ਦਿੰਦੀ ਹੈ ਇਸਲਈ ਕੋਈ " "ਮਨਪਸੰਦ xkb ਕੀਮੈਪ ਨਹੀਂ ਬਣਾਇਆ ਜਾ ਸਕਦਾ।" #: ../src/interface.c:3681 msgid "" "This application supports saving the inscript keymaps using filename as " "\"locale_code-custom_name-inscript2.mim\" only. If you are planning to " "change the default keymap name then use only this pattern." msgstr "" "ਇਹ à¨à¨ªà¨²à©€à¨•ੇਸ਼ਨ ਸਿਰਫ ਇੰਸਕਰਿਪਟ ਕੀਮੈਪ ਨੂੰ \"locale_code-custom_name-" "inscript2.mim\" ਵਾਂਗ ਫਾਇਲ ਨਾ ਨਾਲ ਸੰਭਾਲਣ ਲਈ ਸਹਿਯੋਗੀ ਦਿੰਦੀ ਹੈ। ਜੇ ਤà©à¨¸à©€à¨‚ ਮੂਲ " "ਕੀਮੈਪ ਨਾਂ ਨੂੰ ਤਬਦੀਲ ਕਰਨ ਬਾਰੇ ਸੋਚਦੇ ਹੋ ਤਾਂ ਸਿਰਫ à¨à¨¹à©€ ਨਮੂਨਾ ਵਰਤੋ।" #. Don't need to show menus #. Create the menu items #: ../src/interface.c:10407 msgid "Open" msgstr "ਖੋਲà©à¨¹à©‹" #: ../src/interface.c:10408 msgid "Open a Keymap that is not listed in a combobox" msgstr "ਕੀਮੈਪ ਖੋਲà©à¨¹à©‹, ਜੋ ਕਿ ਸੂਚੀ ਵਿੱਚ ਨਹੀਂ ਹੈ।" #: ../src/interface.c:10410 msgid "Save" msgstr "ਸੰਭਾਲੋ" #: ../src/interface.c:10411 msgid "Save current state of loaded keymap to a new keymap" msgstr "ਲੋਡ ਕੀਤੇ ਕੀਮੈਪ ਦੀ ਮੌਜੂਦਾ ਹਾਲਤ ਨੂੰ ਨਵੇਂ ਕੀਮੈਪ ਵਜੋਂ ਸੰਭਾਲੋ" #: ../src/interface.c:10414 msgid "Quit" msgstr "ਬੰਦ ਕਰੋ" #: ../src/interface.c:10416 msgid "Close iok application" msgstr "iok à¨à¨ªà¨²à©€à¨•ੇਸ਼ਨ ਬੰਦ ਕਰੋ" #: ../src/interface.c:10449 msgid "Reassign key value of some key to some other key" msgstr "ਕà©à¨ ਸਵਿੱਚਾਂ ਦੇ ਮà©à©±à¨² ਨੂੰ ਹੋਰ ਸਵਿੱਚਾਂ ਨਾਲ ਬਦਲੋ" #: ../src/interface.c:10451 msgid "Swap" msgstr "ਸਵੈਪ ਕਰੋ" #: ../src/interface.c:10453 msgid "Swap key values between any 2 keys in loaded keymap" msgstr "ਲੋਡ ਕੀਤੇ ਕੀਮੈਪ ਵਿੱਚ ਕਿਸੇ ਵੀ ਦੋ ਸਵਿੱਚਾਂ ਦੇ ਮà©à©±à¨² ਆਪਸ ਵਿੱਚ ਬਦਲੋ" #. Don't need to show menus #. Create the menu items #: ../src/interface.c:10473 msgid "About" msgstr "ਇਸ ਬਾਰੇ" #: ../src/interface.c:10475 msgid "About iok application" msgstr "iok à¨à¨ªà¨²à©€à¨•ੇਸ਼ਨ ਬਾਰੇ" #: ../src/interface.c:10491 msgid "Keymap" msgstr "ਕੀਮੈਪ" #: ../src/interface.c:10494 msgid "Keys" msgstr "ਸਵਿੱਚਾਂ" #: ../src/interface.c:10497 msgid "Help" msgstr "ਮੱਦਦ" #: ../src/interface.c:10682 msgid "Backspace" msgstr "ਬੈਕਸਪੇਸ" #: ../src/interface.c:10699 msgid "Tab" msgstr "ਟੈਬ" #: ../src/interface.c:10792 msgid "Caps" msgstr "ਕੈਪ" #: ../src/interface.c:10863 msgid "Enter" msgstr "à¨à¨‚ਟਰ" #: ../src/interface.c:10879 ../src/interface.c:10944 msgid "Shift" msgstr "ਸਿਫਟ" #: ../src/interface.c:10958 msgid "Space" msgstr "ਸਪੇਸ" #: ../src/interface.c:10965 msgid "Change to Extended layer Keyboard" msgstr "ਵਾਧੂ ਲੇਅਰ ਕੀਬੋਰਡ ਲਈ ਬਦਲੋ" #: ../src/interface.c:10971 msgid "" "Select the language in which you want to write. This list contains keymaps " "in order as inscript then user defined then xkb and then any keymaps opened " "that are not default listed" msgstr "" "ਭਾਸ਼ਾ ਚà©à¨£à©‹, ਜੋ ਕਿ ਤà©à¨¸à©€à¨‚ ਲਿਖਣੀ ਚਾਹà©à©°à¨¦à©‡ ਹੋ। ਇਹ ਸੂਚੀ ਵਿੱਚ ਕੀਮੈਪ ਉਸ ਕà©à¨°à¨® ਵਿੱਚ " "ਹਨ, ਇੰਸਕà©à¨°à¨¿à¨ªà¨Ÿ ਪਹਿਲਾਂ, ਫੇਰ ਯੂਜ਼ਰ ਵਲੋਂ ਦਿੱਤੇ, ਫੇਰ xkb ਅਤੇ ਤਦ ਹੋਰ ਕੋਈ ਵੀ ਕੀਮੈਪ," " ਜੋ ਡਿਫਾਲਟ ਨਹੀਂ ਖੋਲà©à¨¹à©‡ ਜਾਂਦੇ।" #. TRANSLATORS: Replace this string with your names, one name per line. #: ../src/interface.c:12541 msgid "translator-credits" msgstr "" "ਅਮਨਪਰੀਤ ਸਿੰਘ ਆਲਮ ੨੦੧੨\n" "ਪੰਜਾਬੀ ਓਪਨਸੋਰਸ ਟੀਮ (POST)\n" "http://www.satuj.com" #: ../src/interface.c:12547 msgid "iok" msgstr "iok" #: ../src/interface.c:12548 msgid "GPLv2 or later\n" msgstr "GPLv2 ਜਾਂ ਨਵਾਂ\n" #: ../src/support.c:90 ../src/support.c:114 #, c-format msgid "Couldn't find pixmap file: %s" msgstr "pixmap ਫਾਈਲ: %s ਨਹੀਂ ਲੱਭ ਸਕੀ ਹੈ" iok-2.1.3/po/ru.po0000644000076400007640000001355311776460111010647 00000000000000# translation of ru.po to # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. # # Yulia Poyarkova , 2009. # Andrew Zaytsev , 2010 msgid "" msgstr "" "Project-Id-Version: ru\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2012-06-29 14:48+0530\n" "PO-Revision-Date: 2009-08-25 13:57+0000\n" "Last-Translator: Andrew Zaytsev \n" "Language-Team: \n" "Language: \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-Generator: KBabel 1.11.4\n" #: ../iok.desktop.in.h:1 msgid "Indic Onscreen Keyboard" msgstr "ИндийÑÐºÐ°Ñ Ð­ÐºÑ€Ð°Ð½Ð½Ð°Ñ ÐšÐ»Ð°Ð²Ð¸Ð°Ñ‚ÑƒÑ€Ð°" #: ../iok.desktop.in.h:2 msgid "Enter Indic characters with a virtual keyboard" msgstr "Введите индийÑкие Ñимволы Ñ Ð¿Ð¾Ð¼Ð¾Ñ‰ÑŒÑŽ виртуальной клавиатуры" #: ../src/interface.c:1987 msgid "" "This keymap file does not map uniquely to a keyboard and therefore cannot be " "displayed correctly" msgstr "" #: ../src/interface.c:3180 msgid "Select the language in which you want to write" msgstr "Выберите Ñзык на которым вы хотите пиÑать" #: ../src/interface.c:3182 ../src/interface.c:10955 msgid "Change to English Keyboard" msgstr "Изменить на английÑкую клавиатуру" #: ../src/interface.c:3255 msgid "ReassignKey" msgstr "Переназначить клавишу" #: ../src/interface.c:3265 msgid "Reassign Keyvalue of Key" msgstr "Переназначить значение клавиши" #: ../src/interface.c:3276 msgid "to another Key" msgstr "другой клавише" #. Don't need to show menus #. Create the menu items #: ../src/interface.c:3291 ../src/interface.c:10447 msgid "Reassign" msgstr "Переназначить" #: ../src/interface.c:3295 msgid "Cancel" msgstr "Отмена" #: ../src/interface.c:3586 msgid "Open Keymap File" msgstr "Открыть файл раÑкладки" #: ../src/interface.c:3636 msgid "Write to Keymap File" msgstr "ЗапиÑать в файл раÑкладки" #: ../src/interface.c:3655 msgid "" "This application supports only for Inscript type keymaps therefore no custom " "xkb keymaps can be created." msgstr "" #: ../src/interface.c:3681 msgid "" "This application supports saving the inscript keymaps using filename as " "\"locale_code-custom_name-inscript2.mim\" only. If you are planning to " "change the default keymap name then use only this pattern." msgstr "" #. Don't need to show menus #. Create the menu items #: ../src/interface.c:10407 msgid "Open" msgstr "Открыть" #: ../src/interface.c:10408 msgid "Open a Keymap that is not listed in a combobox" msgstr "Открыть файл раÑкладки, которого нет в ÑпиÑке" #: ../src/interface.c:10410 msgid "Save" msgstr "Сохранить" #: ../src/interface.c:10411 msgid "Save current state of loaded keymap to a new keymap" msgstr "Сохранить текущее ÑоÑтоÑние загруженной раÑкладки в новую" #: ../src/interface.c:10414 msgid "Quit" msgstr "Выход" #: ../src/interface.c:10416 msgid "Close iok application" msgstr "Закрыть приложение iok" #: ../src/interface.c:10449 msgid "Reassign key value of some key to some other key" msgstr "Переназначить значение одной клавиши другой клавише" #: ../src/interface.c:10451 msgid "Swap" msgstr "ПоменÑть меÑтами" #: ../src/interface.c:10453 msgid "Swap key values between any 2 keys in loaded keymap" msgstr "ПоменÑть меÑтами 2 клавишы на загруженной раÑкладке" #. Don't need to show menus #. Create the menu items #: ../src/interface.c:10473 msgid "About" msgstr "О" #: ../src/interface.c:10475 msgid "About iok application" msgstr "О программе iok" #: ../src/interface.c:10491 msgid "Keymap" msgstr "РаÑкладка" #: ../src/interface.c:10494 msgid "Keys" msgstr "Клавиши" #: ../src/interface.c:10497 msgid "Help" msgstr "Помощь" #: ../src/interface.c:10682 msgid "Backspace" msgstr "Backspace" #: ../src/interface.c:10699 msgid "Tab" msgstr "Tab" #: ../src/interface.c:10792 msgid "Caps" msgstr "Caps" #: ../src/interface.c:10863 msgid "Enter" msgstr "Enter" #: ../src/interface.c:10879 ../src/interface.c:10944 msgid "Shift" msgstr "Shift" #: ../src/interface.c:10958 msgid "Space" msgstr "Пробел" #: ../src/interface.c:10965 #, fuzzy msgid "Change to Extended layer Keyboard" msgstr "Изменить на английÑкую клавиатуру" #: ../src/interface.c:10971 msgid "" "Select the language in which you want to write. This list contains keymaps " "in order as inscript then user defined then xkb and then any keymaps opened " "that are not default listed" msgstr "" "Выберите Ñзык на котором вы хотите пиÑать. Этот ÑпиÑок Ñодержит раÑкладки в " "порÑдке: inscript, затем определенные пользователем, затем xlb и затем любые " "открытые раÑкладки которые по-умолчанию не в ÑпиÑке" #. TRANSLATORS: Replace this string with your names, one name per line. #: ../src/interface.c:12541 msgid "translator-credits" msgstr "translator-credits" #: ../src/interface.c:12547 msgid "iok" msgstr "iok" #: ../src/interface.c:12548 msgid "GPLv2 or later\n" msgstr "GPLv2 или позже\n" #: ../src/support.c:90 ../src/support.c:114 #, c-format msgid "Couldn't find pixmap file: %s" msgstr "Ðевозможно найти файл карты Ñлементов изображениÑ: %s" #~ msgid "to English" #~ msgstr "на английÑкую" #~ msgid "English" #~ msgstr "английÑкую" iok-2.1.3/po/pt.po0000644000076400007640000001260111776460111010635 00000000000000# SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. # Rui Gouveia , 2010. msgid "" msgstr "" "Project-Id-Version: iok\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2012-06-29 14:48+0530\n" "PO-Revision-Date: 2010-03-16 21:18+0100\n" "Last-Translator: Rui Gouveia \n" "Language-Team: trans-pt@fedoraproject.org\n" "Language: pt\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: Virtaal 0.5.2\n" "X-Poedit-Language: Portuguese\n" "X-Poedit-SourceCharset: utf-8\n" "X-Poedit-Country: PORTUGAL\n" #: ../iok.desktop.in.h:1 msgid "Indic Onscreen Keyboard" msgstr "Teclado índico no ecrã" #: ../iok.desktop.in.h:2 msgid "Enter Indic characters with a virtual keyboard" msgstr "Insira caracteres índicos com um teclado virtual" #: ../src/interface.c:1987 msgid "" "This keymap file does not map uniquely to a keyboard and therefore cannot be " "displayed correctly" msgstr "" #: ../src/interface.c:3180 msgid "Select the language in which you want to write" msgstr "Seleccione o idioma no qual pretende escrever" #: ../src/interface.c:3182 ../src/interface.c:10955 msgid "Change to English Keyboard" msgstr "Alterar para teclado Inglês" #: ../src/interface.c:3255 msgid "ReassignKey" msgstr "Re-atribuir tecla" #: ../src/interface.c:3265 msgid "Reassign Keyvalue of Key" msgstr "Re-atribuir valor da tecla" #: ../src/interface.c:3276 msgid "to another Key" msgstr "para outra tecla" #. Don't need to show menus #. Create the menu items #: ../src/interface.c:3291 ../src/interface.c:10447 msgid "Reassign" msgstr "Re-atribuir" #: ../src/interface.c:3295 msgid "Cancel" msgstr "Cancelar" #: ../src/interface.c:3586 msgid "Open Keymap File" msgstr "Abrir ficheiro de mapa de teclado" #: ../src/interface.c:3636 msgid "Write to Keymap File" msgstr "Escrever para o ficheiro de mapa de teclado" #: ../src/interface.c:3655 msgid "" "This application supports only for Inscript type keymaps therefore no custom " "xkb keymaps can be created." msgstr "" #: ../src/interface.c:3681 msgid "" "This application supports saving the inscript keymaps using filename as " "\"locale_code-custom_name-inscript2.mim\" only. If you are planning to " "change the default keymap name then use only this pattern." msgstr "" #. Don't need to show menus #. Create the menu items #: ../src/interface.c:10407 msgid "Open" msgstr "Abrir" #: ../src/interface.c:10408 msgid "Open a Keymap that is not listed in a combobox" msgstr "Abrir um mapa de teclado que não aparece na combobox" #: ../src/interface.c:10410 msgid "Save" msgstr "Gravar" #: ../src/interface.c:10411 msgid "Save current state of loaded keymap to a new keymap" msgstr "Gravar o estado actual do mapa de teclado para um novo mapa de teclado" #: ../src/interface.c:10414 msgid "Quit" msgstr "Sair" #: ../src/interface.c:10416 msgid "Close iok application" msgstr "Fechar a aplicação iok" #: ../src/interface.c:10449 msgid "Reassign key value of some key to some other key" msgstr "Re-atribuir o valor da uma tecla para uma outra tecla" #: ../src/interface.c:10451 msgid "Swap" msgstr "Trocar" #: ../src/interface.c:10453 msgid "Swap key values between any 2 keys in loaded keymap" msgstr "" "Trocar os valores entre duas quaisquer teclas no mapa de teclado carrregado" #. Don't need to show menus #. Create the menu items #: ../src/interface.c:10473 msgid "About" msgstr "Sobre" #: ../src/interface.c:10475 msgid "About iok application" msgstr "Sobre a aplicação iok" #: ../src/interface.c:10491 msgid "Keymap" msgstr "Mapa de teclado" #: ../src/interface.c:10494 msgid "Keys" msgstr "Teclas" #: ../src/interface.c:10497 msgid "Help" msgstr "Ajuda" #: ../src/interface.c:10682 msgid "Backspace" msgstr "Backspace" #: ../src/interface.c:10699 msgid "Tab" msgstr "Tabulação" #: ../src/interface.c:10792 msgid "Caps" msgstr "Maiúsculas" #: ../src/interface.c:10863 msgid "Enter" msgstr "Enter" #: ../src/interface.c:10879 ../src/interface.c:10944 msgid "Shift" msgstr "Shift" #: ../src/interface.c:10958 msgid "Space" msgstr "Espaço" #: ../src/interface.c:10965 #, fuzzy msgid "Change to Extended layer Keyboard" msgstr "Alterar para teclado Inglês" #: ../src/interface.c:10971 msgid "" "Select the language in which you want to write. This list contains keymaps " "in order as inscript then user defined then xkb and then any keymaps opened " "that are not default listed" msgstr "" "Seleccione o idioma no qual pretende escrever. Esta lista contém os mapas de " "teclado em ordem como \"inscript\", depois em modo de utilizador, depois xkb " "e depois qualquer mapa de teclado aberto que não apareça listado por omissão" #. TRANSLATORS: Replace this string with your names, one name per line. #: ../src/interface.c:12541 msgid "translator-credits" msgstr "" "Duarte Loreto \n" "Paulo Pereira \n" "Rui Gouveia " #: ../src/interface.c:12547 msgid "iok" msgstr "iok" #: ../src/interface.c:12548 msgid "GPLv2 or later\n" msgstr "GPLv2 ou posterior\n" #: ../src/support.c:90 ../src/support.c:114 #, c-format msgid "Couldn't find pixmap file: %s" msgstr "Incapaz de encontrar ficheiro de imagem: %s" #~ msgid "to English" #~ msgstr "para o inglês" #~ msgid "English" #~ msgstr "inglês" iok-2.1.3/po/Makefile.in.in0000644000076400007640000001604611776460251012340 00000000000000# Makefile for program source directory in GNU NLS utilities package. # Copyright (C) 1995, 1996, 1997 by Ulrich Drepper # Copyright (C) 2004-2008 Rodney Dawes # # This file may be copied and used freely without restrictions. It may # be used in projects which are not available under a GNU Public License, # but which still want to provide support for the GNU gettext functionality. # # - Modified by Owen Taylor to use GETTEXT_PACKAGE # instead of PACKAGE and to look for po2tbl in ./ not in intl/ # # - Modified by jacob berkman to install # Makefile.in.in and po2tbl.sed.in for use with glib-gettextize # # - Modified by Rodney Dawes for use with intltool # # We have the following line for use by intltoolize: # INTLTOOL_MAKEFILE GETTEXT_PACKAGE = @GETTEXT_PACKAGE@ PACKAGE = @PACKAGE@ VERSION = @VERSION@ SHELL = @SHELL@ srcdir = @srcdir@ top_srcdir = @top_srcdir@ top_builddir = @top_builddir@ VPATH = @srcdir@ prefix = @prefix@ exec_prefix = @exec_prefix@ datadir = @datadir@ datarootdir = @datarootdir@ libdir = @libdir@ DATADIRNAME = @DATADIRNAME@ itlocaledir = $(prefix)/$(DATADIRNAME)/locale subdir = po install_sh = @install_sh@ # Automake >= 1.8 provides @mkdir_p@. # Until it can be supposed, use the safe fallback: mkdir_p = $(install_sh) -d INSTALL = @INSTALL@ INSTALL_DATA = @INSTALL_DATA@ GMSGFMT = @GMSGFMT@ MSGFMT = @MSGFMT@ XGETTEXT = @XGETTEXT@ INTLTOOL_UPDATE = @INTLTOOL_UPDATE@ INTLTOOL_EXTRACT = @INTLTOOL_EXTRACT@ MSGMERGE = INTLTOOL_EXTRACT="$(INTLTOOL_EXTRACT)" XGETTEXT="$(XGETTEXT)" srcdir=$(srcdir) $(INTLTOOL_UPDATE) --gettext-package $(GETTEXT_PACKAGE) --dist GENPOT = INTLTOOL_EXTRACT="$(INTLTOOL_EXTRACT)" XGETTEXT="$(XGETTEXT)" srcdir=$(srcdir) $(INTLTOOL_UPDATE) --gettext-package $(GETTEXT_PACKAGE) --pot ALL_LINGUAS = @ALL_LINGUAS@ PO_LINGUAS=$(shell if test -r $(srcdir)/LINGUAS; then grep -v "^\#" $(srcdir)/LINGUAS; else echo "$(ALL_LINGUAS)"; fi) USER_LINGUAS=$(shell if test -n "$(LINGUAS)"; then LLINGUAS="$(LINGUAS)"; ALINGUAS="$(ALL_LINGUAS)"; for lang in $$LLINGUAS; do if test -n "`grep \^$$lang$$ $(srcdir)/LINGUAS 2>/dev/null`" -o -n "`echo $$ALINGUAS|tr ' ' '\n'|grep \^$$lang$$`"; then printf "$$lang "; fi; done; fi) USE_LINGUAS=$(shell if test -n "$(USER_LINGUAS)" -o -n "$(LINGUAS)"; then LLINGUAS="$(USER_LINGUAS)"; else if test -n "$(PO_LINGUAS)"; then LLINGUAS="$(PO_LINGUAS)"; else LLINGUAS="$(ALL_LINGUAS)"; fi; fi; for lang in $$LLINGUAS; do printf "$$lang "; done) POFILES=$(shell LINGUAS="$(PO_LINGUAS)"; for lang in $$LINGUAS; do printf "$$lang.po "; done) DISTFILES = Makefile.in.in POTFILES.in $(POFILES) EXTRA_DISTFILES = ChangeLog POTFILES.skip Makevars LINGUAS POTFILES = \ # This comment gets stripped out CATALOGS=$(shell LINGUAS="$(USE_LINGUAS)"; for lang in $$LINGUAS; do printf "$$lang.gmo "; done) .SUFFIXES: .SUFFIXES: .po .pox .gmo .mo .msg .cat AM_DEFAULT_VERBOSITY = @AM_DEFAULT_VERBOSITY@ INTLTOOL_V_MSGFMT = $(INTLTOOL__v_MSGFMT_$(V)) INTLTOOL__v_MSGFMT_= $(INTLTOOL__v_MSGFMT_$(AM_DEFAULT_VERBOSITY)) INTLTOOL__v_MSGFMT_0 = @echo " MSGFMT" $@; .po.pox: $(MAKE) $(GETTEXT_PACKAGE).pot $(MSGMERGE) $< $(GETTEXT_PACKAGE).pot -o $*.pox .po.mo: $(INTLTOOL_V_MSGFMT)$(MSGFMT) -o $@ $< .po.gmo: $(INTLTOOL_V_MSGFMT)file=`echo $* | sed 's,.*/,,'`.gmo \ && rm -f $$file && $(GMSGFMT) -o $$file $< .po.cat: sed -f ../intl/po2msg.sed < $< > $*.msg \ && rm -f $@ && gencat $@ $*.msg all: all-@USE_NLS@ all-yes: $(CATALOGS) all-no: $(GETTEXT_PACKAGE).pot: $(POTFILES) $(GENPOT) install: install-data install-data: install-data-@USE_NLS@ install-data-no: all install-data-yes: all linguas="$(USE_LINGUAS)"; \ for lang in $$linguas; do \ dir=$(DESTDIR)$(itlocaledir)/$$lang/LC_MESSAGES; \ $(mkdir_p) $$dir; \ if test -r $$lang.gmo; then \ $(INSTALL_DATA) $$lang.gmo $$dir/$(GETTEXT_PACKAGE).mo; \ echo "installing $$lang.gmo as $$dir/$(GETTEXT_PACKAGE).mo"; \ else \ $(INSTALL_DATA) $(srcdir)/$$lang.gmo $$dir/$(GETTEXT_PACKAGE).mo; \ echo "installing $(srcdir)/$$lang.gmo as" \ "$$dir/$(GETTEXT_PACKAGE).mo"; \ fi; \ if test -r $$lang.gmo.m; then \ $(INSTALL_DATA) $$lang.gmo.m $$dir/$(GETTEXT_PACKAGE).mo.m; \ echo "installing $$lang.gmo.m as $$dir/$(GETTEXT_PACKAGE).mo.m"; \ else \ if test -r $(srcdir)/$$lang.gmo.m ; then \ $(INSTALL_DATA) $(srcdir)/$$lang.gmo.m \ $$dir/$(GETTEXT_PACKAGE).mo.m; \ echo "installing $(srcdir)/$$lang.gmo.m as" \ "$$dir/$(GETTEXT_PACKAGE).mo.m"; \ else \ true; \ fi; \ fi; \ done # Empty stubs to satisfy archaic automake needs dvi info ctags tags CTAGS TAGS ID: # Define this as empty until I found a useful application. install-exec installcheck: uninstall: linguas="$(USE_LINGUAS)"; \ for lang in $$linguas; do \ rm -f $(DESTDIR)$(itlocaledir)/$$lang/LC_MESSAGES/$(GETTEXT_PACKAGE).mo; \ rm -f $(DESTDIR)$(itlocaledir)/$$lang/LC_MESSAGES/$(GETTEXT_PACKAGE).mo.m; \ done check: all $(GETTEXT_PACKAGE).pot rm -f missing notexist srcdir=$(srcdir) $(INTLTOOL_UPDATE) -m if [ -r missing -o -r notexist ]; then \ exit 1; \ fi mostlyclean: rm -f *.pox $(GETTEXT_PACKAGE).pot *.old.po cat-id-tbl.tmp rm -f .intltool-merge-cache clean: mostlyclean distclean: clean rm -f Makefile Makefile.in POTFILES stamp-it rm -f *.mo *.msg *.cat *.cat.m *.gmo maintainer-clean: distclean @echo "This command is intended for maintainers to use;" @echo "it deletes files that may require special tools to rebuild." rm -f Makefile.in.in distdir = ../$(PACKAGE)-$(VERSION)/$(subdir) dist distdir: $(DISTFILES) dists="$(DISTFILES)"; \ extra_dists="$(EXTRA_DISTFILES)"; \ for file in $$extra_dists; do \ test -f $(srcdir)/$$file && dists="$$dists $(srcdir)/$$file"; \ done; \ for file in $$dists; do \ test -f $$file || file="$(srcdir)/$$file"; \ ln $$file $(distdir) 2> /dev/null \ || cp -p $$file $(distdir); \ done update-po: Makefile $(MAKE) $(GETTEXT_PACKAGE).pot tmpdir=`pwd`; \ linguas="$(USE_LINGUAS)"; \ for lang in $$linguas; do \ echo "$$lang:"; \ result="`$(MSGMERGE) -o $$tmpdir/$$lang.new.po $$lang`"; \ if $$result; then \ if cmp $(srcdir)/$$lang.po $$tmpdir/$$lang.new.po >/dev/null 2>&1; then \ rm -f $$tmpdir/$$lang.new.po; \ else \ if mv -f $$tmpdir/$$lang.new.po $$lang.po; then \ :; \ else \ echo "msgmerge for $$lang.po failed: cannot move $$tmpdir/$$lang.new.po to $$lang.po" 1>&2; \ rm -f $$tmpdir/$$lang.new.po; \ exit 1; \ fi; \ fi; \ else \ echo "msgmerge for $$lang.gmo failed!"; \ rm -f $$tmpdir/$$lang.new.po; \ fi; \ done Makefile POTFILES: stamp-it @if test ! -f $@; then \ rm -f stamp-it; \ $(MAKE) stamp-it; \ fi stamp-it: Makefile.in.in $(top_builddir)/config.status POTFILES.in cd $(top_builddir) \ && CONFIG_FILES=$(subdir)/Makefile.in CONFIG_HEADERS= CONFIG_LINKS= \ $(SHELL) ./config.status # Tell versions [3.59,3.63) of GNU make not to export all variables. # Otherwise a system limit (for SysV at least) may be exceeded. .NOEXPORT: iok-2.1.3/po/es.po0000644000076400007640000001243411776460111010625 00000000000000# SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. # # Translators: # Héctor Daniel Cabrera , 2011. msgid "" msgstr "" "Project-Id-Version: fedorahosted-org-svn-iok-po-iok.pot\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2012-06-29 14:48+0530\n" "PO-Revision-Date: 2011-03-23 13:37+0000\n" "Last-Translator: logan \n" "Language-Team: Spanish (Castilian) \n" "Language: es\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n != 1)\n" #: ../iok.desktop.in.h:1 msgid "Indic Onscreen Keyboard" msgstr "Teclado índico en pantalla" #: ../iok.desktop.in.h:2 msgid "Enter Indic characters with a virtual keyboard" msgstr "Ingrese caracteres índicos mediante un teclado virtual" #: ../src/interface.c:1987 msgid "" "This keymap file does not map uniquely to a keyboard and therefore cannot be " "displayed correctly" msgstr "" #: ../src/interface.c:3180 msgid "Select the language in which you want to write" msgstr "Elija el idioma con el que desea escribir" #: ../src/interface.c:3182 ../src/interface.c:10955 msgid "Change to English Keyboard" msgstr "Utilizar el teclado en inglés" #: ../src/interface.c:3255 msgid "ReassignKey" msgstr "ReassignKey" #: ../src/interface.c:3265 msgid "Reassign Keyvalue of Key" msgstr "Volver a asignar el valor de la tecla" #: ../src/interface.c:3276 msgid "to another Key" msgstr "a otra tecla" #. Don't need to show menus #. Create the menu items #: ../src/interface.c:3291 ../src/interface.c:10447 msgid "Reassign" msgstr "Reasignar" #: ../src/interface.c:3295 msgid "Cancel" msgstr "Cancelar" #: ../src/interface.c:3586 msgid "Open Keymap File" msgstr "Abrir el archivo de mapa de teclado" #: ../src/interface.c:3636 msgid "Write to Keymap File" msgstr "Modificar el archivo de mapa de teclado" #: ../src/interface.c:3655 msgid "" "This application supports only for Inscript type keymaps therefore no custom " "xkb keymaps can be created." msgstr "" #: ../src/interface.c:3681 msgid "" "This application supports saving the inscript keymaps using filename as " "\"locale_code-custom_name-inscript2.mim\" only. If you are planning to " "change the default keymap name then use only this pattern." msgstr "" #. Don't need to show menus #. Create the menu items #: ../src/interface.c:10407 msgid "Open" msgstr "Abrir" #: ../src/interface.c:10408 msgid "Open a Keymap that is not listed in a combobox" msgstr "Abrir un mapa de teclado que no se encuentre listado en un combobox" #: ../src/interface.c:10410 msgid "Save" msgstr "Guardar" #: ../src/interface.c:10411 msgid "Save current state of loaded keymap to a new keymap" msgstr "Guardar el estado actual del mapa de teclado cargado en uno nuevo" #: ../src/interface.c:10414 msgid "Quit" msgstr "Salir" #: ../src/interface.c:10416 msgid "Close iok application" msgstr "Cerrar la herramienta iok" #: ../src/interface.c:10449 msgid "Reassign key value of some key to some other key" msgstr "Volver a asignar el valor de una tecla a cualquier otra tecla" #: ../src/interface.c:10451 msgid "Swap" msgstr "Intercambiar" #: ../src/interface.c:10453 msgid "Swap key values between any 2 keys in loaded keymap" msgstr "" "Intercambiar los valores de dos teclas cualesquiera del mapa de teclado " "cargado" #. Don't need to show menus #. Create the menu items #: ../src/interface.c:10473 msgid "About" msgstr "Acerca de" #: ../src/interface.c:10475 msgid "About iok application" msgstr "Acerca de la herramienta iok" #: ../src/interface.c:10491 msgid "Keymap" msgstr "Mapa de teclado" #: ../src/interface.c:10494 msgid "Keys" msgstr "Teclas" #: ../src/interface.c:10497 msgid "Help" msgstr "Ayuda" #: ../src/interface.c:10682 msgid "Backspace" msgstr "Retroceso" #: ../src/interface.c:10699 msgid "Tab" msgstr "Tab" #: ../src/interface.c:10792 msgid "Caps" msgstr "Mayúsculas" #: ../src/interface.c:10863 msgid "Enter" msgstr "Enter" #: ../src/interface.c:10879 ../src/interface.c:10944 msgid "Shift" msgstr "Shift" #: ../src/interface.c:10958 msgid "Space" msgstr "Espacio" #: ../src/interface.c:10965 #, fuzzy msgid "Change to Extended layer Keyboard" msgstr "Utilizar el teclado en inglés" #: ../src/interface.c:10971 msgid "" "Select the language in which you want to write. This list contains keymaps " "in order as inscript then user defined then xkb and then any keymaps opened " "that are not default listed" msgstr "" "Elija el idioma con el que desea escribir. La siguiente lista contiene mapas " "de teclado ordenados como inscript, luego definidos por el usuarios, luego " "xkb, y por último cualquier mapa que haya sido abierto y que no sea alguno " "de los predeterminados" #. TRANSLATORS: Replace this string with your names, one name per line. #: ../src/interface.c:12541 msgid "translator-credits" msgstr "Héctor Daniel Cabrera (logan@fedoraproject,org), 2011." #: ../src/interface.c:12547 msgid "iok" msgstr "iok" #: ../src/interface.c:12548 msgid "GPLv2 or later\n" msgstr "GPLv2 o posterior \n" #: ../src/support.c:90 ../src/support.c:114 #, c-format msgid "Couldn't find pixmap file: %s" msgstr "No se ha podido hallar un archivo pixmap: %s" #~ msgid "English" #~ msgstr "inglés" iok-2.1.3/po/kn.po0000644000076400007640000001733311776460111010631 00000000000000# shanky , 2012. #zanata msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2012-06-29 14:48+0530\n" "PO-Revision-Date: 2012-07-02 05:17-0400\n" "Last-Translator: shanky \n" "Language-Team: Kannada\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Language: kn\n" "Plural-Forms: nplurals=2; plural=(n!=1)\n" "X-Generator: Zanata 1.6.1\n" #: ../iok.desktop.in.h:1 msgid "Indic Onscreen Keyboard" msgstr "ಇಂಡಿಕೠಆನà³â€Œà²¸à³à²•à³à²°à³€à²¨à³ ಕೀಬೋರà³à²¡à³" #: ../iok.desktop.in.h:2 msgid "Enter Indic characters with a virtual keyboard" msgstr "ವರà³à²šà³à²µà²²à³ ಕೀಲಿಮಣೆಯನà³à²¨à³ ಬಳಸಿಕೊಂಡೠಭಾರತೀಯ ಭಾಷೆಗಳ ಅಕà³à²·à²°à²—ಳನà³à²¨à³ ನಮೂದಿಸಿ" #: ../src/interface.c:1987 msgid "" "This keymap file does not map uniquely to a keyboard and therefore cannot be" " displayed correctly" msgstr "" "ಈ ಕೀಲಿನಕà³à²·à³† ಕಡತವೠಒಂದೠಕೀಲಮಣೆಗೆ ವಿಶಿಷà³à²Ÿà²µà²¾à²—ಿ ಮà³à²¯à²¾à²ªà³â€Œ ಮಾಡದೆ ಇರà³à²µà³à²¦à²°à²¿à²‚ದ ಇದನà³à²¨à³ " "ಸರಿಯಾಗಿ ತೋರಿಸಲೠಸಾಧà³à²¯à²µà²¿à²°à³à²µà³à²¦à²¿à²²à³à²²" #: ../src/interface.c:3180 msgid "Select the language in which you want to write" msgstr "ನೀವೠಬರೆಯಲೠಇಚà³à²›à²¿à²¸à³à²µ ಭಾಷೆಯನà³à²¨à³ ಆಯà³à²•ೆ ಮಾಡಿ" #: ../src/interface.c:3182 ../src/interface.c:10955 msgid "Change to English Keyboard" msgstr "ಇಂಗà³à²²à³€à²·à³ ಕೀಲಿಮಣೆಗೆ ಬದಲಾಯಿಸಿ" #: ../src/interface.c:3255 msgid "ReassignKey" msgstr "ಮರà³à²¨à²¿à²¯à³‹à²œà²¨à²¾à²•ೀಲಿ" #: ../src/interface.c:3265 msgid "Reassign Keyvalue of Key" msgstr "ಕೀಲಿಯ ಮೌಲà³à²¯à²µà²¨à³à²¨à³ ಮರà³à²¨à²¿à²¯à³‹à²œà²¿à²¸à³" #: ../src/interface.c:3276 msgid "to another Key" msgstr "ಬೇರೊಂದೠಕೀಲಿಗೆ" #. Don't need to show menus #. Create the menu items #: ../src/interface.c:3291 ../src/interface.c:10447 msgid "Reassign" msgstr "ಮರà³à²¨à²¿à²¯à³‹à²œà²¿à²¸à³" #: ../src/interface.c:3295 msgid "Cancel" msgstr "ರದà³à²¦à³ ಮಾಡà³" #: ../src/interface.c:3586 msgid "Open Keymap File" msgstr "ಕೀಲಿನಕà³à²·à³†à²¯ ಕಡತವನà³à²¨à³ ತೆರೆ" #: ../src/interface.c:3636 msgid "Write to Keymap File" msgstr "ಕೀಲಿನಕà³à²·à³† ಕಡತಕà³à²•ೆ ಬರೆ" #: ../src/interface.c:3655 msgid "" "This application supports only for Inscript type keymaps therefore no custom" " xkb keymaps can be created." msgstr "" "ಈ ಅನà³à²µà²¯à²µà³ ಕೇವಲ ಇನà³â€Œà²¸à³à²•à³à²°à²¿à²ªà³à²Ÿà³â€ ಬಗೆಯ ಕೀಲಿನಕà³à²·à³†à²—ಳನà³à²¨à³ ಮಾತà³à²° ಬೆಂಬಲಿಸà³à²¤à³à²¤à²¦à³† " "ಆದà³à²¦à²°à²¿à²‚ದ ಯಾವà³à²¦à³† ಅಗತà³à²¯à²¾à²¨à³à²—à³à²£à²µà²¾à²¦ xkb ಕೀಲಿನಕà³à²·à³†à²¯à²¨à³à²¨à³ ರಚಿಸಲೠಸಾಧà³à²¯à²µà²¿à²°à³à²µà³à²¦à²¿à²²à³à²²." #: ../src/interface.c:3681 msgid "" "This application supports saving the inscript keymaps using filename as " "\"locale_code-custom_name-inscript2.mim\" only. If you are planning to " "change the default keymap name then use only this pattern." msgstr "" "ಈ ಅನà³à²µà²¯à²µà³ ಇನà³â€Œà²¸à³à²•à³à²°à²¿à²ªà³à²Ÿà³â€ ಕೀಲಿನಕà³à²·à³†à²—ಳನà³à²¨à³ \"locale_code-custom_name-" "inscript2.mim\" ಎಂಬ ಬಗೆಯ ಕಡತದ ಹೆಸರಿನಿಂದ ಉಳಿಸà³à²µà³à²¦à²¨à³à²¨à³ ಮಾತà³à²° ಬೆಂಬಲಿಸà³à²¤à³à²¤à²¦à³†. " "ನೀವೠಪೂರà³à²µà²¨à²¿à²¯à³‹à²œà²¿à²¤ ಕೀಲಿನಕà³à²·à³†à²¯ ಹೆಸರನà³à²¨à³ ಬದಲಾಯಿಸಲೠಬಯಸಿದಲà³à²²à²¿ ಮಾತà³à²° ಈ " "ವಿನà³à²¯à²¾à²¸à²µà²¨à³à²¨à³ ಬಳಸಿ." #. Don't need to show menus #. Create the menu items #: ../src/interface.c:10407 msgid "Open" msgstr "ತೆರೆ" #: ../src/interface.c:10408 msgid "Open a Keymap that is not listed in a combobox" msgstr "ಸಂಯೋಜನಾಚೌಕದಲà³à²²à²¿ ಪಟà³à²Ÿà²¿ ಮಾಡದೆ ಇರà³à²µ ಒಂದೠಕೀಲಿನಕà³à²·à³†à²¯à²¨à³à²¨à³ ತೆರೆಯಿರಿ" #: ../src/interface.c:10410 msgid "Save" msgstr "ಉಳಿಸà³" #: ../src/interface.c:10411 msgid "Save current state of loaded keymap to a new keymap" msgstr "ಲೋಡೠಮಾಡಲಾದ ಕೀಲಿನಕà³à²·à³†à²¯ ಪà³à²°à²¸à²•à³à²¤ ಸà³à²¥à²¿à²¤à²¿à²¯à²¨à³à²¨à³ ಒಂದೠಹೊಸ ಕೀಲಿನಕà³à²·à³†à²—ೆ ಉಳಿಸಿ" #: ../src/interface.c:10414 msgid "Quit" msgstr "ತà³à²¯à²œà²¿à²¸à³" #: ../src/interface.c:10416 msgid "Close iok application" msgstr "iok ಅನà³à²µà²¯à²µà²¨à³à²¨à³ ಮà³à²šà³à²šà³" #: ../src/interface.c:10449 msgid "Reassign key value of some key to some other key" msgstr "ಕೀಲಿಯ ಮೌಲà³à²¯à²µà²¨à³à²¨à³ ಬೇರೊಂದೠಕೀಲಿಗೆ ಮರಳಿ ನಿಯೋಜಿಸಿ" #: ../src/interface.c:10451 msgid "Swap" msgstr "ಸà³à²µà²¾à²ªà³" #: ../src/interface.c:10453 msgid "Swap key values between any 2 keys in loaded keymap" msgstr "" "ಲೋಡೠಮಾಡಲಾದ ಕೀಲಿನಕà³à²·à³†à²¯à²²à³à²²à²¿à²¨ ಯಾವà³à²¦à²¾à²¦à²°à³‚ ೨ ಕೀಲಿಗಳ ಕೀಲಿ ಮೌಲà³à²¯à²—ಳ ನಡà³à²µà³† ಬದಲಾಯಿಸಿ" #. Don't need to show menus #. Create the menu items #: ../src/interface.c:10473 msgid "About" msgstr "ಇದರ ಬಗà³à²—ೆ" #: ../src/interface.c:10475 msgid "About iok application" msgstr "iok ಅನà³à²µà²¯à²¦ ಬಗೆಗೆ" #: ../src/interface.c:10491 msgid "Keymap" msgstr "ಕೀಲಿನಕà³à²·à³†" #: ../src/interface.c:10494 msgid "Keys" msgstr "ಕೀಲಿಗಳà³" #: ../src/interface.c:10497 msgid "Help" msgstr "ನೆರವà³" #: ../src/interface.c:10682 msgid "Backspace" msgstr "Backspace" #: ../src/interface.c:10699 msgid "Tab" msgstr "Tab" #: ../src/interface.c:10792 msgid "Caps" msgstr "Caps" #: ../src/interface.c:10863 msgid "Enter" msgstr "Enter" #: ../src/interface.c:10879 ../src/interface.c:10944 msgid "Shift" msgstr "Shift" #: ../src/interface.c:10958 msgid "Space" msgstr "Space" #: ../src/interface.c:10965 msgid "Change to Extended layer Keyboard" msgstr "ವಿಸà³à²¤à³ƒà²¤ ಪದರ ಕೀಲಿಮಣೆಗೆ ಬದಲಾಯಿಸಿ" #: ../src/interface.c:10971 msgid "" "Select the language in which you want to write. This list contains keymaps " "in order as inscript then user defined then xkb and then any keymaps opened " "that are not default listed" msgstr "" "ಯಾವ ಭಾಷೆಯಲà³à²²à²¿ ನೀವೠಬರೆಯಲೠಬಯಸà³à²¤à³à²¤à³€à²°à³Š ಅದನà³à²¨à³ ಆಯà³à²•ೆ ಮಾಡಿ. ಈ ಪಟà³à²Ÿà²¿à²¯à²²à³à²²à²¿à²¨ " "ಕೀಲಿನಕà³à²·à³†à²—ಳ ಅನà³à²•à³à²°à²®à²µà³ ಹೀಗಿರà³à²¤à³à²¤à²¦à³†: inscript ನಂತರ ಬಳಕೆದಾರರಿಂದ ಸೂಚಿತಗೊಂಡಿದà³à²¦à³ " "ಆಮೇಲೆ xkb ಹಾಗೠತದನಂತರ ತೆರೆಯಲಾಗಿರà³à²µ ಪೂರà³à²µà²¨à²¿à²¯à³‹à²œà²¿à²¤à²µà²¾à²—ಿರದ ಕೀಲಿನಕà³à²·à³† ಇರà³à²¤à³à²¤à²¦à³†" #. TRANSLATORS: Replace this string with your names, one name per line. #: ../src/interface.c:12541 msgid "translator-credits" msgstr "ಶಂಕರೠಪà³à²°à²¸à²¾à²¦à³ " #: ../src/interface.c:12547 msgid "iok" msgstr "iok" #: ../src/interface.c:12548 msgid "GPLv2 or later\n" msgstr "GPLv2 ಅಥವ ನಂತರದ\n" #: ../src/support.c:90 ../src/support.c:114 #, c-format msgid "Couldn't find pixmap file: %s" msgstr "ಪಿಕà³à²¸à³â€Œà²®à³à²¯à²¾à²ªà³ ಕಡತವೠಕಂಡà³à²¬à²‚ದಿಲà³à²²: %s" iok-2.1.3/po/POTFILES.in0000644000076400007640000000020111776460111011420 00000000000000# List of source files containing translatable strings. iok.desktop.in src/main.c src/interface.c src/callbacks.c src/support.c iok-2.1.3/po/LINGUAS0000644000076400007640000000025211776460111010676 00000000000000ar as bho bn_IN brx bs ca da de de_CH doi el es fa fr gu hi hne hu it ja kn ko mai ml mni mr nds nl or pa pl pt pt_BR ru sa sat sd sr@latin sr sv ta te th uk zh_CN zh_TW iok-2.1.3/po/sat.po0000644000076400007640000001425611776460111011011 00000000000000# SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. # FIRST AUTHOR , YEAR. # #, fuzzy msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2012-06-29 14:48+0530\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: Santali \n" "Language: \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=utf-8\n" "Content-Transfer-Encoding: 8bit\n" #: ../iok.desktop.in.h:1 msgid "Indic Onscreen Keyboard" msgstr "इंडिक ऑनसà¥à¤•à¥à¤°à¥€à¤¨ कà¥à¤‚जीपट" #: ../iok.desktop.in.h:2 msgid "Enter Indic characters with a virtual keyboard" msgstr "वरà¥à¤šà¥à¤…ल कà¥à¤‚जीपट से भारतीय वरà¥à¤£ दाखिल करें" #: ../src/interface.c:1987 msgid "" "This keymap file does not map uniquely to a keyboard and therefore cannot be " "displayed correctly" msgstr "" #: ../src/interface.c:3180 msgid "Select the language in which you want to write" msgstr "वह भाषा चà¥à¤¨à¥‡à¤‚ जिसमें आप लिखना चाहते हैं" #: ../src/interface.c:3182 ../src/interface.c:10955 msgid "Change to English Keyboard" msgstr "अंगà¥à¤°à¥‡à¤œà¥€ कà¥à¤‚जीपट में बदलें" #: ../src/interface.c:3255 msgid "ReassignKey" msgstr "कà¥à¤‚जी फिर नियत करें" #: ../src/interface.c:3265 msgid "Reassign Keyvalue of Key" msgstr "कà¥à¤‚जी का कà¥à¤‚जीमान फिर नियत करें" #: ../src/interface.c:3276 msgid "to another Key" msgstr "किसी दूसरे कà¥à¤‚जी में" #. Don't need to show menus #. Create the menu items #: ../src/interface.c:3291 ../src/interface.c:10447 msgid "Reassign" msgstr "फिर नियत करें" #: ../src/interface.c:3295 msgid "Cancel" msgstr "रदà¥à¤¦ करें" #: ../src/interface.c:3586 msgid "Open Keymap File" msgstr "कà¥à¤‚जी मैप फाइल खोलें" #: ../src/interface.c:3636 msgid "Write to Keymap File" msgstr "कà¥à¤‚जीमैप फाइल में लिखें" #: ../src/interface.c:3655 msgid "" "This application supports only for Inscript type keymaps therefore no custom " "xkb keymaps can be created." msgstr "" #: ../src/interface.c:3681 msgid "" "This application supports saving the inscript keymaps using filename as " "\"locale_code-custom_name-inscript2.mim\" only. If you are planning to " "change the default keymap name then use only this pattern." msgstr "" #. Don't need to show menus #. Create the menu items #: ../src/interface.c:10407 msgid "Open" msgstr "खोलें" #: ../src/interface.c:10408 msgid "Open a Keymap that is not listed in a combobox" msgstr "कोई कà¥à¤‚जी मानचितà¥à¤° खोलें जो कि कोंबो बॉकà¥à¤¸ में सूचीबदà¥à¤§ नहीं है" #: ../src/interface.c:10410 msgid "Save" msgstr "सहेजें" #: ../src/interface.c:10411 msgid "Save current state of loaded keymap to a new keymap" msgstr "किसी नये कà¥à¤‚जी मानचितà¥à¤° में लोड किठकà¥à¤‚जीमानचितà¥à¤° की मौजूदा सà¥à¤¥à¤¿à¤¤à¤¿ सहेजें" #: ../src/interface.c:10414 msgid "Quit" msgstr "बाहर" #: ../src/interface.c:10416 msgid "Close iok application" msgstr "iok अनà¥à¤ªà¥à¤°à¤¯à¥‹à¤— चà¥à¤¨à¥‡à¤‚" #: ../src/interface.c:10449 msgid "Reassign key value of some key to some other key" msgstr "कà¥à¤› दूसरे कà¥à¤‚जी में कà¥à¤› कà¥à¤‚जी के कà¥à¤‚जी मान फिर नियत करें" #: ../src/interface.c:10451 msgid "Swap" msgstr "सà¥à¤µà¥ˆà¤ª करें" #: ../src/interface.c:10453 msgid "Swap key values between any 2 keys in loaded keymap" msgstr "किसी 2 कà¥à¤‚जी के बीच लोडेड कà¥à¤‚जीमानचितà¥à¤° में कà¥à¤‚जी मान सà¥à¤µà¥ˆà¤ª करें" #. Don't need to show menus #. Create the menu items #: ../src/interface.c:10473 msgid "About" msgstr "परिचय" #: ../src/interface.c:10475 msgid "About iok application" msgstr "iok अनà¥à¤ªà¥à¤°à¤¯à¥‹à¤— का परिचय" #: ../src/interface.c:10491 msgid "Keymap" msgstr "कà¥à¤‚जी मानचितà¥à¤°" #: ../src/interface.c:10494 msgid "Keys" msgstr "कà¥à¤‚जी" #: ../src/interface.c:10497 msgid "Help" msgstr "मदद" #: ../src/interface.c:10682 msgid "Backspace" msgstr "Backspace" #: ../src/interface.c:10699 msgid "Tab" msgstr "Tab" #: ../src/interface.c:10792 msgid "Caps" msgstr "Caps" #: ../src/interface.c:10863 msgid "Enter" msgstr "Enter" #: ../src/interface.c:10879 ../src/interface.c:10944 msgid "Shift" msgstr "Shift" #: ../src/interface.c:10958 msgid "Space" msgstr "Space" #: ../src/interface.c:10965 msgid "Change to Extended layer Keyboard" msgstr "विसà¥à¤¤à¤¾à¤°à¤¿à¤¤ लेयर कà¥à¤‚जीपट में बदलें" #: ../src/interface.c:10971 msgid "" "Select the language in which you want to write. This list contains keymaps " "in order as inscript then user defined then xkb and then any keymaps opened " "that are not default listed" msgstr "" "वह भाषा चà¥à¤¨à¥‡à¤‚ जिसमें आप लिखना चाहते हैं. यह सूची inscript रूप में कà¥à¤‚जीमानचितà¥à¤° समाहित करती " "है बनिसà¥à¤ªà¤¤ xkb पर परिभाषित के अलावा और कà¥à¤‚जी मानचितà¥à¤° खà¥à¤²à¤¾ है जो कि तयशà¥à¤¦à¤¾ रूप से " "सूचीबदà¥à¤§ नहीं है" #. TRANSLATORS: Replace this string with your names, one name per line. #: ../src/interface.c:12541 msgid "translator-credits" msgstr "" #: ../src/interface.c:12547 msgid "iok" msgstr "" #: ../src/interface.c:12548 msgid "GPLv2 or later\n" msgstr "" #: ../src/support.c:90 ../src/support.c:114 #, c-format msgid "Couldn't find pixmap file: %s" msgstr "" iok-2.1.3/po/te.po0000644000076400007640000001663011776460111010630 00000000000000# kkrothap , 2012. #zanata msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2012-06-29 14:48+0530\n" "PO-Revision-Date: 2012-07-05 04:11-0400\n" "Last-Translator: kkrothap \n" "Language-Team: Telugu\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Language: te\n" "Plural-Forms: nplurals=2; plural=(n != 1)\n" "X-Generator: Zanata 1.6.1\n" #: ../iok.desktop.in.h:1 msgid "Indic Onscreen Keyboard" msgstr "ఇండికౠఆనà±â€Œà°¸à±à°•à±à°°à±€à°¨à± కీబోరà±à°¡à±" #: ../iok.desktop.in.h:2 msgid "Enter Indic characters with a virtual keyboard" msgstr "వరà±à°šà±à°¯à±à°µà°²à± కీబోరà±à°¡à±à°¤à±‹ యిండికౠఅకà±à°·à°°à°®à±à°²à°¨à± à°ªà±à°°à°µà±‡à°¶à°ªà±†à°Ÿà±à°Ÿà±à°®à±" #: ../src/interface.c:1987 msgid "" "This keymap file does not map uniquely to a keyboard and therefore cannot be" " displayed correctly" msgstr "" "à°ˆ కీమాపౠఫైలౠయూనికà±â€Œà°—à°¾ కీబోరà±à°¡à±à°¨à°•ౠమాపౠకాలేదౠకనà±à°• సరిగా à°ªà±à°°à°¦à°°à±à°¶à°¿à°‚చబడలేదà±" #: ../src/interface.c:3180 msgid "Select the language in which you want to write" msgstr "మీరౠఠభాషనందౠవà±à°°à°¾à°¯à°¾à°²à°¨à°¿ à°…à°¨à±à°•ొనà±à°šà±à°¨à±à°¨à°¾à°°à±‹ à°† భాషనౠయెంపికచేయà±à°®à±" #: ../src/interface.c:3182 ../src/interface.c:10955 msgid "Change to English Keyboard" msgstr "ఇంగà±à°²à±€à°·à± కీబోరà±à°¡à±à°¨à°•ౠమారà±à°®à±" #: ../src/interface.c:3255 msgid "ReassignKey" msgstr "మరలాపెటà±à°Ÿà°¿à°¨à°•à±€" #: ../src/interface.c:3265 msgid "Reassign Keyvalue of Key" msgstr "à°•à±€ యొకà±à°• కీవిలà±à°µà°¨à± మరలాపెటà±à°Ÿà±à°®à±" #: ../src/interface.c:3276 msgid "to another Key" msgstr "వేరొక à°•à±€ నకà±" #. Don't need to show menus #. Create the menu items #: ../src/interface.c:3291 ../src/interface.c:10447 msgid "Reassign" msgstr "మరలాపెటà±à°Ÿà±à°®à±" #: ../src/interface.c:3295 msgid "Cancel" msgstr "à°°à°¦à±à°¦à±à°šà±‡à°¯à°¿" #: ../src/interface.c:3586 msgid "Open Keymap File" msgstr "కీమాపౠదసà±à°¤à±à°°à°®à±à°¨à± తెరà±à°µà±à°®à±" #: ../src/interface.c:3636 msgid "Write to Keymap File" msgstr "కీమాపౠదసà±à°¤à±à°°à°®à±à°¨à°•à± à°µà±à°°à°¾à°¯à±à°®à±" #: ../src/interface.c:3655 msgid "" "This application supports only for Inscript type keymaps therefore no custom" " xkb keymaps can be created." msgstr "" "à°ˆ à°…à°¨à±à°µà°°à±à°¤à°¨à°‚ ఇనà±â€Œà°¸à±à°•à±à°°à°¿à°ªà±à°Ÿà± రకపౠకీమాపà±à°¸à± కొరకౠమాతà±à°°à°®à±‡ తోడà±à°ªà°¾à°Ÿà±à°¨à°¿à°šà±à°šà±à°¨à± à°•à°¨à±à°•" " మలచà±à°•ొనిన xkb కీమాపà±à°¸à± సృషà±à°Ÿà°¿à°‚చబడలేదà±." #: ../src/interface.c:3681 msgid "" "This application supports saving the inscript keymaps using filename as " "\"locale_code-custom_name-inscript2.mim\" only. If you are planning to " "change the default keymap name then use only this pattern." msgstr "" "à°ˆ à°…à°¨à±à°µà°°à±à°¤à°¨à°®à± à°…à°¨à±à°¨à°¦à°¿ యినà±â€Œà°¸à±à°•à±à°°à°¿à°ªà±à°Ÿà± కీమాపà±à°¸à±à°¨à± \"locale_code-custom_name-" "inscript2.mim\" పేరà±à°¤à±‹ మాతà±à°°à°®à±‡ దాయà±à°Ÿà°•ౠతోడà±à°ªà°¾à°Ÿà±à°¨à°¿à°¸à±à°¤à±à°‚ది. మీరౠఅపà±à°°à°®à±‡ కీమాపà±" " పేరà±à°¨à± మారà±à°šà°µà°²à±†à°¨à°¨à°¿ à°…à°¨à±à°•à±à°‚టే యీ తీరà±à°¨à±‡ à°µà±à°ªà°¯à±‹à°—à°¿à°‚à°šà°‚à°¡à°¿." #. Don't need to show menus #. Create the menu items #: ../src/interface.c:10407 msgid "Open" msgstr "తెరà±à°µà±à°®à±" #: ../src/interface.c:10408 msgid "Open a Keymap that is not listed in a combobox" msgstr "కాంబోపెటà±à°Ÿà±† నందౠజాబితాచేయని కీమాపà±â€Œà°¨à± తెరà±à°µà±à°®à±" #: ../src/interface.c:10410 msgid "Save" msgstr "దాయి" #: ../src/interface.c:10411 msgid "Save current state of loaded keymap to a new keymap" msgstr "లోడైన కీమాపౠయొకà±à°• à°ªà±à°°à°¸à±à°¤à±à°¤ à°¸à±à°¥à°¿à°¤à°¿à°¨à°¿ కొతà±à°¤ కీమాపà±â€Œà°•ౠదాయà±à°®à±" #: ../src/interface.c:10414 msgid "Quit" msgstr "నిషà±à°•à±à°°à°®à°¿à°‚à°šà±à°®à±" #: ../src/interface.c:10416 msgid "Close iok application" msgstr "iok à°…à°¨à±à°µà°°à±à°¤à°¨à°®à±à°¨à± మూయà±à°®à±" #: ../src/interface.c:10449 msgid "Reassign key value of some key to some other key" msgstr "à°’à°• à°•à±€ యొకà±à°• à°•à±€ విలà±à°µà°¨à± మరియొక కీకౠమరలాపెటà±à°Ÿà±à°®à±" #: ../src/interface.c:10451 msgid "Swap" msgstr "à°…à°Ÿà±à°¦à°¿à°Ÿà± మారà±à°šà±" #: ../src/interface.c:10453 msgid "Swap key values between any 2 keys in loaded keymap" msgstr "లోడైన కీమాపౠనందౠà°à°µà±ˆà°¨à°¾ రెండౠకీల కీవిలà±à°µà°²à°¨à± à°…à°Ÿà±à°¦à°¿à°Ÿà± మారà±à°šà±à°®à±" #. Don't need to show menus #. Create the menu items #: ../src/interface.c:10473 msgid "About" msgstr "à°—à±à°°à°¿à°‚à°šà°¿" #: ../src/interface.c:10475 msgid "About iok application" msgstr "iok à°…à°¨à±à°µà°°à±à°¤à°¨à°®à± à°—à±à°°à°¿à°‚à°šà°¿" #: ../src/interface.c:10491 msgid "Keymap" msgstr "కీమాపà±" #: ../src/interface.c:10494 msgid "Keys" msgstr "కీలà±" #: ../src/interface.c:10497 msgid "Help" msgstr "సహాయమà±" #: ../src/interface.c:10682 msgid "Backspace" msgstr "Backspace" #: ../src/interface.c:10699 msgid "Tab" msgstr "Tab" #: ../src/interface.c:10792 msgid "Caps" msgstr "Caps" #: ../src/interface.c:10863 msgid "Enter" msgstr "Enter" #: ../src/interface.c:10879 ../src/interface.c:10944 msgid "Shift" msgstr "Shift" #: ../src/interface.c:10958 msgid "Space" msgstr "Space" #: ../src/interface.c:10965 msgid "Change to Extended layer Keyboard" msgstr "విసà±à°¤à°°à°¿à°¤ లేయరౠకీబోరà±à°¡à±à°¨à°•ౠమారà±" #: ../src/interface.c:10971 msgid "" "Select the language in which you want to write. This list contains keymaps " "in order as inscript then user defined then xkb and then any keymaps opened " "that are not default listed" msgstr "" "మీరౠవà±à°°à°¾à°¯à°¾à°²à°¨à°¿ à°…à°¨à±à°•ొనà±à°šà±à°¨à±à°¨ భాషనౠయెంపికచేయà±à°®à±. à°ˆ జాబితా à°•à±€ మాపà±â€Œà°²à°¨à± à°ˆ " "à°•à±à°°à°®à°‚లో కలిగివà±à°‚à°Ÿà±à°‚ది inscript తరà±à°µà°¾à°¤ వినియోగదారి మలచిన తరà±à°µà°¾à°¤ xkb తరà±à°µà°¾à°¤ " "à°…à°ªà±à°°à°®à±‡à°¯à°‚à°—à°¾ జాబితాకాక తెరà±à°µà°¬à°¡à°¿à°¨ కీమాపà±â€Œà°²à±" #. TRANSLATORS: Replace this string with your names, one name per line. #: ../src/interface.c:12541 msgid "translator-credits" msgstr "కృషà±à°£à°¬à°¾à°¬à± కె 2009." #: ../src/interface.c:12547 msgid "iok" msgstr "iok" #: ../src/interface.c:12548 msgid "GPLv2 or later\n" msgstr "GPLv2 లేదా తరà±à°µà°¾à°¤à°¿\n" #: ../src/support.c:90 ../src/support.c:114 #, c-format msgid "Couldn't find pixmap file: %s" msgstr "pixmap దసà±à°¤à±à°°à°®à±à°¨à± à°•à°¨à±à°—ొనలేక పోయింది: %s" iok-2.1.3/po/bho.po0000644000076400007640000001425711776460111010773 00000000000000# SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. # FIRST AUTHOR , YEAR. # #, fuzzy msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2012-06-29 14:48+0530\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: Bhojpuri \n" "Language: \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=utf-8\n" "Content-Transfer-Encoding: 8bit\n" #: ../iok.desktop.in.h:1 msgid "Indic Onscreen Keyboard" msgstr "इंडिक ऑनसà¥à¤•à¥à¤°à¥€à¤¨ कà¥à¤‚जीपट" #: ../iok.desktop.in.h:2 msgid "Enter Indic characters with a virtual keyboard" msgstr "वरà¥à¤šà¥à¤…ल कà¥à¤‚जीपट से भारतीय वरà¥à¤£ दाखिल करें" #: ../src/interface.c:1987 msgid "" "This keymap file does not map uniquely to a keyboard and therefore cannot be " "displayed correctly" msgstr "" #: ../src/interface.c:3180 msgid "Select the language in which you want to write" msgstr "वह भाषा चà¥à¤¨à¥‡à¤‚ जिसमें आप लिखना चाहते हैं" #: ../src/interface.c:3182 ../src/interface.c:10955 msgid "Change to English Keyboard" msgstr "अंगà¥à¤°à¥‡à¤œà¥€ कà¥à¤‚जीपट में बदलें" #: ../src/interface.c:3255 msgid "ReassignKey" msgstr "कà¥à¤‚जी फिर नियत करें" #: ../src/interface.c:3265 msgid "Reassign Keyvalue of Key" msgstr "कà¥à¤‚जी का कà¥à¤‚जीमान फिर नियत करें" #: ../src/interface.c:3276 msgid "to another Key" msgstr "किसी दूसरे कà¥à¤‚जी में" #. Don't need to show menus #. Create the menu items #: ../src/interface.c:3291 ../src/interface.c:10447 msgid "Reassign" msgstr "फिर नियत करें" #: ../src/interface.c:3295 msgid "Cancel" msgstr "रदà¥à¤¦ करें" #: ../src/interface.c:3586 msgid "Open Keymap File" msgstr "कà¥à¤‚जी मैप फाइल खोलें" #: ../src/interface.c:3636 msgid "Write to Keymap File" msgstr "कà¥à¤‚जीमैप फाइल में लिखें" #: ../src/interface.c:3655 msgid "" "This application supports only for Inscript type keymaps therefore no custom " "xkb keymaps can be created." msgstr "" #: ../src/interface.c:3681 msgid "" "This application supports saving the inscript keymaps using filename as " "\"locale_code-custom_name-inscript2.mim\" only. If you are planning to " "change the default keymap name then use only this pattern." msgstr "" #. Don't need to show menus #. Create the menu items #: ../src/interface.c:10407 msgid "Open" msgstr "खोलें" #: ../src/interface.c:10408 msgid "Open a Keymap that is not listed in a combobox" msgstr "कोई कà¥à¤‚जी मानचितà¥à¤° खोलें जो कि कोंबो बॉकà¥à¤¸ में सूचीबदà¥à¤§ नहीं है" #: ../src/interface.c:10410 msgid "Save" msgstr "सहेजें" #: ../src/interface.c:10411 msgid "Save current state of loaded keymap to a new keymap" msgstr "किसी नये कà¥à¤‚जी मानचितà¥à¤° में लोड किठकà¥à¤‚जीमानचितà¥à¤° की मौजूदा सà¥à¤¥à¤¿à¤¤à¤¿ सहेजें" #: ../src/interface.c:10414 msgid "Quit" msgstr "बाहर" #: ../src/interface.c:10416 msgid "Close iok application" msgstr "iok अनà¥à¤ªà¥à¤°à¤¯à¥‹à¤— चà¥à¤¨à¥‡à¤‚" #: ../src/interface.c:10449 msgid "Reassign key value of some key to some other key" msgstr "कà¥à¤› दूसरे कà¥à¤‚जी में कà¥à¤› कà¥à¤‚जी के कà¥à¤‚जी मान फिर नियत करें" #: ../src/interface.c:10451 msgid "Swap" msgstr "सà¥à¤µà¥ˆà¤ª करें" #: ../src/interface.c:10453 msgid "Swap key values between any 2 keys in loaded keymap" msgstr "किसी 2 कà¥à¤‚जी के बीच लोडेड कà¥à¤‚जीमानचितà¥à¤° में कà¥à¤‚जी मान सà¥à¤µà¥ˆà¤ª करें" #. Don't need to show menus #. Create the menu items #: ../src/interface.c:10473 msgid "About" msgstr "परिचय" #: ../src/interface.c:10475 msgid "About iok application" msgstr "iok अनà¥à¤ªà¥à¤°à¤¯à¥‹à¤— का परिचय" #: ../src/interface.c:10491 msgid "Keymap" msgstr "कà¥à¤‚जी मानचितà¥à¤°" #: ../src/interface.c:10494 msgid "Keys" msgstr "कà¥à¤‚जी" #: ../src/interface.c:10497 msgid "Help" msgstr "मदद" #: ../src/interface.c:10682 msgid "Backspace" msgstr "Backspace" #: ../src/interface.c:10699 msgid "Tab" msgstr "Tab" #: ../src/interface.c:10792 msgid "Caps" msgstr "Caps" #: ../src/interface.c:10863 msgid "Enter" msgstr "Enter" #: ../src/interface.c:10879 ../src/interface.c:10944 msgid "Shift" msgstr "Shift" #: ../src/interface.c:10958 msgid "Space" msgstr "Space" #: ../src/interface.c:10965 msgid "Change to Extended layer Keyboard" msgstr "विसà¥à¤¤à¤¾à¤°à¤¿à¤¤ लेयर कà¥à¤‚जीपट में बदलें" #: ../src/interface.c:10971 msgid "" "Select the language in which you want to write. This list contains keymaps " "in order as inscript then user defined then xkb and then any keymaps opened " "that are not default listed" msgstr "" "वह भाषा चà¥à¤¨à¥‡à¤‚ जिसमें आप लिखना चाहते हैं. यह सूची inscript रूप में कà¥à¤‚जीमानचितà¥à¤° समाहित करती " "है बनिसà¥à¤ªà¤¤ xkb पर परिभाषित के अलावा और कà¥à¤‚जी मानचितà¥à¤° खà¥à¤²à¤¾ है जो कि तयशà¥à¤¦à¤¾ रूप से " "सूचीबदà¥à¤§ नहीं है" #. TRANSLATORS: Replace this string with your names, one name per line. #: ../src/interface.c:12541 msgid "translator-credits" msgstr "" #: ../src/interface.c:12547 msgid "iok" msgstr "" #: ../src/interface.c:12548 msgid "GPLv2 or later\n" msgstr "" #: ../src/support.c:90 ../src/support.c:114 #, c-format msgid "Couldn't find pixmap file: %s" msgstr "" iok-2.1.3/po/ko.po0000644000076400007640000001231411776460111010624 00000000000000# translation of iok.trunk.ko.po to Korean # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. # # Hyunsok Oh , 2010. msgid "" msgstr "" "Project-Id-Version: iok.trunk.ko\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2012-06-29 14:48+0530\n" "PO-Revision-Date: 2010-03-31 15:28+1000\n" "Last-Translator: Hyunsok Oh \n" "Language-Team: Korean \n" "Language: ko\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-Generator: KBabel 1.11.4\n" #: ../iok.desktop.in.h:1 msgid "Indic Onscreen Keyboard" msgstr "ì¸ë„ì–´ 온스í¬ë¦° 키보드 " #: ../iok.desktop.in.h:2 msgid "Enter Indic characters with a virtual keyboard" msgstr "ê°€ìƒ í‚¤ë³´ë“œë¡œ ì¸ë„ 문ìžë¥¼ 입력하십시오" #: ../src/interface.c:1987 msgid "" "This keymap file does not map uniquely to a keyboard and therefore cannot be " "displayed correctly" msgstr "" #: ../src/interface.c:3180 msgid "Select the language in which you want to write" msgstr "작성할 언어를 ì„ íƒí•˜ì‹­ì‹œì˜¤" #: ../src/interface.c:3182 ../src/interface.c:10955 msgid "Change to English Keyboard" msgstr "ì˜ì–´ 키보드로 변경하십시오" #: ../src/interface.c:3255 msgid "ReassignKey" msgstr "키재할당" #: ../src/interface.c:3265 msgid "Reassign Keyvalue of Key" msgstr "í‚¤ì˜ í‚¤ê°’ì„ ìž¬í• ë‹¹í•˜ì‹­ì‹œì˜¤" #: ../src/interface.c:3276 msgid "to another Key" msgstr "다른 키로" #. Don't need to show menus #. Create the menu items #: ../src/interface.c:3291 ../src/interface.c:10447 msgid "Reassign" msgstr "재할당" #: ../src/interface.c:3295 msgid "Cancel" msgstr "취소" #: ../src/interface.c:3586 msgid "Open Keymap File" msgstr "키맵 íŒŒì¼ ì—¬ì‹­ì‹œì˜¤" #: ../src/interface.c:3636 msgid "Write to Keymap File" msgstr "키맵 파ì¼ì„ 쓰십시오" #: ../src/interface.c:3655 msgid "" "This application supports only for Inscript type keymaps therefore no custom " "xkb keymaps can be created." msgstr "" #: ../src/interface.c:3681 msgid "" "This application supports saving the inscript keymaps using filename as " "\"locale_code-custom_name-inscript2.mim\" only. If you are planning to " "change the default keymap name then use only this pattern." msgstr "" #. Don't need to show menus #. Create the menu items #: ../src/interface.c:10407 msgid "Open" msgstr "열기" #: ../src/interface.c:10408 msgid "Open a Keymap that is not listed in a combobox" msgstr "ì½¤ë³´ë°•ìŠ¤ì— í‘œì‹œë˜ì§€ ì•Šì€ í‚¤ë§µì„ ì—½ë‹ˆë‹¤" #: ../src/interface.c:10410 msgid "Save" msgstr "저장" #: ../src/interface.c:10411 msgid "Save current state of loaded keymap to a new keymap" msgstr "ì½ì–´ë“¤ì¸ í‚¤ë§µì˜ í˜„ìž¬ ìƒíƒœë¥¼ 새로운 í‚¤ë§µì— ì €ìž¥í•©ë‹ˆë‹¤" #: ../src/interface.c:10414 msgid "Quit" msgstr "종료" #: ../src/interface.c:10416 msgid "Close iok application" msgstr "iok 어플리케ì´ì…˜ì„ 종료합니다" #: ../src/interface.c:10449 msgid "Reassign key value of some key to some other key" msgstr "몇몇 í‚¤ì˜ í‚¤ê°’ì„ ë‹¤ë¥¸ 키로 재할당합니다" #: ../src/interface.c:10451 msgid "Swap" msgstr "바꾸기" #: ../src/interface.c:10453 msgid "Swap key values between any 2 keys in loaded keymap" msgstr "ì½ì–´ë“¤ì¸ í‚¤ë§µì˜ ë‘ í‚¤ì˜ í‚¤ ê°’ì„ ì„œë¡œ 바꿉니다" #. Don't need to show menus #. Create the menu items #: ../src/interface.c:10473 msgid "About" msgstr "설명" #: ../src/interface.c:10475 msgid "About iok application" msgstr "iok 어플리케ì´ì…˜ì— 대한 설명" #: ../src/interface.c:10491 msgid "Keymap" msgstr "키맵" #: ../src/interface.c:10494 msgid "Keys" msgstr "키" #: ../src/interface.c:10497 msgid "Help" msgstr "ë„움ë§" #: ../src/interface.c:10682 msgid "Backspace" msgstr "백스페ì´ìФ" #: ../src/interface.c:10699 msgid "Tab" msgstr "탭" #: ../src/interface.c:10792 msgid "Caps" msgstr "Caps" #: ../src/interface.c:10863 msgid "Enter" msgstr "엔터" #: ../src/interface.c:10879 ../src/interface.c:10944 msgid "Shift" msgstr "시프트" #: ../src/interface.c:10958 msgid "Space" msgstr "스페ì´ìФ" #: ../src/interface.c:10965 #, fuzzy msgid "Change to Extended layer Keyboard" msgstr "ì˜ì–´ 키보드로 변경하십시오" #: ../src/interface.c:10971 msgid "" "Select the language in which you want to write. This list contains keymaps " "in order as inscript then user defined then xkb and then any keymaps opened " "that are not default listed" msgstr "" "작성할 언어를 ì„ íƒí•˜ì‹­ì‹œì˜¤. ì´ ëª©ë¡ì€ ë‚´ë¶€ 키맵, ì‚¬ìš©ìž ì •ì˜ í‚¤ë§µ, xkbì— ì˜" "í•´ ì •ì˜ëœ 키맵, 그리고 ë””í´íЏ 목ë¡ì— í¬í•¨ë˜ì§€ ì•Šì€ ì—´ë ¤ìžˆëŠ” 모든 í‚¤ë§µì˜ ìˆœì„œ" "로 ì´ë£¨ì–´ì ¸ 있습니다." #. TRANSLATORS: Replace this string with your names, one name per line. #: ../src/interface.c:12541 msgid "translator-credits" msgstr "오현ì„" #: ../src/interface.c:12547 msgid "iok" msgstr "iok" #: ../src/interface.c:12548 msgid "GPLv2 or later\n" msgstr "GPLv2 ë˜ëŠ” ê·¸ ì´í›„ì˜ ë¼ì´ì„¼ìФ\n" #: ../src/support.c:90 ../src/support.c:114 #, c-format msgid "Couldn't find pixmap file: %s" msgstr "pixmap 파ì¼ì„ ì°¾ì„ ìˆ˜ 없습니다: %s" #~ msgid "to English" #~ msgstr "ì˜ì–´" #~ msgid "English" #~ msgstr "ì˜ì–´" iok-2.1.3/po/zh_CN.po0000644000076400007640000001204211776460111011212 00000000000000# translation of iok.trunk.po to Simplified Chinese # CHAI Zhenhua, 2009. # Leah Liu , 2009. # Chinese(Simplified) translation of iok # Copyright (C) 2008 iok # This file is distributed under the same license as the iok package. msgid "" msgstr "" "Project-Id-Version: iok.trunk\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2012-06-29 14:48+0530\n" "PO-Revision-Date: 2009-12-08 09:07+1000\n" "Last-Translator: Leah Liu \n" "Language-Team: Simplified Chinese \n" "Language: \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-Poedit-Language: Chinese\n" "X-Poedit-Country: CHINA\n" "X-Poedit-SourceCharset: utf-8\n" "X-Generator: KBabel 1.11.4\n" #: ../iok.desktop.in.h:1 msgid "Indic Onscreen Keyboard" msgstr "å°åº¦è¯­å±å¹•键盘" #: ../iok.desktop.in.h:2 msgid "Enter Indic characters with a virtual keyboard" msgstr "在虚拟键盘中输入å°åº¦è¯­å­—符" #: ../src/interface.c:1987 msgid "" "This keymap file does not map uniquely to a keyboard and therefore cannot be " "displayed correctly" msgstr "" #: ../src/interface.c:3180 msgid "Select the language in which you want to write" msgstr "请选择您书写使用的语言" #: ../src/interface.c:3182 ../src/interface.c:10955 msgid "Change to English Keyboard" msgstr "更改至英文键盘" #: ../src/interface.c:3255 msgid "ReassignKey" msgstr "é‡è®¾æŒ‰é”®" #: ../src/interface.c:3265 msgid "Reassign Keyvalue of Key" msgstr "将键" #: ../src/interface.c:3276 msgid "to another Key" msgstr "ç½®æ¢åˆ°" #. Don't need to show menus #. Create the menu items #: ../src/interface.c:3291 ../src/interface.c:10447 msgid "Reassign" msgstr "é‡è®¾" #: ../src/interface.c:3295 msgid "Cancel" msgstr "å–æ¶ˆ" #: ../src/interface.c:3586 msgid "Open Keymap File" msgstr "打开 Keymap 文件" #: ../src/interface.c:3636 msgid "Write to Keymap File" msgstr "写入 Keymap 文件" #: ../src/interface.c:3655 msgid "" "This application supports only for Inscript type keymaps therefore no custom " "xkb keymaps can be created." msgstr "" #: ../src/interface.c:3681 msgid "" "This application supports saving the inscript keymaps using filename as " "\"locale_code-custom_name-inscript2.mim\" only. If you are planning to " "change the default keymap name then use only this pattern." msgstr "" #. Don't need to show menus #. Create the menu items #: ../src/interface.c:10407 msgid "Open" msgstr "打开" #: ../src/interface.c:10408 msgid "Open a Keymap that is not listed in a combobox" msgstr "打开没有列在 combobox 中的 Keymap" #: ../src/interface.c:10410 msgid "Save" msgstr "ä¿å­˜" #: ../src/interface.c:10411 msgid "Save current state of loaded keymap to a new keymap" msgstr "将目å‰è½½å…¥çš„ keymap 状æ€ä¿å­˜åˆ°ä¸€ä¸ªæ–°çš„ keymap" #: ../src/interface.c:10414 msgid "Quit" msgstr "退出" #: ../src/interface.c:10416 msgid "Close iok application" msgstr "关闭 iok 程åº" #: ../src/interface.c:10449 msgid "Reassign key value of some key to some other key" msgstr "å°†ä¸€äº›é”®çš„é”®å€¼é‡æ–°åˆ†é…给其它键" #: ../src/interface.c:10451 msgid "Swap" msgstr "交æ¢" #: ../src/interface.c:10453 msgid "Swap key values between any 2 keys in loaded keymap" msgstr "在载入的 keymap 中交æ¢ä»»æ„两个键的键值" #. Don't need to show menus #. Create the menu items #: ../src/interface.c:10473 msgid "About" msgstr "关于" #: ../src/interface.c:10475 msgid "About iok application" msgstr "关于 iok 程åº" #: ../src/interface.c:10491 msgid "Keymap" msgstr "Keymap" #: ../src/interface.c:10494 msgid "Keys" msgstr "é”®" #: ../src/interface.c:10497 msgid "Help" msgstr "帮助" #: ../src/interface.c:10682 msgid "Backspace" msgstr "Backspace" #: ../src/interface.c:10699 msgid "Tab" msgstr "Tab" #: ../src/interface.c:10792 msgid "Caps" msgstr "Caps" #: ../src/interface.c:10863 msgid "Enter" msgstr "Enter" #: ../src/interface.c:10879 ../src/interface.c:10944 msgid "Shift" msgstr "Shift" #: ../src/interface.c:10958 msgid "Space" msgstr "空格" #: ../src/interface.c:10965 #, fuzzy msgid "Change to Extended layer Keyboard" msgstr "更改至英文键盘" #: ../src/interface.c:10971 msgid "" "Select the language in which you want to write. This list contains keymaps " "in order as inscript then user defined then xkb and then any keymaps opened " "that are not default listed" msgstr "" "请选择书写语言。这个列表包å«çš„ keymap é¡ºåºæ˜¯ inscriptï¼Œç„¶åŽæ˜¯ç”¨æˆ·å®šä¹‰çš„,然åŽ" "是 xkbï¼Œç„¶åŽæ˜¯éžé»˜è®¤åˆ—出但打开的所有 keymap" #. TRANSLATORS: Replace this string with your names, one name per line. #: ../src/interface.c:12541 msgid "translator-credits" msgstr "" "译者:\n" " 柴振åŽ" #: ../src/interface.c:12547 msgid "iok" msgstr "iok" #: ../src/interface.c:12548 msgid "GPLv2 or later\n" msgstr "GPLv2 或更新\n" #: ../src/support.c:90 ../src/support.c:114 #, c-format msgid "Couldn't find pixmap file: %s" msgstr "æ— æ³•æ‰¾åˆ°å›¾åƒæ˜ å°„文件: %s" #~ msgid "to English" #~ msgstr "英语" #~ msgid "English" #~ msgstr "英语" iok-2.1.3/po/sa.po0000644000076400007640000000774411776460111010631 00000000000000# SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. # FIRST AUTHOR , YEAR. # #, fuzzy msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2012-06-29 14:48+0530\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: Sanskrit \n" "Language: \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=utf-8\n" "Content-Transfer-Encoding: 8bit\n" #: ../iok.desktop.in.h:1 msgid "Indic Onscreen Keyboard" msgstr "" #: ../iok.desktop.in.h:2 msgid "Enter Indic characters with a virtual keyboard" msgstr "" #: ../src/interface.c:1987 msgid "" "This keymap file does not map uniquely to a keyboard and therefore cannot be " "displayed correctly" msgstr "" #: ../src/interface.c:3180 msgid "Select the language in which you want to write" msgstr "" #: ../src/interface.c:3182 ../src/interface.c:10955 msgid "Change to English Keyboard" msgstr "" #: ../src/interface.c:3255 msgid "ReassignKey" msgstr "" #: ../src/interface.c:3265 msgid "Reassign Keyvalue of Key" msgstr "" #: ../src/interface.c:3276 msgid "to another Key" msgstr "" #. Don't need to show menus #. Create the menu items #: ../src/interface.c:3291 ../src/interface.c:10447 msgid "Reassign" msgstr "" #: ../src/interface.c:3295 msgid "Cancel" msgstr "" #: ../src/interface.c:3586 msgid "Open Keymap File" msgstr "" #: ../src/interface.c:3636 msgid "Write to Keymap File" msgstr "" #: ../src/interface.c:3655 msgid "" "This application supports only for Inscript type keymaps therefore no custom " "xkb keymaps can be created." msgstr "" #: ../src/interface.c:3681 msgid "" "This application supports saving the inscript keymaps using filename as " "\"locale_code-custom_name-inscript2.mim\" only. If you are planning to " "change the default keymap name then use only this pattern." msgstr "" #. Don't need to show menus #. Create the menu items #: ../src/interface.c:10407 msgid "Open" msgstr "" #: ../src/interface.c:10408 msgid "Open a Keymap that is not listed in a combobox" msgstr "" #: ../src/interface.c:10410 msgid "Save" msgstr "" #: ../src/interface.c:10411 msgid "Save current state of loaded keymap to a new keymap" msgstr "" #: ../src/interface.c:10414 msgid "Quit" msgstr "" #: ../src/interface.c:10416 msgid "Close iok application" msgstr "" #: ../src/interface.c:10449 msgid "Reassign key value of some key to some other key" msgstr "" #: ../src/interface.c:10451 msgid "Swap" msgstr "" #: ../src/interface.c:10453 msgid "Swap key values between any 2 keys in loaded keymap" msgstr "" #. Don't need to show menus #. Create the menu items #: ../src/interface.c:10473 msgid "About" msgstr "" #: ../src/interface.c:10475 msgid "About iok application" msgstr "" #: ../src/interface.c:10491 msgid "Keymap" msgstr "" #: ../src/interface.c:10494 msgid "Keys" msgstr "" #: ../src/interface.c:10497 msgid "Help" msgstr "" #: ../src/interface.c:10682 msgid "Backspace" msgstr "" #: ../src/interface.c:10699 msgid "Tab" msgstr "" #: ../src/interface.c:10792 msgid "Caps" msgstr "" #: ../src/interface.c:10863 msgid "Enter" msgstr "" #: ../src/interface.c:10879 ../src/interface.c:10944 msgid "Shift" msgstr "" #: ../src/interface.c:10958 msgid "Space" msgstr "" #: ../src/interface.c:10965 msgid "Change to Extended layer Keyboard" msgstr "" #: ../src/interface.c:10971 msgid "" "Select the language in which you want to write. This list contains keymaps " "in order as inscript then user defined then xkb and then any keymaps opened " "that are not default listed" msgstr "" #. TRANSLATORS: Replace this string with your names, one name per line. #: ../src/interface.c:12541 msgid "translator-credits" msgstr "" #: ../src/interface.c:12547 msgid "iok" msgstr "" #: ../src/interface.c:12548 msgid "GPLv2 or later\n" msgstr "" #: ../src/support.c:90 ../src/support.c:114 #, c-format msgid "Couldn't find pixmap file: %s" msgstr "" iok-2.1.3/po/it.po0000644000076400007640000001247511776460111010637 00000000000000# translation of iok.trunk.po to # Italian translation of iok. # Copyright (C) 2009 Red Hat, Inc. # This file is distributed under the same license as the iok package. # # # Pierro Silvio , 2009. # mario_santagiuliana , 2010. msgid "" msgstr "" "Project-Id-Version: iok.trunk\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2012-06-29 14:48+0530\n" "PO-Revision-Date: 2010-03-24 01:28+0100\n" "Last-Translator: mario_santagiuliana \n" "Language-Team: Italian \n" "Language: \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: Lokalize 1.0\n" #: ../iok.desktop.in.h:1 msgid "Indic Onscreen Keyboard" msgstr "Tastiera indiana su schermo" #: ../iok.desktop.in.h:2 msgid "Enter Indic characters with a virtual keyboard" msgstr "Inserisci caratteri indiani tramite tastiera virtuale" #: ../src/interface.c:1987 msgid "" "This keymap file does not map uniquely to a keyboard and therefore cannot be " "displayed correctly" msgstr "" #: ../src/interface.c:3180 msgid "Select the language in which you want to write" msgstr "Selezionare la lingua con cui si desidera scrivere" #: ../src/interface.c:3182 ../src/interface.c:10955 msgid "Change to English Keyboard" msgstr "Passa alla tastiera inglese" #: ../src/interface.c:3255 msgid "ReassignKey" msgstr "RiassegnaTasti" #: ../src/interface.c:3265 msgid "Reassign Keyvalue of Key" msgstr "Riassegna il valore del tasto" #: ../src/interface.c:3276 msgid "to another Key" msgstr "ad un altro tasto" #. Don't need to show menus #. Create the menu items #: ../src/interface.c:3291 ../src/interface.c:10447 msgid "Reassign" msgstr "Riassegna" #: ../src/interface.c:3295 msgid "Cancel" msgstr "Annulla" #: ../src/interface.c:3586 msgid "Open Keymap File" msgstr "Apri file di mappatura" #: ../src/interface.c:3636 msgid "Write to Keymap File" msgstr "Scrivi sul file di mappatura" #: ../src/interface.c:3655 msgid "" "This application supports only for Inscript type keymaps therefore no custom " "xkb keymaps can be created." msgstr "" #: ../src/interface.c:3681 msgid "" "This application supports saving the inscript keymaps using filename as " "\"locale_code-custom_name-inscript2.mim\" only. If you are planning to " "change the default keymap name then use only this pattern." msgstr "" #. Don't need to show menus #. Create the menu items #: ../src/interface.c:10407 msgid "Open" msgstr "Apri" #: ../src/interface.c:10408 msgid "Open a Keymap that is not listed in a combobox" msgstr "Apri una mappatura che non è elencata in combobox" #: ../src/interface.c:10410 msgid "Save" msgstr "Salva" #: ../src/interface.c:10411 msgid "Save current state of loaded keymap to a new keymap" msgstr "" "Salva lo stato corrente della mappatura caricata su una nuova mappatura" #: ../src/interface.c:10414 msgid "Quit" msgstr "Esci" #: ../src/interface.c:10416 msgid "Close iok application" msgstr "Chiudi l'applicazione iok" #: ../src/interface.c:10449 msgid "Reassign key value of some key to some other key" msgstr "Riassegna il valore di alcuni tasti a altri tasti" #: ../src/interface.c:10451 msgid "Swap" msgstr "Scambia" #: ../src/interface.c:10453 msgid "Swap key values between any 2 keys in loaded keymap" msgstr "Scambia i valori fra due tasti nella mappatura caricata" #. Don't need to show menus #. Create the menu items #: ../src/interface.c:10473 msgid "About" msgstr "Informazioni" #: ../src/interface.c:10475 msgid "About iok application" msgstr "Informazioni su iok" #: ../src/interface.c:10491 msgid "Keymap" msgstr "Mappatura tasti" #: ../src/interface.c:10494 msgid "Keys" msgstr "Tasti" #: ../src/interface.c:10497 msgid "Help" msgstr "Aiuto" #: ../src/interface.c:10682 msgid "Backspace" msgstr "Backspace" #: ../src/interface.c:10699 msgid "Tab" msgstr "Tab" #: ../src/interface.c:10792 msgid "Caps" msgstr "Caps" #: ../src/interface.c:10863 msgid "Enter" msgstr "Invio" #: ../src/interface.c:10879 ../src/interface.c:10944 msgid "Shift" msgstr "Maiusc" #: ../src/interface.c:10958 msgid "Space" msgstr "Spazio" #: ../src/interface.c:10965 #, fuzzy msgid "Change to Extended layer Keyboard" msgstr "Passa alla tastiera inglese" #: ../src/interface.c:10971 msgid "" "Select the language in which you want to write. This list contains keymaps " "in order as inscript then user defined then xkb and then any keymaps opened " "that are not default listed" msgstr "" "Selezionare la lingua con cui si desidera scrivere. Questa lista contiene " "mappature di tastiera in ordine inscript, poi definite dall'utente, poi xkb " "e poi qualsiasi mappatura aperta e che non è elencata in modo predefinito" #. TRANSLATORS: Replace this string with your names, one name per line. #: ../src/interface.c:12541 msgid "translator-credits" msgstr "" "Pierro Silvio , 2009.\n" "Andrea La Fauci , 2010.\n" "Francesco Tombolini , 2010." #: ../src/interface.c:12547 msgid "iok" msgstr "iok" #: ../src/interface.c:12548 msgid "GPLv2 or later\n" msgstr "GPLv2 o successiva\n" #: ../src/support.c:90 ../src/support.c:114 #, c-format msgid "Couldn't find pixmap file: %s" msgstr "Impossibile trovare il file pixmap: %s" #, fuzzy #~ msgid "English" #~ msgstr "Inglese" iok-2.1.3/po/th.po0000644000076400007640000001453211776460111010632 00000000000000# SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. # Manatsawin Hanmongkolchai , 2009. msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2012-06-29 14:48+0530\n" "PO-Revision-Date: 2009-10-13 09:34+0700\n" "Last-Translator: Manatsawin Hanmongkolchai \n" "Language-Team: Thai \n" "Language: th\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=1; plural=0;\n" "X-Generator: Virtaal 0.4.0\n" #: ../iok.desktop.in.h:1 msgid "Indic Onscreen Keyboard" msgstr "à¹à¸›à¹‰à¸™à¸žà¸´à¸¡à¸žà¹Œà¸šà¸™à¸ˆà¸­à¸ à¸²à¸ž Indic" #: ../iok.desktop.in.h:2 msgid "Enter Indic characters with a virtual keyboard" msgstr "ป้อนตัวอัà¸à¸©à¸£ Indic ด้วยà¹à¸›à¹‰à¸™à¸žà¸´à¸¡à¸žà¹Œà¹€à¸ªà¸¡à¸·à¸­à¸™" #: ../src/interface.c:1987 msgid "" "This keymap file does not map uniquely to a keyboard and therefore cannot be " "displayed correctly" msgstr "" #: ../src/interface.c:3180 msgid "Select the language in which you want to write" msgstr "เลือà¸à¸ à¸²à¸©à¸²à¸—ี่ต้องà¸à¸²à¸£à¸ˆà¸°à¸žà¸´à¸¡à¸žà¹Œ" #: ../src/interface.c:3182 ../src/interface.c:10955 msgid "Change to English Keyboard" msgstr "เปลี่ยนเป็นà¹à¸›à¹‰à¸™à¸ à¸²à¸©à¸²à¸­à¸±à¸‡à¸à¸¤à¸©" #: ../src/interface.c:3255 msgid "ReassignKey" msgstr "à¸à¸³à¸«à¸™à¸”ปุ่มใหม่" #: ../src/interface.c:3265 msgid "Reassign Keyvalue of Key" msgstr "à¸à¸³à¸«à¸™à¸”ค่าของปุ่มใหม่" #: ../src/interface.c:3276 msgid "to another Key" msgstr "ไปยังปุ่มอื่น" #. Don't need to show menus #. Create the menu items #: ../src/interface.c:3291 ../src/interface.c:10447 msgid "Reassign" msgstr "à¸à¸³à¸«à¸™à¸”ใหม่" #: ../src/interface.c:3295 msgid "Cancel" msgstr "ยà¸à¹€à¸¥à¸´à¸" #: ../src/interface.c:3586 msgid "Open Keymap File" msgstr "เปิดà¹à¸Ÿà¹‰à¸¡à¸à¸²à¸£à¸§à¸²à¸‡à¸›à¸¸à¹ˆà¸¡" #: ../src/interface.c:3636 msgid "Write to Keymap File" msgstr "บันทึà¸à¹„ปยังà¹à¸Ÿà¹‰à¸¡à¸à¸²à¸£à¸§à¸²à¸‡à¸›à¸¸à¹ˆà¸¡" #: ../src/interface.c:3655 msgid "" "This application supports only for Inscript type keymaps therefore no custom " "xkb keymaps can be created." msgstr "" #: ../src/interface.c:3681 msgid "" "This application supports saving the inscript keymaps using filename as " "\"locale_code-custom_name-inscript2.mim\" only. If you are planning to " "change the default keymap name then use only this pattern." msgstr "" #. Don't need to show menus #. Create the menu items #: ../src/interface.c:10407 msgid "Open" msgstr "เปิด" #: ../src/interface.c:10408 msgid "Open a Keymap that is not listed in a combobox" msgstr "เปิดà¸à¸²à¸£à¸§à¸²à¸‡à¸›à¸¸à¹ˆà¸¡à¸—ี่ไม่อยู่ในà¸à¸¥à¹ˆà¸­à¸‡à¸„อมโบ" #: ../src/interface.c:10410 msgid "Save" msgstr "บันทึà¸" #: ../src/interface.c:10411 msgid "Save current state of loaded keymap to a new keymap" msgstr "บันทึà¸à¸ªà¸–านะปัจจุบันของà¸à¸²à¸£à¸§à¸²à¸‡à¸›à¸¸à¹ˆà¸¡à¹€à¸›à¹‡à¸™à¸à¸²à¸£à¸§à¸²à¸‡à¸›à¸¸à¹ˆà¸¡à¸£à¸¹à¸›à¹à¸šà¸šà¹ƒà¸«à¸¡à¹ˆ" #: ../src/interface.c:10414 msgid "Quit" msgstr "ออà¸" #: ../src/interface.c:10416 msgid "Close iok application" msgstr "ปิดโปรà¹à¸à¸£à¸¡ iok" #: ../src/interface.c:10449 msgid "Reassign key value of some key to some other key" msgstr "à¸à¸³à¸«à¸™à¸”ค่าปุ่มบางปุ่มใหม่เป็นปุ่มอื่นๆ" #: ../src/interface.c:10451 msgid "Swap" msgstr "สลับ" #: ../src/interface.c:10453 msgid "Swap key values between any 2 keys in loaded keymap" msgstr "สลับค่าปุ่มระหว่าง 2 ปุ่มในà¸à¸²à¸£à¸§à¸²à¸‡à¸›à¸¸à¹ˆà¸¡à¸›à¸±à¸ˆà¸ˆà¸¸à¸šà¸±à¸™" #. Don't need to show menus #. Create the menu items #: ../src/interface.c:10473 msgid "About" msgstr "เà¸à¸µà¹ˆà¸¢à¸§à¸à¸±à¸š" #: ../src/interface.c:10475 msgid "About iok application" msgstr "เà¸à¸µà¹ˆà¸¢à¸§à¸à¸±à¸šà¹‚ปรà¹à¸à¸£à¸¡ iok" #: ../src/interface.c:10491 msgid "Keymap" msgstr "à¸à¸²à¸£à¸§à¸²à¸‡à¸›à¸¸à¹ˆà¸¡" #: ../src/interface.c:10494 msgid "Keys" msgstr "ปุ่ม" #: ../src/interface.c:10497 msgid "Help" msgstr "วิธีใช้" #: ../src/interface.c:10682 msgid "Backspace" msgstr "à¹à¸šà¹‡à¸à¸ªà¹€à¸›à¸‹" #: ../src/interface.c:10699 msgid "Tab" msgstr "Tab" #: ../src/interface.c:10792 msgid "Caps" msgstr "Caps" #: ../src/interface.c:10863 msgid "Enter" msgstr "Enter" #: ../src/interface.c:10879 ../src/interface.c:10944 msgid "Shift" msgstr "Shift" #: ../src/interface.c:10958 msgid "Space" msgstr "เว้นวรรค" #: ../src/interface.c:10965 #, fuzzy msgid "Change to Extended layer Keyboard" msgstr "เปลี่ยนเป็นà¹à¸›à¹‰à¸™à¸ à¸²à¸©à¸²à¸­à¸±à¸‡à¸à¸¤à¸©" #: ../src/interface.c:10971 msgid "" "Select the language in which you want to write. This list contains keymaps " "in order as inscript then user defined then xkb and then any keymaps opened " "that are not default listed" msgstr "" "เลือà¸à¸ à¸²à¸©à¸²à¸—ี่ต้องà¸à¸²à¸£à¸žà¸´à¸¡à¸žà¹Œ รายà¸à¸²à¸£à¸™à¸µà¹‰à¸›à¸£à¸°à¸à¸­à¸šà¸”้วยà¸à¸²à¸£à¸ˆà¸±à¸”วางปุ่มตามลำดับใน inscript " "ตามด้วยที่ผู้ใช้สร้างเอง à¹à¸¥à¹‰à¸§à¸•ามด้วย xkb à¹à¸¥à¸°à¸à¸²à¸£à¸§à¸²à¸‡à¸›à¸¸à¹ˆà¸¡à¹ƒà¸”ๆ ที่เปิดอยู่à¹à¸•่ไม่ได้อยู่ในรายà¸à¸²à¸£à¹‚ดยปริยาย" #. TRANSLATORS: Replace this string with your names, one name per line. #: ../src/interface.c:12541 msgid "translator-credits" msgstr "Manatsawin Hanmongkolchai " #: ../src/interface.c:12547 msgid "iok" msgstr "iok" #: ../src/interface.c:12548 msgid "GPLv2 or later\n" msgstr "GPLv2 หรือรุ่นต่อมา\n" #: ../src/support.c:90 ../src/support.c:114 #, c-format msgid "Couldn't find pixmap file: %s" msgstr "ไม่สามารถหาà¹à¸Ÿà¹‰à¸¡à¸ à¸²à¸ž pixmap: %s" #~ msgid "to English" #~ msgstr "ป็นภาษาอังà¸à¸¤à¸©" #~ msgid "English" #~ msgstr "ภาษาอังà¸à¸¤à¸©" iok-2.1.3/po/nl.po0000644000076400007640000001234011776460111010623 00000000000000# translation of iok.trunk.nl.po to Dutch # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. # R.E. van der Luit , 2009. # Geert Warrink , 2009, 2010. msgid "" msgstr "" "Project-Id-Version: iok.trunk.nl\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2012-06-29 14:48+0530\n" "PO-Revision-Date: 2010-06-24 18:05+0200\n" "Last-Translator: Geert Warrink \n" "Language-Team: Fedora\n" "Language: nl\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: \n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: Virtaal 0.5.2\n" #: ../iok.desktop.in.h:1 msgid "Indic Onscreen Keyboard" msgstr "Indiaas toetsenbord op het scherm" #: ../iok.desktop.in.h:2 msgid "Enter Indic characters with a virtual keyboard" msgstr "Vul Indiase karakters in met een virtueel toetsenbord" #: ../src/interface.c:1987 msgid "" "This keymap file does not map uniquely to a keyboard and therefore cannot be " "displayed correctly" msgstr "" #: ../src/interface.c:3180 msgid "Select the language in which you want to write" msgstr "Selecteer de taal waarin je wilt schrijven" #: ../src/interface.c:3182 ../src/interface.c:10955 msgid "Change to English Keyboard" msgstr "Wissel naar Engels toetsenbord" #: ../src/interface.c:3255 msgid "ReassignKey" msgstr "HernoemToets" #: ../src/interface.c:3265 msgid "Reassign Keyvalue of Key" msgstr "Wijs Waarde van Toets opnieuw toe" #: ../src/interface.c:3276 msgid "to another Key" msgstr "aan een andere Toets" #. Don't need to show menus #. Create the menu items #: ../src/interface.c:3291 ../src/interface.c:10447 msgid "Reassign" msgstr "Hernoem" #: ../src/interface.c:3295 msgid "Cancel" msgstr "Annuleren" #: ../src/interface.c:3586 msgid "Open Keymap File" msgstr "Open toetsenbord bestand" #: ../src/interface.c:3636 msgid "Write to Keymap File" msgstr "Schrijf naar toetsenbord bestand" #: ../src/interface.c:3655 msgid "" "This application supports only for Inscript type keymaps therefore no custom " "xkb keymaps can be created." msgstr "" #: ../src/interface.c:3681 msgid "" "This application supports saving the inscript keymaps using filename as " "\"locale_code-custom_name-inscript2.mim\" only. If you are planning to " "change the default keymap name then use only this pattern." msgstr "" #. Don't need to show menus #. Create the menu items #: ../src/interface.c:10407 msgid "Open" msgstr "Open" #: ../src/interface.c:10408 msgid "Open a Keymap that is not listed in a combobox" msgstr "Open een toetsenbord indeling die niet wordt genoemd in een combobox" #: ../src/interface.c:10410 msgid "Save" msgstr "Opslaan" #: ../src/interface.c:10411 msgid "Save current state of loaded keymap to a new keymap" msgstr "" "Sla de huidige toetsenbord indeling op als een nieuwe toetsenbord indeling" #: ../src/interface.c:10414 msgid "Quit" msgstr "Afsluiten" #: ../src/interface.c:10416 msgid "Close iok application" msgstr "Sluit de iok toepassing" #: ../src/interface.c:10449 msgid "Reassign key value of some key to some other key" msgstr "Wijs de waarde van een toets toe aan een andere toets" #: ../src/interface.c:10451 msgid "Swap" msgstr "Wissel" #: ../src/interface.c:10453 msgid "Swap key values between any 2 keys in loaded keymap" msgstr "Wissel de waarden tussen 2 toetsen in de geladen toetsenbord indeling" #. Don't need to show menus #. Create the menu items #: ../src/interface.c:10473 msgid "About" msgstr "Over" #: ../src/interface.c:10475 msgid "About iok application" msgstr "Over de iok toepassing" #: ../src/interface.c:10491 msgid "Keymap" msgstr "Toets indeling" #: ../src/interface.c:10494 msgid "Keys" msgstr "Toetsen" #: ../src/interface.c:10497 msgid "Help" msgstr "Hulp" #: ../src/interface.c:10682 msgid "Backspace" msgstr "Backspace" #: ../src/interface.c:10699 msgid "Tab" msgstr "Tab" #: ../src/interface.c:10792 msgid "Caps" msgstr "Caps" #: ../src/interface.c:10863 msgid "Enter" msgstr "Enter" #: ../src/interface.c:10879 ../src/interface.c:10944 msgid "Shift" msgstr "Shift" #: ../src/interface.c:10958 msgid "Space" msgstr "Spatie" #: ../src/interface.c:10965 #, fuzzy msgid "Change to Extended layer Keyboard" msgstr "Wissel naar Engels toetsenbord" #: ../src/interface.c:10971 msgid "" "Select the language in which you want to write. This list contains keymaps " "in order as inscript then user defined then xkb and then any keymaps opened " "that are not default listed" msgstr "" "Selecteer de taal waarin je wilt schrijven. Deze lijst bevat toetsenbord " "indelingen in de volgorde InScript, gebruiker-gedefinieerd, xkb en als " "laatste geopende toetsenbord indelingen die niet standaard worden vermeld." #. TRANSLATORS: Replace this string with your names, one name per line. #: ../src/interface.c:12541 msgid "translator-credits" msgstr "Richard van der Luit" #: ../src/interface.c:12547 msgid "iok" msgstr "iok" #: ../src/interface.c:12548 msgid "GPLv2 or later\n" msgstr "GPLv2 of later\n" #: ../src/support.c:90 ../src/support.c:114 #, c-format msgid "Couldn't find pixmap file: %s" msgstr "Kon pixmap bestand %s niet vinden" #~ msgid "to English" #~ msgstr "naar Engels" #, fuzzy #~ msgid "English" #~ msgstr "Engels" iok-2.1.3/README0000644000076400007640000000105511776460025010121 00000000000000 The iok application now supports Inscript2 keymap. Keymap parser is now re-written to support Inscript and Inscript2 standard. iok now uses Inscript2 as a default standard. To start iok in any supported Inscript2 keymap (say in Marathi) use following command iok -n mr As inscript2 keymap naming also uses scriptcode for some languages, command to open those keymaps is like this iok -n pa-guru where pa is isocode name for the language and guru is script code name in which keymap is written. See README.old and manpage of iok for more information. iok-2.1.3/iok.desktop.in0000664000076400007640000000036411776460265012035 00000000000000[Desktop Entry] Version=1.0 _Name=Indic Onscreen Keyboard _Comment=Enter Indic characters with a virtual keyboard Exec=iok Icon=iok StartupNotify=true Terminal=false Type=Application Categories=GNOME;GTK;Utility;Accessibility; NotShowIn=GNOME; iok-2.1.3/INSTALL0000644000076400007640000002245011776460025010274 00000000000000Installation Instructions ************************* Copyright (C) 1994, 1995, 1996, 1999, 2000, 2001, 2002, 2004, 2005, 2006, 2007 Free Software Foundation, Inc. This file is free documentation; the Free Software Foundation gives unlimited permission to copy, distribute and modify it. Basic Installation ================== Briefly, the shell commands `./configure; make; make install' should configure, build, and install this package. The following more-detailed instructions are generic; see the `README' file for instructions specific to this package. The `configure' shell script attempts to guess correct values for various system-dependent variables used during compilation. It uses those values to create a `Makefile' in each directory of the package. It may also create one or more `.h' files containing system-dependent definitions. Finally, it creates a shell script `config.status' that you can run in the future to recreate the current configuration, and a file `config.log' containing compiler output (useful mainly for debugging `configure'). It can also use an optional file (typically called `config.cache' and enabled with `--cache-file=config.cache' or simply `-C') that saves the results of its tests to speed up reconfiguring. Caching is disabled by default to prevent problems with accidental use of stale cache files. If you need to do unusual things to compile the package, please try to figure out how `configure' could check whether to do them, and mail diffs or instructions to the address given in the `README' so they can be considered for the next release. If you are using the cache, and at some point `config.cache' contains results you don't want to keep, you may remove or edit it. The file `configure.ac' (or `configure.in') is used to create `configure' by a program called `autoconf'. You need `configure.ac' if you want to change it or regenerate `configure' using a newer version of `autoconf'. The simplest way to compile this package is: 1. `cd' to the directory containing the package's source code and type `./configure' to configure the package for your system. Running `configure' might take a while. While running, it prints some messages telling which features it is checking for. 2. Type `make' to compile the package. 3. Optionally, type `make check' to run any self-tests that come with the package. 4. Type `make install' to install the programs and any data files and documentation. 5. You can remove the program binaries and object files from the source code directory by typing `make clean'. To also remove the files that `configure' created (so you can compile the package for a different kind of computer), type `make distclean'. There is also a `make maintainer-clean' target, but that is intended mainly for the package's developers. If you use it, you may have to get all sorts of other programs in order to regenerate files that came with the distribution. 6. Often, you can also type `make uninstall' to remove the installed files again. Compilers and Options ===================== Some systems require unusual options for compilation or linking that the `configure' script does not know about. Run `./configure --help' for details on some of the pertinent environment variables. You can give `configure' initial values for configuration parameters by setting variables in the command line or in the environment. Here is an example: ./configure CC=c99 CFLAGS=-g LIBS=-lposix *Note Defining Variables::, for more details. Compiling For Multiple Architectures ==================================== You can compile the package for more than one kind of computer at the same time, by placing the object files for each architecture in their own directory. To do this, you can use GNU `make'. `cd' to the directory where you want the object files and executables to go and run the `configure' script. `configure' automatically checks for the source code in the directory that `configure' is in and in `..'. With a non-GNU `make', it is safer to compile the package for one architecture at a time in the source code directory. After you have installed the package for one architecture, use `make distclean' before reconfiguring for another architecture. Installation Names ================== By default, `make install' installs the package's commands under `/usr/local/bin', include files under `/usr/local/include', etc. You can specify an installation prefix other than `/usr/local' by giving `configure' the option `--prefix=PREFIX'. You can specify separate installation prefixes for architecture-specific files and architecture-independent files. If you pass the option `--exec-prefix=PREFIX' to `configure', the package uses PREFIX as the prefix for installing programs and libraries. Documentation and other data files still use the regular prefix. In addition, if you use an unusual directory layout you can give options like `--bindir=DIR' to specify different values for particular kinds of files. Run `configure --help' for a list of the directories you can set and what kinds of files go in them. If the package supports it, you can cause programs to be installed with an extra prefix or suffix on their names by giving `configure' the option `--program-prefix=PREFIX' or `--program-suffix=SUFFIX'. Optional Features ================= Some packages pay attention to `--enable-FEATURE' options to `configure', where FEATURE indicates an optional part of the package. They may also pay attention to `--with-PACKAGE' options, where PACKAGE is something like `gnu-as' or `x' (for the X Window System). The `README' should mention any `--enable-' and `--with-' options that the package recognizes. For packages that use the X Window System, `configure' can usually find the X include and library files automatically, but if it doesn't, you can use the `configure' options `--x-includes=DIR' and `--x-libraries=DIR' to specify their locations. Specifying the System Type ========================== There may be some features `configure' cannot figure out automatically, but needs to determine by the type of machine the package will run on. Usually, assuming the package is built to be run on the _same_ architectures, `configure' can figure that out, but if it prints a message saying it cannot guess the machine type, give it the `--build=TYPE' option. TYPE can either be a short name for the system type, such as `sun4', or a canonical name which has the form: CPU-COMPANY-SYSTEM where SYSTEM can have one of these forms: OS KERNEL-OS See the file `config.sub' for the possible values of each field. If `config.sub' isn't included in this package, then this package doesn't need to know the machine type. If you are _building_ compiler tools for cross-compiling, you should use the option `--target=TYPE' to select the type of system they will produce code for. If you want to _use_ a cross compiler, that generates code for a platform different from the build platform, you should specify the "host" platform (i.e., that on which the generated programs will eventually be run) with `--host=TYPE'. Sharing Defaults ================ If you want to set default values for `configure' scripts to share, you can create a site shell script called `config.site' that gives default values for variables like `CC', `cache_file', and `prefix'. `configure' looks for `PREFIX/share/config.site' if it exists, then `PREFIX/etc/config.site' if it exists. Or, you can set the `CONFIG_SITE' environment variable to the location of the site script. A warning: not all `configure' scripts look for a site script. Defining Variables ================== Variables not defined in a site shell script can be set in the environment passed to `configure'. However, some packages may run configure again during the build, and the customized values of these variables may be lost. In order to avoid this problem, you should set them in the `configure' command line, using `VAR=value'. For example: ./configure CC=/usr/local2/bin/gcc causes the specified `gcc' to be used as the C compiler (unless it is overridden in the site shell script). Unfortunately, this technique does not work for `CONFIG_SHELL' due to an Autoconf bug. Until the bug is fixed you can use this workaround: CONFIG_SHELL=/bin/bash /bin/bash ./configure CONFIG_SHELL=/bin/bash `configure' Invocation ====================== `configure' recognizes the following options to control how it operates. `--help' `-h' Print a summary of the options to `configure', and exit. `--version' `-V' Print the version of Autoconf used to generate the `configure' script, and exit. `--cache-file=FILE' Enable the cache: use and save the results of the tests in FILE, traditionally `config.cache'. FILE defaults to `/dev/null' to disable caching. `--config-cache' `-C' Alias for `--cache-file=config.cache'. `--quiet' `--silent' `-q' Do not print messages saying which checks are being made. To suppress all normal output, redirect it to `/dev/null' (any error messages will still be shown). `--srcdir=DIR' Look for the package's source code in directory DIR. Usually `configure' can determine that directory automatically. `configure' also accepts some other, not widely useful, options. Run `configure --help' for more details. iok-2.1.3/configure0000755000076400007640000100544511776460255011165 00000000000000#! /bin/sh # Guess values for system-dependent variables and create Makefiles. # Generated by GNU Autoconf 2.68. # # # Copyright (C) 1992, 1993, 1994, 1995, 1996, 1998, 1999, 2000, 2001, # 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2010 Free Software # Foundation, Inc. # # # This configure script is free software; the Free Software Foundation # gives unlimited permission to copy, distribute and modify it. ## -------------------- ## ## M4sh Initialization. ## ## -------------------- ## # Be more Bourne compatible DUALCASE=1; export DUALCASE # for MKS sh if test -n "${ZSH_VERSION+set}" && (emulate sh) >/dev/null 2>&1; then : emulate sh NULLCMD=: # Pre-4.2 versions of Zsh do word splitting on ${1+"$@"}, which # is contrary to our usage. Disable this feature. alias -g '${1+"$@"}'='"$@"' setopt NO_GLOB_SUBST else case `(set -o) 2>/dev/null` in #( *posix*) : set -o posix ;; #( *) : ;; esac fi as_nl=' ' export as_nl # Printing a long string crashes Solaris 7 /usr/bin/printf. as_echo='\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\' as_echo=$as_echo$as_echo$as_echo$as_echo$as_echo as_echo=$as_echo$as_echo$as_echo$as_echo$as_echo$as_echo # Prefer a ksh shell builtin over an external printf program on Solaris, # but without wasting forks for bash or zsh. if test -z "$BASH_VERSION$ZSH_VERSION" \ && (test "X`print -r -- $as_echo`" = "X$as_echo") 2>/dev/null; then as_echo='print -r --' as_echo_n='print -rn --' elif (test "X`printf %s $as_echo`" = "X$as_echo") 2>/dev/null; then as_echo='printf %s\n' as_echo_n='printf %s' else if test "X`(/usr/ucb/echo -n -n $as_echo) 2>/dev/null`" = "X-n $as_echo"; then as_echo_body='eval /usr/ucb/echo -n "$1$as_nl"' as_echo_n='/usr/ucb/echo -n' else as_echo_body='eval expr "X$1" : "X\\(.*\\)"' as_echo_n_body='eval arg=$1; case $arg in #( *"$as_nl"*) expr "X$arg" : "X\\(.*\\)$as_nl"; arg=`expr "X$arg" : ".*$as_nl\\(.*\\)"`;; esac; expr "X$arg" : "X\\(.*\\)" | tr -d "$as_nl" ' export as_echo_n_body as_echo_n='sh -c $as_echo_n_body as_echo' fi export as_echo_body as_echo='sh -c $as_echo_body as_echo' fi # The user is always right. if test "${PATH_SEPARATOR+set}" != set; then PATH_SEPARATOR=: (PATH='/bin;/bin'; FPATH=$PATH; sh -c :) >/dev/null 2>&1 && { (PATH='/bin:/bin'; FPATH=$PATH; sh -c :) >/dev/null 2>&1 || PATH_SEPARATOR=';' } fi # IFS # We need space, tab and new line, in precisely that order. Quoting is # there to prevent editors from complaining about space-tab. # (If _AS_PATH_WALK were called with IFS unset, it would disable word # splitting by setting IFS to empty value.) IFS=" "" $as_nl" # Find who we are. Look in the path if we contain no directory separator. as_myself= case $0 in #(( *[\\/]* ) as_myself=$0 ;; *) as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH do IFS=$as_save_IFS test -z "$as_dir" && as_dir=. test -r "$as_dir/$0" && as_myself=$as_dir/$0 && break done IFS=$as_save_IFS ;; esac # We did not find ourselves, most probably we were run as `sh COMMAND' # in which case we are not to be found in the path. if test "x$as_myself" = x; then as_myself=$0 fi if test ! -f "$as_myself"; then $as_echo "$as_myself: error: cannot find myself; rerun with an absolute file name" >&2 exit 1 fi # Unset variables that we do not need and which cause bugs (e.g. in # pre-3.0 UWIN ksh). But do not cause bugs in bash 2.01; the "|| exit 1" # suppresses any "Segmentation fault" message there. '((' could # trigger a bug in pdksh 5.2.14. for as_var in BASH_ENV ENV MAIL MAILPATH do eval test x\${$as_var+set} = xset \ && ( (unset $as_var) || exit 1) >/dev/null 2>&1 && unset $as_var || : done PS1='$ ' PS2='> ' PS4='+ ' # NLS nuisances. LC_ALL=C export LC_ALL LANGUAGE=C export LANGUAGE # CDPATH. (unset CDPATH) >/dev/null 2>&1 && unset CDPATH if test "x$CONFIG_SHELL" = x; then as_bourne_compatible="if test -n \"\${ZSH_VERSION+set}\" && (emulate sh) >/dev/null 2>&1; then : emulate sh NULLCMD=: # Pre-4.2 versions of Zsh do word splitting on \${1+\"\$@\"}, which # is contrary to our usage. Disable this feature. alias -g '\${1+\"\$@\"}'='\"\$@\"' setopt NO_GLOB_SUBST else case \`(set -o) 2>/dev/null\` in #( *posix*) : set -o posix ;; #( *) : ;; esac fi " as_required="as_fn_return () { (exit \$1); } as_fn_success () { as_fn_return 0; } as_fn_failure () { as_fn_return 1; } as_fn_ret_success () { return 0; } as_fn_ret_failure () { return 1; } exitcode=0 as_fn_success || { exitcode=1; echo as_fn_success failed.; } as_fn_failure && { exitcode=1; echo as_fn_failure succeeded.; } as_fn_ret_success || { exitcode=1; echo as_fn_ret_success failed.; } as_fn_ret_failure && { exitcode=1; echo as_fn_ret_failure succeeded.; } if ( set x; as_fn_ret_success y && test x = \"\$1\" ); then : else exitcode=1; echo positional parameters were not saved. fi test x\$exitcode = x0 || exit 1" as_suggested=" as_lineno_1=";as_suggested=$as_suggested$LINENO;as_suggested=$as_suggested" as_lineno_1a=\$LINENO as_lineno_2=";as_suggested=$as_suggested$LINENO;as_suggested=$as_suggested" as_lineno_2a=\$LINENO eval 'test \"x\$as_lineno_1'\$as_run'\" != \"x\$as_lineno_2'\$as_run'\" && test \"x\`expr \$as_lineno_1'\$as_run' + 1\`\" = \"x\$as_lineno_2'\$as_run'\"' || exit 1 test \$(( 1 + 1 )) = 2 || exit 1" if (eval "$as_required") 2>/dev/null; then : as_have_required=yes else as_have_required=no fi if test x$as_have_required = xyes && (eval "$as_suggested") 2>/dev/null; then : else as_save_IFS=$IFS; IFS=$PATH_SEPARATOR as_found=false for as_dir in /bin$PATH_SEPARATOR/usr/bin$PATH_SEPARATOR$PATH do IFS=$as_save_IFS test -z "$as_dir" && as_dir=. as_found=: case $as_dir in #( /*) for as_base in sh bash ksh sh5; do # Try only shells that exist, to save several forks. as_shell=$as_dir/$as_base if { test -f "$as_shell" || test -f "$as_shell.exe"; } && { $as_echo "$as_bourne_compatible""$as_required" | as_run=a "$as_shell"; } 2>/dev/null; then : CONFIG_SHELL=$as_shell as_have_required=yes if { $as_echo "$as_bourne_compatible""$as_suggested" | as_run=a "$as_shell"; } 2>/dev/null; then : break 2 fi fi done;; esac as_found=false done $as_found || { if { test -f "$SHELL" || test -f "$SHELL.exe"; } && { $as_echo "$as_bourne_compatible""$as_required" | as_run=a "$SHELL"; } 2>/dev/null; then : CONFIG_SHELL=$SHELL as_have_required=yes fi; } IFS=$as_save_IFS if test "x$CONFIG_SHELL" != x; then : # We cannot yet assume a decent shell, so we have to provide a # neutralization value for shells without unset; and this also # works around shells that cannot unset nonexistent variables. # Preserve -v and -x to the replacement shell. BASH_ENV=/dev/null ENV=/dev/null (unset BASH_ENV) >/dev/null 2>&1 && unset BASH_ENV ENV export CONFIG_SHELL case $- in # (((( *v*x* | *x*v* ) as_opts=-vx ;; *v* ) as_opts=-v ;; *x* ) as_opts=-x ;; * ) as_opts= ;; esac exec "$CONFIG_SHELL" $as_opts "$as_myself" ${1+"$@"} fi if test x$as_have_required = xno; then : $as_echo "$0: This script requires a shell more modern than all" $as_echo "$0: the shells that I found on your system." if test x${ZSH_VERSION+set} = xset ; then $as_echo "$0: In particular, zsh $ZSH_VERSION has bugs and should" $as_echo "$0: be upgraded to zsh 4.3.4 or later." else $as_echo "$0: Please tell bug-autoconf@gnu.org about your system, $0: including any error possibly output before this $0: message. Then install a modern shell, or manually run $0: the script under such a shell if you do have one." fi exit 1 fi fi fi SHELL=${CONFIG_SHELL-/bin/sh} export SHELL # Unset more variables known to interfere with behavior of common tools. CLICOLOR_FORCE= GREP_OPTIONS= unset CLICOLOR_FORCE GREP_OPTIONS ## --------------------- ## ## M4sh Shell Functions. ## ## --------------------- ## # as_fn_unset VAR # --------------- # Portably unset VAR. as_fn_unset () { { eval $1=; unset $1;} } as_unset=as_fn_unset # as_fn_set_status STATUS # ----------------------- # Set $? to STATUS, without forking. as_fn_set_status () { return $1 } # as_fn_set_status # as_fn_exit STATUS # ----------------- # Exit the shell with STATUS, even in a "trap 0" or "set -e" context. as_fn_exit () { set +e as_fn_set_status $1 exit $1 } # as_fn_exit # as_fn_mkdir_p # ------------- # Create "$as_dir" as a directory, including parents if necessary. as_fn_mkdir_p () { case $as_dir in #( -*) as_dir=./$as_dir;; esac test -d "$as_dir" || eval $as_mkdir_p || { as_dirs= while :; do case $as_dir in #( *\'*) as_qdir=`$as_echo "$as_dir" | sed "s/'/'\\\\\\\\''/g"`;; #'( *) as_qdir=$as_dir;; esac as_dirs="'$as_qdir' $as_dirs" as_dir=`$as_dirname -- "$as_dir" || $as_expr X"$as_dir" : 'X\(.*[^/]\)//*[^/][^/]*/*$' \| \ X"$as_dir" : 'X\(//\)[^/]' \| \ X"$as_dir" : 'X\(//\)$' \| \ X"$as_dir" : 'X\(/\)' \| . 2>/dev/null || $as_echo X"$as_dir" | sed '/^X\(.*[^/]\)\/\/*[^/][^/]*\/*$/{ s//\1/ q } /^X\(\/\/\)[^/].*/{ s//\1/ q } /^X\(\/\/\)$/{ s//\1/ q } /^X\(\/\).*/{ s//\1/ q } s/.*/./; q'` test -d "$as_dir" && break done test -z "$as_dirs" || eval "mkdir $as_dirs" } || test -d "$as_dir" || as_fn_error $? "cannot create directory $as_dir" } # as_fn_mkdir_p # as_fn_append VAR VALUE # ---------------------- # Append the text in VALUE to the end of the definition contained in VAR. Take # advantage of any shell optimizations that allow amortized linear growth over # repeated appends, instead of the typical quadratic growth present in naive # implementations. if (eval "as_var=1; as_var+=2; test x\$as_var = x12") 2>/dev/null; then : eval 'as_fn_append () { eval $1+=\$2 }' else as_fn_append () { eval $1=\$$1\$2 } fi # as_fn_append # as_fn_arith ARG... # ------------------ # Perform arithmetic evaluation on the ARGs, and store the result in the # global $as_val. Take advantage of shells that can avoid forks. The arguments # must be portable across $(()) and expr. if (eval "test \$(( 1 + 1 )) = 2") 2>/dev/null; then : eval 'as_fn_arith () { as_val=$(( $* )) }' else as_fn_arith () { as_val=`expr "$@" || test $? -eq 1` } fi # as_fn_arith # as_fn_error STATUS ERROR [LINENO LOG_FD] # ---------------------------------------- # Output "`basename $0`: error: ERROR" to stderr. If LINENO and LOG_FD are # provided, also output the error to LOG_FD, referencing LINENO. Then exit the # script with STATUS, using 1 if that was 0. as_fn_error () { as_status=$1; test $as_status -eq 0 && as_status=1 if test "$4"; then as_lineno=${as_lineno-"$3"} as_lineno_stack=as_lineno_stack=$as_lineno_stack $as_echo "$as_me:${as_lineno-$LINENO}: error: $2" >&$4 fi $as_echo "$as_me: error: $2" >&2 as_fn_exit $as_status } # as_fn_error if expr a : '\(a\)' >/dev/null 2>&1 && test "X`expr 00001 : '.*\(...\)'`" = X001; then as_expr=expr else as_expr=false fi if (basename -- /) >/dev/null 2>&1 && test "X`basename -- / 2>&1`" = "X/"; then as_basename=basename else as_basename=false fi if (as_dir=`dirname -- /` && test "X$as_dir" = X/) >/dev/null 2>&1; then as_dirname=dirname else as_dirname=false fi as_me=`$as_basename -- "$0" || $as_expr X/"$0" : '.*/\([^/][^/]*\)/*$' \| \ X"$0" : 'X\(//\)$' \| \ X"$0" : 'X\(/\)' \| . 2>/dev/null || $as_echo X/"$0" | sed '/^.*\/\([^/][^/]*\)\/*$/{ s//\1/ q } /^X\/\(\/\/\)$/{ s//\1/ q } /^X\/\(\/\).*/{ s//\1/ q } s/.*/./; q'` # Avoid depending upon Character Ranges. as_cr_letters='abcdefghijklmnopqrstuvwxyz' as_cr_LETTERS='ABCDEFGHIJKLMNOPQRSTUVWXYZ' as_cr_Letters=$as_cr_letters$as_cr_LETTERS as_cr_digits='0123456789' as_cr_alnum=$as_cr_Letters$as_cr_digits as_lineno_1=$LINENO as_lineno_1a=$LINENO as_lineno_2=$LINENO as_lineno_2a=$LINENO eval 'test "x$as_lineno_1'$as_run'" != "x$as_lineno_2'$as_run'" && test "x`expr $as_lineno_1'$as_run' + 1`" = "x$as_lineno_2'$as_run'"' || { # Blame Lee E. McMahon (1931-1989) for sed's syntax. :-) sed -n ' p /[$]LINENO/= ' <$as_myself | sed ' s/[$]LINENO.*/&-/ t lineno b :lineno N :loop s/[$]LINENO\([^'$as_cr_alnum'_].*\n\)\(.*\)/\2\1\2/ t loop s/-\n.*// ' >$as_me.lineno && chmod +x "$as_me.lineno" || { $as_echo "$as_me: error: cannot create $as_me.lineno; rerun with a POSIX shell" >&2; as_fn_exit 1; } # Don't try to exec as it changes $[0], causing all sort of problems # (the dirname of $[0] is not the place where we might find the # original and so on. Autoconf is especially sensitive to this). . "./$as_me.lineno" # Exit status is that of the last command. exit } ECHO_C= ECHO_N= ECHO_T= case `echo -n x` in #((((( -n*) case `echo 'xy\c'` in *c*) ECHO_T=' ';; # ECHO_T is single tab character. xy) ECHO_C='\c';; *) echo `echo ksh88 bug on AIX 6.1` > /dev/null ECHO_T=' ';; esac;; *) ECHO_N='-n';; esac rm -f conf$$ conf$$.exe conf$$.file if test -d conf$$.dir; then rm -f conf$$.dir/conf$$.file else rm -f conf$$.dir mkdir conf$$.dir 2>/dev/null fi if (echo >conf$$.file) 2>/dev/null; then if ln -s conf$$.file conf$$ 2>/dev/null; then as_ln_s='ln -s' # ... but there are two gotchas: # 1) On MSYS, both `ln -s file dir' and `ln file dir' fail. # 2) DJGPP < 2.04 has no symlinks; `ln -s' creates a wrapper executable. # In both cases, we have to default to `cp -p'. ln -s conf$$.file conf$$.dir 2>/dev/null && test ! -f conf$$.exe || as_ln_s='cp -p' elif ln conf$$.file conf$$ 2>/dev/null; then as_ln_s=ln else as_ln_s='cp -p' fi else as_ln_s='cp -p' fi rm -f conf$$ conf$$.exe conf$$.dir/conf$$.file conf$$.file rmdir conf$$.dir 2>/dev/null if mkdir -p . 2>/dev/null; then as_mkdir_p='mkdir -p "$as_dir"' else test -d ./-p && rmdir ./-p as_mkdir_p=false fi if test -x / >/dev/null 2>&1; then as_test_x='test -x' else if ls -dL / >/dev/null 2>&1; then as_ls_L_option=L else as_ls_L_option= fi as_test_x=' eval sh -c '\'' if test -d "$1"; then test -d "$1/."; else case $1 in #( -*)set "./$1";; esac; case `ls -ld'$as_ls_L_option' "$1" 2>/dev/null` in #(( ???[sx]*):;;*)false;;esac;fi '\'' sh ' fi as_executable_p=$as_test_x # Sed expression to map a string onto a valid CPP name. as_tr_cpp="eval sed 'y%*$as_cr_letters%P$as_cr_LETTERS%;s%[^_$as_cr_alnum]%_%g'" # Sed expression to map a string onto a valid variable name. as_tr_sh="eval sed 'y%*+%pp%;s%[^_$as_cr_alnum]%_%g'" test -n "$DJDIR" || exec 7<&0 &1 # Name of the host. # hostname on some systems (SVR3.2, old GNU/Linux) returns a bogus exit status, # so uname gets run too. ac_hostname=`(hostname || uname -n) 2>/dev/null | sed 1q` # # Initializations. # ac_default_prefix=/usr/local ac_clean_files= ac_config_libobj_dir=. LIBOBJS= cross_compiling=no subdirs= MFLAGS= MAKEFLAGS= # Identity of this package. PACKAGE_NAME= PACKAGE_TARNAME= PACKAGE_VERSION= PACKAGE_STRING= PACKAGE_BUGREPORT= PACKAGE_URL= ac_unique_file="configure.in" # Factoring default headers for most tests. ac_includes_default="\ #include #ifdef HAVE_SYS_TYPES_H # include #endif #ifdef HAVE_SYS_STAT_H # include #endif #ifdef STDC_HEADERS # include # include #else # ifdef HAVE_STDLIB_H # include # endif #endif #ifdef HAVE_STRING_H # if !defined STDC_HEADERS && defined HAVE_MEMORY_H # include # endif # include #endif #ifdef HAVE_STRINGS_H # include #endif #ifdef HAVE_INTTYPES_H # include #endif #ifdef HAVE_STDINT_H # include #endif #ifdef HAVE_UNISTD_H # include #endif" ac_subst_vars='am__EXEEXT_FALSE am__EXEEXT_TRUE LTLIBOBJS LIBOBJS MKINSTALLDIRS POSUB POFILES PO_IN_DATADIR_FALSE PO_IN_DATADIR_TRUE INTLLIBS INSTOBJEXT GMOFILES CATOBJEXT CATALOGS MSGFMT_OPTS GETTEXT_PACKAGE UNIQUE3_LIBS UNIQUE3_CFLAGS LIBXML2_LIBS LIBXML2_CFLAGS GTK3_LIBS GTK3_CFLAGS PKG_CONFIG_LIBDIR PKG_CONFIG_PATH PKG_CONFIG XMKMF DATADIRNAME ALL_LINGUAS INTLTOOL_PERL GMSGFMT MSGFMT MSGMERGE XGETTEXT INTLTOOL_POLICY_RULE INTLTOOL_SERVICE_RULE INTLTOOL_THEME_RULE INTLTOOL_SCHEMAS_RULE INTLTOOL_CAVES_RULE INTLTOOL_XML_NOMERGE_RULE INTLTOOL_XML_RULE INTLTOOL_KBD_RULE INTLTOOL_XAM_RULE INTLTOOL_UI_RULE INTLTOOL_SOUNDLIST_RULE INTLTOOL_SHEET_RULE INTLTOOL_SERVER_RULE INTLTOOL_PONG_RULE INTLTOOL_OAF_RULE INTLTOOL_PROP_RULE INTLTOOL_KEYS_RULE INTLTOOL_DIRECTORY_RULE INTLTOOL_DESKTOP_RULE intltool__v_merge_options_0 intltool__v_merge_options_ INTLTOOL_V_MERGE_OPTIONS INTLTOOL__v_MERGE_0 INTLTOOL__v_MERGE_ INTLTOOL_V_MERGE AM_DEFAULT_VERBOSITY INTLTOOL_EXTRACT INTLTOOL_MERGE INTLTOOL_UPDATE USE_NLS EGREP GREP CPP am__fastdepCC_FALSE am__fastdepCC_TRUE CCDEPMODE am__nodep AMDEPBACKSLASH AMDEP_FALSE AMDEP_TRUE am__quote am__include DEPDIR OBJEXT EXEEXT ac_ct_CC CPPFLAGS LDFLAGS CFLAGS CC MAINT MAINTAINER_MODE_FALSE MAINTAINER_MODE_TRUE am__untar am__tar AMTAR am__leading_dot SET_MAKE AWK mkdir_p MKDIR_P INSTALL_STRIP_PROGRAM STRIP install_sh MAKEINFO AUTOHEADER AUTOMAKE AUTOCONF ACLOCAL VERSION PACKAGE CYGPATH_W am__isrc INSTALL_DATA INSTALL_SCRIPT INSTALL_PROGRAM target_alias host_alias build_alias LIBS ECHO_T ECHO_N ECHO_C DEFS mandir localedir libdir psdir pdfdir dvidir htmldir infodir docdir oldincludedir includedir localstatedir sharedstatedir sysconfdir datadir datarootdir libexecdir sbindir bindir program_transform_name prefix exec_prefix PACKAGE_URL PACKAGE_BUGREPORT PACKAGE_STRING PACKAGE_VERSION PACKAGE_TARNAME PACKAGE_NAME PATH_SEPARATOR SHELL' ac_subst_files='' ac_user_opts=' enable_option_checking enable_maintainer_mode enable_dependency_tracking enable_nls with_x ' ac_precious_vars='build_alias host_alias target_alias CC CFLAGS LDFLAGS LIBS CPPFLAGS CPP XMKMF PKG_CONFIG PKG_CONFIG_PATH PKG_CONFIG_LIBDIR GTK3_CFLAGS GTK3_LIBS LIBXML2_CFLAGS LIBXML2_LIBS UNIQUE3_CFLAGS UNIQUE3_LIBS' # Initialize some variables set by options. ac_init_help= ac_init_version=false ac_unrecognized_opts= ac_unrecognized_sep= # The variables have the same names as the options, with # dashes changed to underlines. cache_file=/dev/null exec_prefix=NONE no_create= no_recursion= prefix=NONE program_prefix=NONE program_suffix=NONE program_transform_name=s,x,x, silent= site= srcdir= verbose= x_includes=NONE x_libraries=NONE # Installation directory options. # These are left unexpanded so users can "make install exec_prefix=/foo" # and all the variables that are supposed to be based on exec_prefix # by default will actually change. # Use braces instead of parens because sh, perl, etc. also accept them. # (The list follows the same order as the GNU Coding Standards.) bindir='${exec_prefix}/bin' sbindir='${exec_prefix}/sbin' libexecdir='${exec_prefix}/libexec' datarootdir='${prefix}/share' datadir='${datarootdir}' sysconfdir='${prefix}/etc' sharedstatedir='${prefix}/com' localstatedir='${prefix}/var' includedir='${prefix}/include' oldincludedir='/usr/include' docdir='${datarootdir}/doc/${PACKAGE}' infodir='${datarootdir}/info' htmldir='${docdir}' dvidir='${docdir}' pdfdir='${docdir}' psdir='${docdir}' libdir='${exec_prefix}/lib' localedir='${datarootdir}/locale' mandir='${datarootdir}/man' ac_prev= ac_dashdash= for ac_option do # If the previous option needs an argument, assign it. if test -n "$ac_prev"; then eval $ac_prev=\$ac_option ac_prev= continue fi case $ac_option in *=?*) ac_optarg=`expr "X$ac_option" : '[^=]*=\(.*\)'` ;; *=) ac_optarg= ;; *) ac_optarg=yes ;; esac # Accept the important Cygnus configure options, so we can diagnose typos. case $ac_dashdash$ac_option in --) ac_dashdash=yes ;; -bindir | --bindir | --bindi | --bind | --bin | --bi) ac_prev=bindir ;; -bindir=* | --bindir=* | --bindi=* | --bind=* | --bin=* | --bi=*) bindir=$ac_optarg ;; -build | --build | --buil | --bui | --bu) ac_prev=build_alias ;; -build=* | --build=* | --buil=* | --bui=* | --bu=*) build_alias=$ac_optarg ;; -cache-file | --cache-file | --cache-fil | --cache-fi \ | --cache-f | --cache- | --cache | --cach | --cac | --ca | --c) ac_prev=cache_file ;; -cache-file=* | --cache-file=* | --cache-fil=* | --cache-fi=* \ | --cache-f=* | --cache-=* | --cache=* | --cach=* | --cac=* | --ca=* | --c=*) cache_file=$ac_optarg ;; --config-cache | -C) cache_file=config.cache ;; -datadir | --datadir | --datadi | --datad) ac_prev=datadir ;; -datadir=* | --datadir=* | --datadi=* | --datad=*) datadir=$ac_optarg ;; -datarootdir | --datarootdir | --datarootdi | --datarootd | --dataroot \ | --dataroo | --dataro | --datar) ac_prev=datarootdir ;; -datarootdir=* | --datarootdir=* | --datarootdi=* | --datarootd=* \ | --dataroot=* | --dataroo=* | --dataro=* | --datar=*) datarootdir=$ac_optarg ;; -disable-* | --disable-*) ac_useropt=`expr "x$ac_option" : 'x-*disable-\(.*\)'` # Reject names that are not valid shell variable names. expr "x$ac_useropt" : ".*[^-+._$as_cr_alnum]" >/dev/null && as_fn_error $? "invalid feature name: $ac_useropt" ac_useropt_orig=$ac_useropt ac_useropt=`$as_echo "$ac_useropt" | sed 's/[-+.]/_/g'` case $ac_user_opts in *" "enable_$ac_useropt" "*) ;; *) ac_unrecognized_opts="$ac_unrecognized_opts$ac_unrecognized_sep--disable-$ac_useropt_orig" ac_unrecognized_sep=', ';; esac eval enable_$ac_useropt=no ;; -docdir | --docdir | --docdi | --doc | --do) ac_prev=docdir ;; -docdir=* | --docdir=* | --docdi=* | --doc=* | --do=*) docdir=$ac_optarg ;; -dvidir | --dvidir | --dvidi | --dvid | --dvi | --dv) ac_prev=dvidir ;; -dvidir=* | --dvidir=* | --dvidi=* | --dvid=* | --dvi=* | --dv=*) dvidir=$ac_optarg ;; -enable-* | --enable-*) ac_useropt=`expr "x$ac_option" : 'x-*enable-\([^=]*\)'` # Reject names that are not valid shell variable names. expr "x$ac_useropt" : ".*[^-+._$as_cr_alnum]" >/dev/null && as_fn_error $? "invalid feature name: $ac_useropt" ac_useropt_orig=$ac_useropt ac_useropt=`$as_echo "$ac_useropt" | sed 's/[-+.]/_/g'` case $ac_user_opts in *" "enable_$ac_useropt" "*) ;; *) ac_unrecognized_opts="$ac_unrecognized_opts$ac_unrecognized_sep--enable-$ac_useropt_orig" ac_unrecognized_sep=', ';; esac eval enable_$ac_useropt=\$ac_optarg ;; -exec-prefix | --exec_prefix | --exec-prefix | --exec-prefi \ | --exec-pref | --exec-pre | --exec-pr | --exec-p | --exec- \ | --exec | --exe | --ex) ac_prev=exec_prefix ;; -exec-prefix=* | --exec_prefix=* | --exec-prefix=* | --exec-prefi=* \ | --exec-pref=* | --exec-pre=* | --exec-pr=* | --exec-p=* | --exec-=* \ | --exec=* | --exe=* | --ex=*) exec_prefix=$ac_optarg ;; -gas | --gas | --ga | --g) # Obsolete; use --with-gas. with_gas=yes ;; -help | --help | --hel | --he | -h) ac_init_help=long ;; -help=r* | --help=r* | --hel=r* | --he=r* | -hr*) ac_init_help=recursive ;; -help=s* | --help=s* | --hel=s* | --he=s* | -hs*) ac_init_help=short ;; -host | --host | --hos | --ho) ac_prev=host_alias ;; -host=* | --host=* | --hos=* | --ho=*) host_alias=$ac_optarg ;; -htmldir | --htmldir | --htmldi | --htmld | --html | --htm | --ht) ac_prev=htmldir ;; -htmldir=* | --htmldir=* | --htmldi=* | --htmld=* | --html=* | --htm=* \ | --ht=*) htmldir=$ac_optarg ;; -includedir | --includedir | --includedi | --included | --include \ | --includ | --inclu | --incl | --inc) ac_prev=includedir ;; -includedir=* | --includedir=* | --includedi=* | --included=* | --include=* \ | --includ=* | --inclu=* | --incl=* | --inc=*) includedir=$ac_optarg ;; -infodir | --infodir | --infodi | --infod | --info | --inf) ac_prev=infodir ;; -infodir=* | --infodir=* | --infodi=* | --infod=* | --info=* | --inf=*) infodir=$ac_optarg ;; -libdir | --libdir | --libdi | --libd) ac_prev=libdir ;; -libdir=* | --libdir=* | --libdi=* | --libd=*) libdir=$ac_optarg ;; -libexecdir | --libexecdir | --libexecdi | --libexecd | --libexec \ | --libexe | --libex | --libe) ac_prev=libexecdir ;; -libexecdir=* | --libexecdir=* | --libexecdi=* | --libexecd=* | --libexec=* \ | --libexe=* | --libex=* | --libe=*) libexecdir=$ac_optarg ;; -localedir | --localedir | --localedi | --localed | --locale) ac_prev=localedir ;; -localedir=* | --localedir=* | --localedi=* | --localed=* | --locale=*) localedir=$ac_optarg ;; -localstatedir | --localstatedir | --localstatedi | --localstated \ | --localstate | --localstat | --localsta | --localst | --locals) ac_prev=localstatedir ;; -localstatedir=* | --localstatedir=* | --localstatedi=* | --localstated=* \ | --localstate=* | --localstat=* | --localsta=* | --localst=* | --locals=*) localstatedir=$ac_optarg ;; -mandir | --mandir | --mandi | --mand | --man | --ma | --m) ac_prev=mandir ;; -mandir=* | --mandir=* | --mandi=* | --mand=* | --man=* | --ma=* | --m=*) mandir=$ac_optarg ;; -nfp | --nfp | --nf) # Obsolete; use --without-fp. with_fp=no ;; -no-create | --no-create | --no-creat | --no-crea | --no-cre \ | --no-cr | --no-c | -n) no_create=yes ;; -no-recursion | --no-recursion | --no-recursio | --no-recursi \ | --no-recurs | --no-recur | --no-recu | --no-rec | --no-re | --no-r) no_recursion=yes ;; -oldincludedir | --oldincludedir | --oldincludedi | --oldincluded \ | --oldinclude | --oldinclud | --oldinclu | --oldincl | --oldinc \ | --oldin | --oldi | --old | --ol | --o) ac_prev=oldincludedir ;; -oldincludedir=* | --oldincludedir=* | --oldincludedi=* | --oldincluded=* \ | --oldinclude=* | --oldinclud=* | --oldinclu=* | --oldincl=* | --oldinc=* \ | --oldin=* | --oldi=* | --old=* | --ol=* | --o=*) oldincludedir=$ac_optarg ;; -prefix | --prefix | --prefi | --pref | --pre | --pr | --p) ac_prev=prefix ;; -prefix=* | --prefix=* | --prefi=* | --pref=* | --pre=* | --pr=* | --p=*) prefix=$ac_optarg ;; -program-prefix | --program-prefix | --program-prefi | --program-pref \ | --program-pre | --program-pr | --program-p) ac_prev=program_prefix ;; -program-prefix=* | --program-prefix=* | --program-prefi=* \ | --program-pref=* | --program-pre=* | --program-pr=* | --program-p=*) program_prefix=$ac_optarg ;; -program-suffix | --program-suffix | --program-suffi | --program-suff \ | --program-suf | --program-su | --program-s) ac_prev=program_suffix ;; -program-suffix=* | --program-suffix=* | --program-suffi=* \ | --program-suff=* | --program-suf=* | --program-su=* | --program-s=*) program_suffix=$ac_optarg ;; -program-transform-name | --program-transform-name \ | --program-transform-nam | --program-transform-na \ | --program-transform-n | --program-transform- \ | --program-transform | --program-transfor \ | --program-transfo | --program-transf \ | --program-trans | --program-tran \ | --progr-tra | --program-tr | --program-t) ac_prev=program_transform_name ;; -program-transform-name=* | --program-transform-name=* \ | --program-transform-nam=* | --program-transform-na=* \ | --program-transform-n=* | --program-transform-=* \ | --program-transform=* | --program-transfor=* \ | --program-transfo=* | --program-transf=* \ | --program-trans=* | --program-tran=* \ | --progr-tra=* | --program-tr=* | --program-t=*) program_transform_name=$ac_optarg ;; -pdfdir | --pdfdir | --pdfdi | --pdfd | --pdf | --pd) ac_prev=pdfdir ;; -pdfdir=* | --pdfdir=* | --pdfdi=* | --pdfd=* | --pdf=* | --pd=*) pdfdir=$ac_optarg ;; -psdir | --psdir | --psdi | --psd | --ps) ac_prev=psdir ;; -psdir=* | --psdir=* | --psdi=* | --psd=* | --ps=*) psdir=$ac_optarg ;; -q | -quiet | --quiet | --quie | --qui | --qu | --q \ | -silent | --silent | --silen | --sile | --sil) silent=yes ;; -sbindir | --sbindir | --sbindi | --sbind | --sbin | --sbi | --sb) ac_prev=sbindir ;; -sbindir=* | --sbindir=* | --sbindi=* | --sbind=* | --sbin=* \ | --sbi=* | --sb=*) sbindir=$ac_optarg ;; -sharedstatedir | --sharedstatedir | --sharedstatedi \ | --sharedstated | --sharedstate | --sharedstat | --sharedsta \ | --sharedst | --shareds | --shared | --share | --shar \ | --sha | --sh) ac_prev=sharedstatedir ;; -sharedstatedir=* | --sharedstatedir=* | --sharedstatedi=* \ | --sharedstated=* | --sharedstate=* | --sharedstat=* | --sharedsta=* \ | --sharedst=* | --shareds=* | --shared=* | --share=* | --shar=* \ | --sha=* | --sh=*) sharedstatedir=$ac_optarg ;; -site | --site | --sit) ac_prev=site ;; -site=* | --site=* | --sit=*) site=$ac_optarg ;; -srcdir | --srcdir | --srcdi | --srcd | --src | --sr) ac_prev=srcdir ;; -srcdir=* | --srcdir=* | --srcdi=* | --srcd=* | --src=* | --sr=*) srcdir=$ac_optarg ;; -sysconfdir | --sysconfdir | --sysconfdi | --sysconfd | --sysconf \ | --syscon | --sysco | --sysc | --sys | --sy) ac_prev=sysconfdir ;; -sysconfdir=* | --sysconfdir=* | --sysconfdi=* | --sysconfd=* | --sysconf=* \ | --syscon=* | --sysco=* | --sysc=* | --sys=* | --sy=*) sysconfdir=$ac_optarg ;; -target | --target | --targe | --targ | --tar | --ta | --t) ac_prev=target_alias ;; -target=* | --target=* | --targe=* | --targ=* | --tar=* | --ta=* | --t=*) target_alias=$ac_optarg ;; -v | -verbose | --verbose | --verbos | --verbo | --verb) verbose=yes ;; -version | --version | --versio | --versi | --vers | -V) ac_init_version=: ;; -with-* | --with-*) ac_useropt=`expr "x$ac_option" : 'x-*with-\([^=]*\)'` # Reject names that are not valid shell variable names. expr "x$ac_useropt" : ".*[^-+._$as_cr_alnum]" >/dev/null && as_fn_error $? "invalid package name: $ac_useropt" ac_useropt_orig=$ac_useropt ac_useropt=`$as_echo "$ac_useropt" | sed 's/[-+.]/_/g'` case $ac_user_opts in *" "with_$ac_useropt" "*) ;; *) ac_unrecognized_opts="$ac_unrecognized_opts$ac_unrecognized_sep--with-$ac_useropt_orig" ac_unrecognized_sep=', ';; esac eval with_$ac_useropt=\$ac_optarg ;; -without-* | --without-*) ac_useropt=`expr "x$ac_option" : 'x-*without-\(.*\)'` # Reject names that are not valid shell variable names. expr "x$ac_useropt" : ".*[^-+._$as_cr_alnum]" >/dev/null && as_fn_error $? "invalid package name: $ac_useropt" ac_useropt_orig=$ac_useropt ac_useropt=`$as_echo "$ac_useropt" | sed 's/[-+.]/_/g'` case $ac_user_opts in *" "with_$ac_useropt" "*) ;; *) ac_unrecognized_opts="$ac_unrecognized_opts$ac_unrecognized_sep--without-$ac_useropt_orig" ac_unrecognized_sep=', ';; esac eval with_$ac_useropt=no ;; --x) # Obsolete; use --with-x. with_x=yes ;; -x-includes | --x-includes | --x-include | --x-includ | --x-inclu \ | --x-incl | --x-inc | --x-in | --x-i) ac_prev=x_includes ;; -x-includes=* | --x-includes=* | --x-include=* | --x-includ=* | --x-inclu=* \ | --x-incl=* | --x-inc=* | --x-in=* | --x-i=*) x_includes=$ac_optarg ;; -x-libraries | --x-libraries | --x-librarie | --x-librari \ | --x-librar | --x-libra | --x-libr | --x-lib | --x-li | --x-l) ac_prev=x_libraries ;; -x-libraries=* | --x-libraries=* | --x-librarie=* | --x-librari=* \ | --x-librar=* | --x-libra=* | --x-libr=* | --x-lib=* | --x-li=* | --x-l=*) x_libraries=$ac_optarg ;; -*) as_fn_error $? "unrecognized option: \`$ac_option' Try \`$0 --help' for more information" ;; *=*) ac_envvar=`expr "x$ac_option" : 'x\([^=]*\)='` # Reject names that are not valid shell variable names. case $ac_envvar in #( '' | [0-9]* | *[!_$as_cr_alnum]* ) as_fn_error $? "invalid variable name: \`$ac_envvar'" ;; esac eval $ac_envvar=\$ac_optarg export $ac_envvar ;; *) # FIXME: should be removed in autoconf 3.0. $as_echo "$as_me: WARNING: you should use --build, --host, --target" >&2 expr "x$ac_option" : ".*[^-._$as_cr_alnum]" >/dev/null && $as_echo "$as_me: WARNING: invalid host type: $ac_option" >&2 : "${build_alias=$ac_option} ${host_alias=$ac_option} ${target_alias=$ac_option}" ;; esac done if test -n "$ac_prev"; then ac_option=--`echo $ac_prev | sed 's/_/-/g'` as_fn_error $? "missing argument to $ac_option" fi if test -n "$ac_unrecognized_opts"; then case $enable_option_checking in no) ;; fatal) as_fn_error $? "unrecognized options: $ac_unrecognized_opts" ;; *) $as_echo "$as_me: WARNING: unrecognized options: $ac_unrecognized_opts" >&2 ;; esac fi # Check all directory arguments for consistency. for ac_var in exec_prefix prefix bindir sbindir libexecdir datarootdir \ datadir sysconfdir sharedstatedir localstatedir includedir \ oldincludedir docdir infodir htmldir dvidir pdfdir psdir \ libdir localedir mandir do eval ac_val=\$$ac_var # Remove trailing slashes. case $ac_val in */ ) ac_val=`expr "X$ac_val" : 'X\(.*[^/]\)' \| "X$ac_val" : 'X\(.*\)'` eval $ac_var=\$ac_val;; esac # Be sure to have absolute directory names. case $ac_val in [\\/$]* | ?:[\\/]* ) continue;; NONE | '' ) case $ac_var in *prefix ) continue;; esac;; esac as_fn_error $? "expected an absolute directory name for --$ac_var: $ac_val" done # There might be people who depend on the old broken behavior: `$host' # used to hold the argument of --host etc. # FIXME: To remove some day. build=$build_alias host=$host_alias target=$target_alias # FIXME: To remove some day. if test "x$host_alias" != x; then if test "x$build_alias" = x; then cross_compiling=maybe $as_echo "$as_me: WARNING: if you wanted to set the --build type, don't use --host. If a cross compiler is detected then cross compile mode will be used" >&2 elif test "x$build_alias" != "x$host_alias"; then cross_compiling=yes fi fi ac_tool_prefix= test -n "$host_alias" && ac_tool_prefix=$host_alias- test "$silent" = yes && exec 6>/dev/null ac_pwd=`pwd` && test -n "$ac_pwd" && ac_ls_di=`ls -di .` && ac_pwd_ls_di=`cd "$ac_pwd" && ls -di .` || as_fn_error $? "working directory cannot be determined" test "X$ac_ls_di" = "X$ac_pwd_ls_di" || as_fn_error $? "pwd does not report name of working directory" # Find the source files, if location was not specified. if test -z "$srcdir"; then ac_srcdir_defaulted=yes # Try the directory containing this script, then the parent directory. ac_confdir=`$as_dirname -- "$as_myself" || $as_expr X"$as_myself" : 'X\(.*[^/]\)//*[^/][^/]*/*$' \| \ X"$as_myself" : 'X\(//\)[^/]' \| \ X"$as_myself" : 'X\(//\)$' \| \ X"$as_myself" : 'X\(/\)' \| . 2>/dev/null || $as_echo X"$as_myself" | sed '/^X\(.*[^/]\)\/\/*[^/][^/]*\/*$/{ s//\1/ q } /^X\(\/\/\)[^/].*/{ s//\1/ q } /^X\(\/\/\)$/{ s//\1/ q } /^X\(\/\).*/{ s//\1/ q } s/.*/./; q'` srcdir=$ac_confdir if test ! -r "$srcdir/$ac_unique_file"; then srcdir=.. fi else ac_srcdir_defaulted=no fi if test ! -r "$srcdir/$ac_unique_file"; then test "$ac_srcdir_defaulted" = yes && srcdir="$ac_confdir or .." as_fn_error $? "cannot find sources ($ac_unique_file) in $srcdir" fi ac_msg="sources are in $srcdir, but \`cd $srcdir' does not work" ac_abs_confdir=`( cd "$srcdir" && test -r "./$ac_unique_file" || as_fn_error $? "$ac_msg" pwd)` # When building in place, set srcdir=. if test "$ac_abs_confdir" = "$ac_pwd"; then srcdir=. fi # Remove unnecessary trailing slashes from srcdir. # Double slashes in file names in object file debugging info # mess up M-x gdb in Emacs. case $srcdir in */) srcdir=`expr "X$srcdir" : 'X\(.*[^/]\)' \| "X$srcdir" : 'X\(.*\)'`;; esac for ac_var in $ac_precious_vars; do eval ac_env_${ac_var}_set=\${${ac_var}+set} eval ac_env_${ac_var}_value=\$${ac_var} eval ac_cv_env_${ac_var}_set=\${${ac_var}+set} eval ac_cv_env_${ac_var}_value=\$${ac_var} done # # Report the --help message. # if test "$ac_init_help" = "long"; then # Omit some internal or obsolete options to make the list less imposing. # This message is too long to be a string in the A/UX 3.1 sh. cat <<_ACEOF \`configure' configures this package to adapt to many kinds of systems. Usage: $0 [OPTION]... [VAR=VALUE]... To assign environment variables (e.g., CC, CFLAGS...), specify them as VAR=VALUE. See below for descriptions of some of the useful variables. Defaults for the options are specified in brackets. Configuration: -h, --help display this help and exit --help=short display options specific to this package --help=recursive display the short help of all the included packages -V, --version display version information and exit -q, --quiet, --silent do not print \`checking ...' messages --cache-file=FILE cache test results in FILE [disabled] -C, --config-cache alias for \`--cache-file=config.cache' -n, --no-create do not create output files --srcdir=DIR find the sources in DIR [configure dir or \`..'] Installation directories: --prefix=PREFIX install architecture-independent files in PREFIX [$ac_default_prefix] --exec-prefix=EPREFIX install architecture-dependent files in EPREFIX [PREFIX] By default, \`make install' will install all the files in \`$ac_default_prefix/bin', \`$ac_default_prefix/lib' etc. You can specify an installation prefix other than \`$ac_default_prefix' using \`--prefix', for instance \`--prefix=\$HOME'. For better control, use the options below. Fine tuning of the installation directories: --bindir=DIR user executables [EPREFIX/bin] --sbindir=DIR system admin executables [EPREFIX/sbin] --libexecdir=DIR program executables [EPREFIX/libexec] --sysconfdir=DIR read-only single-machine data [PREFIX/etc] --sharedstatedir=DIR modifiable architecture-independent data [PREFIX/com] --localstatedir=DIR modifiable single-machine data [PREFIX/var] --libdir=DIR object code libraries [EPREFIX/lib] --includedir=DIR C header files [PREFIX/include] --oldincludedir=DIR C header files for non-gcc [/usr/include] --datarootdir=DIR read-only arch.-independent data root [PREFIX/share] --datadir=DIR read-only architecture-independent data [DATAROOTDIR] --infodir=DIR info documentation [DATAROOTDIR/info] --localedir=DIR locale-dependent data [DATAROOTDIR/locale] --mandir=DIR man documentation [DATAROOTDIR/man] --docdir=DIR documentation root [DATAROOTDIR/doc/PACKAGE] --htmldir=DIR html documentation [DOCDIR] --dvidir=DIR dvi documentation [DOCDIR] --pdfdir=DIR pdf documentation [DOCDIR] --psdir=DIR ps documentation [DOCDIR] _ACEOF cat <<\_ACEOF Program names: --program-prefix=PREFIX prepend PREFIX to installed program names --program-suffix=SUFFIX append SUFFIX to installed program names --program-transform-name=PROGRAM run sed PROGRAM on installed program names X features: --x-includes=DIR X include files are in DIR --x-libraries=DIR X library files are in DIR _ACEOF fi if test -n "$ac_init_help"; then cat <<\_ACEOF Optional Features: --disable-option-checking ignore unrecognized --enable/--with options --disable-FEATURE do not include FEATURE (same as --enable-FEATURE=no) --enable-FEATURE[=ARG] include FEATURE [ARG=yes] --enable-maintainer-mode enable make rules and dependencies not useful (and sometimes confusing) to the casual installer --disable-dependency-tracking speeds up one-time build --enable-dependency-tracking do not reject slow dependency extractors --disable-nls do not use Native Language Support Optional Packages: --with-PACKAGE[=ARG] use PACKAGE [ARG=yes] --without-PACKAGE do not use PACKAGE (same as --with-PACKAGE=no) --with-x use the X Window System Some influential environment variables: CC C compiler command CFLAGS C compiler flags LDFLAGS linker flags, e.g. -L if you have libraries in a nonstandard directory LIBS libraries to pass to the linker, e.g. -l CPPFLAGS (Objective) C/C++ preprocessor flags, e.g. -I if you have headers in a nonstandard directory CPP C preprocessor XMKMF Path to xmkmf, Makefile generator for X Window System PKG_CONFIG path to pkg-config utility PKG_CONFIG_PATH directories to add to pkg-config's search path PKG_CONFIG_LIBDIR path overriding pkg-config's built-in search path GTK3_CFLAGS C compiler flags for GTK3, overriding pkg-config GTK3_LIBS linker flags for GTK3, overriding pkg-config LIBXML2_CFLAGS C compiler flags for LIBXML2, overriding pkg-config LIBXML2_LIBS linker flags for LIBXML2, overriding pkg-config UNIQUE3_CFLAGS C compiler flags for UNIQUE3, overriding pkg-config UNIQUE3_LIBS linker flags for UNIQUE3, overriding pkg-config Use these variables to override the choices made by `configure' or to help it to find libraries and programs with nonstandard names/locations. Report bugs to the package provider. _ACEOF ac_status=$? fi if test "$ac_init_help" = "recursive"; then # If there are subdirs, report their specific --help. for ac_dir in : $ac_subdirs_all; do test "x$ac_dir" = x: && continue test -d "$ac_dir" || { cd "$srcdir" && ac_pwd=`pwd` && srcdir=. && test -d "$ac_dir"; } || continue ac_builddir=. case "$ac_dir" in .) ac_dir_suffix= ac_top_builddir_sub=. ac_top_build_prefix= ;; *) ac_dir_suffix=/`$as_echo "$ac_dir" | sed 's|^\.[\\/]||'` # A ".." for each directory in $ac_dir_suffix. ac_top_builddir_sub=`$as_echo "$ac_dir_suffix" | sed 's|/[^\\/]*|/..|g;s|/||'` case $ac_top_builddir_sub in "") ac_top_builddir_sub=. ac_top_build_prefix= ;; *) ac_top_build_prefix=$ac_top_builddir_sub/ ;; esac ;; esac ac_abs_top_builddir=$ac_pwd ac_abs_builddir=$ac_pwd$ac_dir_suffix # for backward compatibility: ac_top_builddir=$ac_top_build_prefix case $srcdir in .) # We are building in place. ac_srcdir=. ac_top_srcdir=$ac_top_builddir_sub ac_abs_top_srcdir=$ac_pwd ;; [\\/]* | ?:[\\/]* ) # Absolute name. ac_srcdir=$srcdir$ac_dir_suffix; ac_top_srcdir=$srcdir ac_abs_top_srcdir=$srcdir ;; *) # Relative name. ac_srcdir=$ac_top_build_prefix$srcdir$ac_dir_suffix ac_top_srcdir=$ac_top_build_prefix$srcdir ac_abs_top_srcdir=$ac_pwd/$srcdir ;; esac ac_abs_srcdir=$ac_abs_top_srcdir$ac_dir_suffix cd "$ac_dir" || { ac_status=$?; continue; } # Check for guested configure. if test -f "$ac_srcdir/configure.gnu"; then echo && $SHELL "$ac_srcdir/configure.gnu" --help=recursive elif test -f "$ac_srcdir/configure"; then echo && $SHELL "$ac_srcdir/configure" --help=recursive else $as_echo "$as_me: WARNING: no configuration information is in $ac_dir" >&2 fi || ac_status=$? cd "$ac_pwd" || { ac_status=$?; break; } done fi test -n "$ac_init_help" && exit $ac_status if $ac_init_version; then cat <<\_ACEOF configure generated by GNU Autoconf 2.68 Copyright (C) 2010 Free Software Foundation, Inc. This configure script is free software; the Free Software Foundation gives unlimited permission to copy, distribute and modify it. _ACEOF exit fi ## ------------------------ ## ## Autoconf initialization. ## ## ------------------------ ## # ac_fn_c_try_compile LINENO # -------------------------- # Try to compile conftest.$ac_ext, and return whether this succeeded. ac_fn_c_try_compile () { as_lineno=${as_lineno-"$1"} as_lineno_stack=as_lineno_stack=$as_lineno_stack rm -f conftest.$ac_objext if { { ac_try="$ac_compile" case "(($ac_try" in *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; *) ac_try_echo=$ac_try;; esac eval ac_try_echo="\"\$as_me:${as_lineno-$LINENO}: $ac_try_echo\"" $as_echo "$ac_try_echo"; } >&5 (eval "$ac_compile") 2>conftest.err ac_status=$? if test -s conftest.err; then grep -v '^ *+' conftest.err >conftest.er1 cat conftest.er1 >&5 mv -f conftest.er1 conftest.err fi $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 test $ac_status = 0; } && { test -z "$ac_c_werror_flag" || test ! -s conftest.err } && test -s conftest.$ac_objext; then : ac_retval=0 else $as_echo "$as_me: failed program was:" >&5 sed 's/^/| /' conftest.$ac_ext >&5 ac_retval=1 fi eval $as_lineno_stack; ${as_lineno_stack:+:} unset as_lineno as_fn_set_status $ac_retval } # ac_fn_c_try_compile # ac_fn_c_try_link LINENO # ----------------------- # Try to link conftest.$ac_ext, and return whether this succeeded. ac_fn_c_try_link () { as_lineno=${as_lineno-"$1"} as_lineno_stack=as_lineno_stack=$as_lineno_stack rm -f conftest.$ac_objext conftest$ac_exeext if { { ac_try="$ac_link" case "(($ac_try" in *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; *) ac_try_echo=$ac_try;; esac eval ac_try_echo="\"\$as_me:${as_lineno-$LINENO}: $ac_try_echo\"" $as_echo "$ac_try_echo"; } >&5 (eval "$ac_link") 2>conftest.err ac_status=$? if test -s conftest.err; then grep -v '^ *+' conftest.err >conftest.er1 cat conftest.er1 >&5 mv -f conftest.er1 conftest.err fi $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 test $ac_status = 0; } && { test -z "$ac_c_werror_flag" || test ! -s conftest.err } && test -s conftest$ac_exeext && { test "$cross_compiling" = yes || $as_test_x conftest$ac_exeext }; then : ac_retval=0 else $as_echo "$as_me: failed program was:" >&5 sed 's/^/| /' conftest.$ac_ext >&5 ac_retval=1 fi # Delete the IPA/IPO (Inter Procedural Analysis/Optimization) information # created by the PGI compiler (conftest_ipa8_conftest.oo), as it would # interfere with the next link command; also delete a directory that is # left behind by Apple's compiler. We do this before executing the actions. rm -rf conftest.dSYM conftest_ipa8_conftest.oo eval $as_lineno_stack; ${as_lineno_stack:+:} unset as_lineno as_fn_set_status $ac_retval } # ac_fn_c_try_link # ac_fn_c_try_cpp LINENO # ---------------------- # Try to preprocess conftest.$ac_ext, and return whether this succeeded. ac_fn_c_try_cpp () { as_lineno=${as_lineno-"$1"} as_lineno_stack=as_lineno_stack=$as_lineno_stack if { { ac_try="$ac_cpp conftest.$ac_ext" case "(($ac_try" in *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; *) ac_try_echo=$ac_try;; esac eval ac_try_echo="\"\$as_me:${as_lineno-$LINENO}: $ac_try_echo\"" $as_echo "$ac_try_echo"; } >&5 (eval "$ac_cpp conftest.$ac_ext") 2>conftest.err ac_status=$? if test -s conftest.err; then grep -v '^ *+' conftest.err >conftest.er1 cat conftest.er1 >&5 mv -f conftest.er1 conftest.err fi $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 test $ac_status = 0; } > conftest.i && { test -z "$ac_c_preproc_warn_flag$ac_c_werror_flag" || test ! -s conftest.err }; then : ac_retval=0 else $as_echo "$as_me: failed program was:" >&5 sed 's/^/| /' conftest.$ac_ext >&5 ac_retval=1 fi eval $as_lineno_stack; ${as_lineno_stack:+:} unset as_lineno as_fn_set_status $ac_retval } # ac_fn_c_try_cpp # ac_fn_c_try_run LINENO # ---------------------- # Try to link conftest.$ac_ext, and return whether this succeeded. Assumes # that executables *can* be run. ac_fn_c_try_run () { as_lineno=${as_lineno-"$1"} as_lineno_stack=as_lineno_stack=$as_lineno_stack if { { ac_try="$ac_link" case "(($ac_try" in *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; *) ac_try_echo=$ac_try;; esac eval ac_try_echo="\"\$as_me:${as_lineno-$LINENO}: $ac_try_echo\"" $as_echo "$ac_try_echo"; } >&5 (eval "$ac_link") 2>&5 ac_status=$? $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 test $ac_status = 0; } && { ac_try='./conftest$ac_exeext' { { case "(($ac_try" in *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; *) ac_try_echo=$ac_try;; esac eval ac_try_echo="\"\$as_me:${as_lineno-$LINENO}: $ac_try_echo\"" $as_echo "$ac_try_echo"; } >&5 (eval "$ac_try") 2>&5 ac_status=$? $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 test $ac_status = 0; }; }; then : ac_retval=0 else $as_echo "$as_me: program exited with status $ac_status" >&5 $as_echo "$as_me: failed program was:" >&5 sed 's/^/| /' conftest.$ac_ext >&5 ac_retval=$ac_status fi rm -rf conftest.dSYM conftest_ipa8_conftest.oo eval $as_lineno_stack; ${as_lineno_stack:+:} unset as_lineno as_fn_set_status $ac_retval } # ac_fn_c_try_run # ac_fn_c_check_func LINENO FUNC VAR # ---------------------------------- # Tests whether FUNC exists, setting the cache variable VAR accordingly ac_fn_c_check_func () { as_lineno=${as_lineno-"$1"} as_lineno_stack=as_lineno_stack=$as_lineno_stack { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $2" >&5 $as_echo_n "checking for $2... " >&6; } if eval \${$3+:} false; then : $as_echo_n "(cached) " >&6 else cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ /* Define $2 to an innocuous variant, in case declares $2. For example, HP-UX 11i declares gettimeofday. */ #define $2 innocuous_$2 /* System header to define __stub macros and hopefully few prototypes, which can conflict with char $2 (); below. Prefer to if __STDC__ is defined, since exists even on freestanding compilers. */ #ifdef __STDC__ # include #else # include #endif #undef $2 /* Override any GCC internal prototype to avoid an error. Use char because int might match the return type of a GCC builtin and then its argument prototype would still apply. */ #ifdef __cplusplus extern "C" #endif char $2 (); /* The GNU C library defines this for functions which it implements to always fail with ENOSYS. Some functions are actually named something starting with __ and the normal name is an alias. */ #if defined __stub_$2 || defined __stub___$2 choke me #endif int main () { return $2 (); ; return 0; } _ACEOF if ac_fn_c_try_link "$LINENO"; then : eval "$3=yes" else eval "$3=no" fi rm -f core conftest.err conftest.$ac_objext \ conftest$ac_exeext conftest.$ac_ext fi eval ac_res=\$$3 { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_res" >&5 $as_echo "$ac_res" >&6; } eval $as_lineno_stack; ${as_lineno_stack:+:} unset as_lineno } # ac_fn_c_check_func # ac_fn_c_check_header_mongrel LINENO HEADER VAR INCLUDES # ------------------------------------------------------- # Tests whether HEADER exists, giving a warning if it cannot be compiled using # the include files in INCLUDES and setting the cache variable VAR # accordingly. ac_fn_c_check_header_mongrel () { as_lineno=${as_lineno-"$1"} as_lineno_stack=as_lineno_stack=$as_lineno_stack if eval \${$3+:} false; then : { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $2" >&5 $as_echo_n "checking for $2... " >&6; } if eval \${$3+:} false; then : $as_echo_n "(cached) " >&6 fi eval ac_res=\$$3 { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_res" >&5 $as_echo "$ac_res" >&6; } else # Is the header compilable? { $as_echo "$as_me:${as_lineno-$LINENO}: checking $2 usability" >&5 $as_echo_n "checking $2 usability... " >&6; } cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ $4 #include <$2> _ACEOF if ac_fn_c_try_compile "$LINENO"; then : ac_header_compiler=yes else ac_header_compiler=no fi rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_header_compiler" >&5 $as_echo "$ac_header_compiler" >&6; } # Is the header present? { $as_echo "$as_me:${as_lineno-$LINENO}: checking $2 presence" >&5 $as_echo_n "checking $2 presence... " >&6; } cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ #include <$2> _ACEOF if ac_fn_c_try_cpp "$LINENO"; then : ac_header_preproc=yes else ac_header_preproc=no fi rm -f conftest.err conftest.i conftest.$ac_ext { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_header_preproc" >&5 $as_echo "$ac_header_preproc" >&6; } # So? What about this header? case $ac_header_compiler:$ac_header_preproc:$ac_c_preproc_warn_flag in #(( yes:no: ) { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: $2: accepted by the compiler, rejected by the preprocessor!" >&5 $as_echo "$as_me: WARNING: $2: accepted by the compiler, rejected by the preprocessor!" >&2;} { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: $2: proceeding with the compiler's result" >&5 $as_echo "$as_me: WARNING: $2: proceeding with the compiler's result" >&2;} ;; no:yes:* ) { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: $2: present but cannot be compiled" >&5 $as_echo "$as_me: WARNING: $2: present but cannot be compiled" >&2;} { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: $2: check for missing prerequisite headers?" >&5 $as_echo "$as_me: WARNING: $2: check for missing prerequisite headers?" >&2;} { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: $2: see the Autoconf documentation" >&5 $as_echo "$as_me: WARNING: $2: see the Autoconf documentation" >&2;} { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: $2: section \"Present But Cannot Be Compiled\"" >&5 $as_echo "$as_me: WARNING: $2: section \"Present But Cannot Be Compiled\"" >&2;} { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: $2: proceeding with the compiler's result" >&5 $as_echo "$as_me: WARNING: $2: proceeding with the compiler's result" >&2;} ;; esac { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $2" >&5 $as_echo_n "checking for $2... " >&6; } if eval \${$3+:} false; then : $as_echo_n "(cached) " >&6 else eval "$3=\$ac_header_compiler" fi eval ac_res=\$$3 { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_res" >&5 $as_echo "$ac_res" >&6; } fi eval $as_lineno_stack; ${as_lineno_stack:+:} unset as_lineno } # ac_fn_c_check_header_mongrel # ac_fn_c_check_header_compile LINENO HEADER VAR INCLUDES # ------------------------------------------------------- # Tests whether HEADER exists and can be compiled using the include files in # INCLUDES, setting the cache variable VAR accordingly. ac_fn_c_check_header_compile () { as_lineno=${as_lineno-"$1"} as_lineno_stack=as_lineno_stack=$as_lineno_stack { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $2" >&5 $as_echo_n "checking for $2... " >&6; } if eval \${$3+:} false; then : $as_echo_n "(cached) " >&6 else cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ $4 #include <$2> _ACEOF if ac_fn_c_try_compile "$LINENO"; then : eval "$3=yes" else eval "$3=no" fi rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext fi eval ac_res=\$$3 { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_res" >&5 $as_echo "$ac_res" >&6; } eval $as_lineno_stack; ${as_lineno_stack:+:} unset as_lineno } # ac_fn_c_check_header_compile cat >config.log <<_ACEOF This file contains any messages produced by compilers while running configure, to aid debugging if configure makes a mistake. It was created by $as_me, which was generated by GNU Autoconf 2.68. Invocation command line was $ $0 $@ _ACEOF exec 5>>config.log { cat <<_ASUNAME ## --------- ## ## Platform. ## ## --------- ## hostname = `(hostname || uname -n) 2>/dev/null | sed 1q` uname -m = `(uname -m) 2>/dev/null || echo unknown` uname -r = `(uname -r) 2>/dev/null || echo unknown` uname -s = `(uname -s) 2>/dev/null || echo unknown` uname -v = `(uname -v) 2>/dev/null || echo unknown` /usr/bin/uname -p = `(/usr/bin/uname -p) 2>/dev/null || echo unknown` /bin/uname -X = `(/bin/uname -X) 2>/dev/null || echo unknown` /bin/arch = `(/bin/arch) 2>/dev/null || echo unknown` /usr/bin/arch -k = `(/usr/bin/arch -k) 2>/dev/null || echo unknown` /usr/convex/getsysinfo = `(/usr/convex/getsysinfo) 2>/dev/null || echo unknown` /usr/bin/hostinfo = `(/usr/bin/hostinfo) 2>/dev/null || echo unknown` /bin/machine = `(/bin/machine) 2>/dev/null || echo unknown` /usr/bin/oslevel = `(/usr/bin/oslevel) 2>/dev/null || echo unknown` /bin/universe = `(/bin/universe) 2>/dev/null || echo unknown` _ASUNAME as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH do IFS=$as_save_IFS test -z "$as_dir" && as_dir=. $as_echo "PATH: $as_dir" done IFS=$as_save_IFS } >&5 cat >&5 <<_ACEOF ## ----------- ## ## Core tests. ## ## ----------- ## _ACEOF # Keep a trace of the command line. # Strip out --no-create and --no-recursion so they do not pile up. # Strip out --silent because we don't want to record it for future runs. # Also quote any args containing shell meta-characters. # Make two passes to allow for proper duplicate-argument suppression. ac_configure_args= ac_configure_args0= ac_configure_args1= ac_must_keep_next=false for ac_pass in 1 2 do for ac_arg do case $ac_arg in -no-create | --no-c* | -n | -no-recursion | --no-r*) continue ;; -q | -quiet | --quiet | --quie | --qui | --qu | --q \ | -silent | --silent | --silen | --sile | --sil) continue ;; *\'*) ac_arg=`$as_echo "$ac_arg" | sed "s/'/'\\\\\\\\''/g"` ;; esac case $ac_pass in 1) as_fn_append ac_configure_args0 " '$ac_arg'" ;; 2) as_fn_append ac_configure_args1 " '$ac_arg'" if test $ac_must_keep_next = true; then ac_must_keep_next=false # Got value, back to normal. else case $ac_arg in *=* | --config-cache | -C | -disable-* | --disable-* \ | -enable-* | --enable-* | -gas | --g* | -nfp | --nf* \ | -q | -quiet | --q* | -silent | --sil* | -v | -verb* \ | -with-* | --with-* | -without-* | --without-* | --x) case "$ac_configure_args0 " in "$ac_configure_args1"*" '$ac_arg' "* ) continue ;; esac ;; -* ) ac_must_keep_next=true ;; esac fi as_fn_append ac_configure_args " '$ac_arg'" ;; esac done done { ac_configure_args0=; unset ac_configure_args0;} { ac_configure_args1=; unset ac_configure_args1;} # When interrupted or exit'd, cleanup temporary files, and complete # config.log. We remove comments because anyway the quotes in there # would cause problems or look ugly. # WARNING: Use '\'' to represent an apostrophe within the trap. # WARNING: Do not start the trap code with a newline, due to a FreeBSD 4.0 bug. trap 'exit_status=$? # Save into config.log some information that might help in debugging. { echo $as_echo "## ---------------- ## ## Cache variables. ## ## ---------------- ##" echo # The following way of writing the cache mishandles newlines in values, ( for ac_var in `(set) 2>&1 | sed -n '\''s/^\([a-zA-Z_][a-zA-Z0-9_]*\)=.*/\1/p'\''`; do eval ac_val=\$$ac_var case $ac_val in #( *${as_nl}*) case $ac_var in #( *_cv_*) { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: cache variable $ac_var contains a newline" >&5 $as_echo "$as_me: WARNING: cache variable $ac_var contains a newline" >&2;} ;; esac case $ac_var in #( _ | IFS | as_nl) ;; #( BASH_ARGV | BASH_SOURCE) eval $ac_var= ;; #( *) { eval $ac_var=; unset $ac_var;} ;; esac ;; esac done (set) 2>&1 | case $as_nl`(ac_space='\'' '\''; set) 2>&1` in #( *${as_nl}ac_space=\ *) sed -n \ "s/'\''/'\''\\\\'\'''\''/g; s/^\\([_$as_cr_alnum]*_cv_[_$as_cr_alnum]*\\)=\\(.*\\)/\\1='\''\\2'\''/p" ;; #( *) sed -n "/^[_$as_cr_alnum]*_cv_[_$as_cr_alnum]*=/p" ;; esac | sort ) echo $as_echo "## ----------------- ## ## Output variables. ## ## ----------------- ##" echo for ac_var in $ac_subst_vars do eval ac_val=\$$ac_var case $ac_val in *\'\''*) ac_val=`$as_echo "$ac_val" | sed "s/'\''/'\''\\\\\\\\'\'''\''/g"`;; esac $as_echo "$ac_var='\''$ac_val'\''" done | sort echo if test -n "$ac_subst_files"; then $as_echo "## ------------------- ## ## File substitutions. ## ## ------------------- ##" echo for ac_var in $ac_subst_files do eval ac_val=\$$ac_var case $ac_val in *\'\''*) ac_val=`$as_echo "$ac_val" | sed "s/'\''/'\''\\\\\\\\'\'''\''/g"`;; esac $as_echo "$ac_var='\''$ac_val'\''" done | sort echo fi if test -s confdefs.h; then $as_echo "## ----------- ## ## confdefs.h. ## ## ----------- ##" echo cat confdefs.h echo fi test "$ac_signal" != 0 && $as_echo "$as_me: caught signal $ac_signal" $as_echo "$as_me: exit $exit_status" } >&5 rm -f core *.core core.conftest.* && rm -f -r conftest* confdefs* conf$$* $ac_clean_files && exit $exit_status ' 0 for ac_signal in 1 2 13 15; do trap 'ac_signal='$ac_signal'; as_fn_exit 1' $ac_signal done ac_signal=0 # confdefs.h avoids OS command line length limits that DEFS can exceed. rm -f -r conftest* confdefs.h $as_echo "/* confdefs.h */" > confdefs.h # Predefined preprocessor variables. cat >>confdefs.h <<_ACEOF #define PACKAGE_NAME "$PACKAGE_NAME" _ACEOF cat >>confdefs.h <<_ACEOF #define PACKAGE_TARNAME "$PACKAGE_TARNAME" _ACEOF cat >>confdefs.h <<_ACEOF #define PACKAGE_VERSION "$PACKAGE_VERSION" _ACEOF cat >>confdefs.h <<_ACEOF #define PACKAGE_STRING "$PACKAGE_STRING" _ACEOF cat >>confdefs.h <<_ACEOF #define PACKAGE_BUGREPORT "$PACKAGE_BUGREPORT" _ACEOF cat >>confdefs.h <<_ACEOF #define PACKAGE_URL "$PACKAGE_URL" _ACEOF # Let the site file select an alternate cache file if it wants to. # Prefer an explicitly selected file to automatically selected ones. ac_site_file1=NONE ac_site_file2=NONE if test -n "$CONFIG_SITE"; then # We do not want a PATH search for config.site. case $CONFIG_SITE in #(( -*) ac_site_file1=./$CONFIG_SITE;; */*) ac_site_file1=$CONFIG_SITE;; *) ac_site_file1=./$CONFIG_SITE;; esac elif test "x$prefix" != xNONE; then ac_site_file1=$prefix/share/config.site ac_site_file2=$prefix/etc/config.site else ac_site_file1=$ac_default_prefix/share/config.site ac_site_file2=$ac_default_prefix/etc/config.site fi for ac_site_file in "$ac_site_file1" "$ac_site_file2" do test "x$ac_site_file" = xNONE && continue if test /dev/null != "$ac_site_file" && test -r "$ac_site_file"; then { $as_echo "$as_me:${as_lineno-$LINENO}: loading site script $ac_site_file" >&5 $as_echo "$as_me: loading site script $ac_site_file" >&6;} sed 's/^/| /' "$ac_site_file" >&5 . "$ac_site_file" \ || { { $as_echo "$as_me:${as_lineno-$LINENO}: error: in \`$ac_pwd':" >&5 $as_echo "$as_me: error: in \`$ac_pwd':" >&2;} as_fn_error $? "failed to load site script $ac_site_file See \`config.log' for more details" "$LINENO" 5; } fi done if test -r "$cache_file"; then # Some versions of bash will fail to source /dev/null (special files # actually), so we avoid doing that. DJGPP emulates it as a regular file. if test /dev/null != "$cache_file" && test -f "$cache_file"; then { $as_echo "$as_me:${as_lineno-$LINENO}: loading cache $cache_file" >&5 $as_echo "$as_me: loading cache $cache_file" >&6;} case $cache_file in [\\/]* | ?:[\\/]* ) . "$cache_file";; *) . "./$cache_file";; esac fi else { $as_echo "$as_me:${as_lineno-$LINENO}: creating cache $cache_file" >&5 $as_echo "$as_me: creating cache $cache_file" >&6;} >$cache_file fi # Check that the precious variables saved in the cache have kept the same # value. ac_cache_corrupted=false for ac_var in $ac_precious_vars; do eval ac_old_set=\$ac_cv_env_${ac_var}_set eval ac_new_set=\$ac_env_${ac_var}_set eval ac_old_val=\$ac_cv_env_${ac_var}_value eval ac_new_val=\$ac_env_${ac_var}_value case $ac_old_set,$ac_new_set in set,) { $as_echo "$as_me:${as_lineno-$LINENO}: error: \`$ac_var' was set to \`$ac_old_val' in the previous run" >&5 $as_echo "$as_me: error: \`$ac_var' was set to \`$ac_old_val' in the previous run" >&2;} ac_cache_corrupted=: ;; ,set) { $as_echo "$as_me:${as_lineno-$LINENO}: error: \`$ac_var' was not set in the previous run" >&5 $as_echo "$as_me: error: \`$ac_var' was not set in the previous run" >&2;} ac_cache_corrupted=: ;; ,);; *) if test "x$ac_old_val" != "x$ac_new_val"; then # differences in whitespace do not lead to failure. ac_old_val_w=`echo x $ac_old_val` ac_new_val_w=`echo x $ac_new_val` if test "$ac_old_val_w" != "$ac_new_val_w"; then { $as_echo "$as_me:${as_lineno-$LINENO}: error: \`$ac_var' has changed since the previous run:" >&5 $as_echo "$as_me: error: \`$ac_var' has changed since the previous run:" >&2;} ac_cache_corrupted=: else { $as_echo "$as_me:${as_lineno-$LINENO}: warning: ignoring whitespace changes in \`$ac_var' since the previous run:" >&5 $as_echo "$as_me: warning: ignoring whitespace changes in \`$ac_var' since the previous run:" >&2;} eval $ac_var=\$ac_old_val fi { $as_echo "$as_me:${as_lineno-$LINENO}: former value: \`$ac_old_val'" >&5 $as_echo "$as_me: former value: \`$ac_old_val'" >&2;} { $as_echo "$as_me:${as_lineno-$LINENO}: current value: \`$ac_new_val'" >&5 $as_echo "$as_me: current value: \`$ac_new_val'" >&2;} fi;; esac # Pass precious variables to config.status. if test "$ac_new_set" = set; then case $ac_new_val in *\'*) ac_arg=$ac_var=`$as_echo "$ac_new_val" | sed "s/'/'\\\\\\\\''/g"` ;; *) ac_arg=$ac_var=$ac_new_val ;; esac case " $ac_configure_args " in *" '$ac_arg' "*) ;; # Avoid dups. Use of quotes ensures accuracy. *) as_fn_append ac_configure_args " '$ac_arg'" ;; esac fi done if $ac_cache_corrupted; then { $as_echo "$as_me:${as_lineno-$LINENO}: error: in \`$ac_pwd':" >&5 $as_echo "$as_me: error: in \`$ac_pwd':" >&2;} { $as_echo "$as_me:${as_lineno-$LINENO}: error: changes in the environment can compromise the build" >&5 $as_echo "$as_me: error: changes in the environment can compromise the build" >&2;} as_fn_error $? "run \`make distclean' and/or \`rm $cache_file' and start over" "$LINENO" 5 fi ## -------------------- ## ## Main body of script. ## ## -------------------- ## ac_ext=c ac_cpp='$CPP $CPPFLAGS' ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' ac_compiler_gnu=$ac_cv_c_compiler_gnu am__api_version='1.11' ac_aux_dir= for ac_dir in "$srcdir" "$srcdir/.." "$srcdir/../.."; do if test -f "$ac_dir/install-sh"; then ac_aux_dir=$ac_dir ac_install_sh="$ac_aux_dir/install-sh -c" break elif test -f "$ac_dir/install.sh"; then ac_aux_dir=$ac_dir ac_install_sh="$ac_aux_dir/install.sh -c" break elif test -f "$ac_dir/shtool"; then ac_aux_dir=$ac_dir ac_install_sh="$ac_aux_dir/shtool install -c" break fi done if test -z "$ac_aux_dir"; then as_fn_error $? "cannot find install-sh, install.sh, or shtool in \"$srcdir\" \"$srcdir/..\" \"$srcdir/../..\"" "$LINENO" 5 fi # These three variables are undocumented and unsupported, # and are intended to be withdrawn in a future Autoconf release. # They can cause serious problems if a builder's source tree is in a directory # whose full name contains unusual characters. ac_config_guess="$SHELL $ac_aux_dir/config.guess" # Please don't use this var. ac_config_sub="$SHELL $ac_aux_dir/config.sub" # Please don't use this var. ac_configure="$SHELL $ac_aux_dir/configure" # Please don't use this var. # Find a good install program. We prefer a C program (faster), # so one script is as good as another. But avoid the broken or # incompatible versions: # SysV /etc/install, /usr/sbin/install # SunOS /usr/etc/install # IRIX /sbin/install # AIX /bin/install # AmigaOS /C/install, which installs bootblocks on floppy discs # AIX 4 /usr/bin/installbsd, which doesn't work without a -g flag # AFS /usr/afsws/bin/install, which mishandles nonexistent args # SVR4 /usr/ucb/install, which tries to use the nonexistent group "staff" # OS/2's system install, which has a completely different semantic # ./install, which can be erroneously created by make from ./install.sh. # Reject install programs that cannot install multiple files. { $as_echo "$as_me:${as_lineno-$LINENO}: checking for a BSD-compatible install" >&5 $as_echo_n "checking for a BSD-compatible install... " >&6; } if test -z "$INSTALL"; then if ${ac_cv_path_install+:} false; then : $as_echo_n "(cached) " >&6 else as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH do IFS=$as_save_IFS test -z "$as_dir" && as_dir=. # Account for people who put trailing slashes in PATH elements. case $as_dir/ in #(( ./ | .// | /[cC]/* | \ /etc/* | /usr/sbin/* | /usr/etc/* | /sbin/* | /usr/afsws/bin/* | \ ?:[\\/]os2[\\/]install[\\/]* | ?:[\\/]OS2[\\/]INSTALL[\\/]* | \ /usr/ucb/* ) ;; *) # OSF1 and SCO ODT 3.0 have their own names for install. # Don't use installbsd from OSF since it installs stuff as root # by default. for ac_prog in ginstall scoinst install; do for ac_exec_ext in '' $ac_executable_extensions; do if { test -f "$as_dir/$ac_prog$ac_exec_ext" && $as_test_x "$as_dir/$ac_prog$ac_exec_ext"; }; then if test $ac_prog = install && grep dspmsg "$as_dir/$ac_prog$ac_exec_ext" >/dev/null 2>&1; then # AIX install. It has an incompatible calling convention. : elif test $ac_prog = install && grep pwplus "$as_dir/$ac_prog$ac_exec_ext" >/dev/null 2>&1; then # program-specific install script used by HP pwplus--don't use. : else rm -rf conftest.one conftest.two conftest.dir echo one > conftest.one echo two > conftest.two mkdir conftest.dir if "$as_dir/$ac_prog$ac_exec_ext" -c conftest.one conftest.two "`pwd`/conftest.dir" && test -s conftest.one && test -s conftest.two && test -s conftest.dir/conftest.one && test -s conftest.dir/conftest.two then ac_cv_path_install="$as_dir/$ac_prog$ac_exec_ext -c" break 3 fi fi fi done done ;; esac done IFS=$as_save_IFS rm -rf conftest.one conftest.two conftest.dir fi if test "${ac_cv_path_install+set}" = set; then INSTALL=$ac_cv_path_install else # As a last resort, use the slow shell script. Don't cache a # value for INSTALL within a source directory, because that will # break other packages using the cache if that directory is # removed, or if the value is a relative name. INSTALL=$ac_install_sh fi fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $INSTALL" >&5 $as_echo "$INSTALL" >&6; } # Use test -z because SunOS4 sh mishandles braces in ${var-val}. # It thinks the first close brace ends the variable substitution. test -z "$INSTALL_PROGRAM" && INSTALL_PROGRAM='${INSTALL}' test -z "$INSTALL_SCRIPT" && INSTALL_SCRIPT='${INSTALL}' test -z "$INSTALL_DATA" && INSTALL_DATA='${INSTALL} -m 644' { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether build environment is sane" >&5 $as_echo_n "checking whether build environment is sane... " >&6; } # Just in case sleep 1 echo timestamp > conftest.file # Reject unsafe characters in $srcdir or the absolute working directory # name. Accept space and tab only in the latter. am_lf=' ' case `pwd` in *[\\\"\#\$\&\'\`$am_lf]*) as_fn_error $? "unsafe absolute working directory name" "$LINENO" 5;; esac case $srcdir in *[\\\"\#\$\&\'\`$am_lf\ \ ]*) as_fn_error $? "unsafe srcdir value: \`$srcdir'" "$LINENO" 5;; esac # Do `set' in a subshell so we don't clobber the current shell's # arguments. Must try -L first in case configure is actually a # symlink; some systems play weird games with the mod time of symlinks # (eg FreeBSD returns the mod time of the symlink's containing # directory). if ( set X `ls -Lt "$srcdir/configure" conftest.file 2> /dev/null` if test "$*" = "X"; then # -L didn't work. set X `ls -t "$srcdir/configure" conftest.file` fi rm -f conftest.file if test "$*" != "X $srcdir/configure conftest.file" \ && test "$*" != "X conftest.file $srcdir/configure"; then # If neither matched, then we have a broken ls. This can happen # if, for instance, CONFIG_SHELL is bash and it inherits a # broken ls alias from the environment. This has actually # happened. Such a system could not be considered "sane". as_fn_error $? "ls -t appears to fail. Make sure there is not a broken alias in your environment" "$LINENO" 5 fi test "$2" = conftest.file ) then # Ok. : else as_fn_error $? "newly created file is older than distributed files! Check your system clock" "$LINENO" 5 fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: yes" >&5 $as_echo "yes" >&6; } test "$program_prefix" != NONE && program_transform_name="s&^&$program_prefix&;$program_transform_name" # Use a double $ so make ignores it. test "$program_suffix" != NONE && program_transform_name="s&\$&$program_suffix&;$program_transform_name" # Double any \ or $. # By default was `s,x,x', remove it if useless. ac_script='s/[\\$]/&&/g;s/;s,x,x,$//' program_transform_name=`$as_echo "$program_transform_name" | sed "$ac_script"` # expand $ac_aux_dir to an absolute path am_aux_dir=`cd $ac_aux_dir && pwd` if test x"${MISSING+set}" != xset; then case $am_aux_dir in *\ * | *\ *) MISSING="\${SHELL} \"$am_aux_dir/missing\"" ;; *) MISSING="\${SHELL} $am_aux_dir/missing" ;; esac fi # Use eval to expand $SHELL if eval "$MISSING --run true"; then am_missing_run="$MISSING --run " else am_missing_run= { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: \`missing' script is too old or missing" >&5 $as_echo "$as_me: WARNING: \`missing' script is too old or missing" >&2;} fi if test x"${install_sh}" != xset; then case $am_aux_dir in *\ * | *\ *) install_sh="\${SHELL} '$am_aux_dir/install-sh'" ;; *) install_sh="\${SHELL} $am_aux_dir/install-sh" esac fi # Installed binaries are usually stripped using `strip' when the user # run `make install-strip'. However `strip' might not be the right # tool to use in cross-compilation environments, therefore Automake # will honor the `STRIP' environment variable to overrule this program. if test "$cross_compiling" != no; then if test -n "$ac_tool_prefix"; then # Extract the first word of "${ac_tool_prefix}strip", so it can be a program name with args. set dummy ${ac_tool_prefix}strip; ac_word=$2 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 $as_echo_n "checking for $ac_word... " >&6; } if ${ac_cv_prog_STRIP+:} false; then : $as_echo_n "(cached) " >&6 else if test -n "$STRIP"; then ac_cv_prog_STRIP="$STRIP" # Let the user override the test. else as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH do IFS=$as_save_IFS test -z "$as_dir" && as_dir=. for ac_exec_ext in '' $ac_executable_extensions; do if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then ac_cv_prog_STRIP="${ac_tool_prefix}strip" $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 break 2 fi done done IFS=$as_save_IFS fi fi STRIP=$ac_cv_prog_STRIP if test -n "$STRIP"; then { $as_echo "$as_me:${as_lineno-$LINENO}: result: $STRIP" >&5 $as_echo "$STRIP" >&6; } else { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } fi fi if test -z "$ac_cv_prog_STRIP"; then ac_ct_STRIP=$STRIP # Extract the first word of "strip", so it can be a program name with args. set dummy strip; ac_word=$2 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 $as_echo_n "checking for $ac_word... " >&6; } if ${ac_cv_prog_ac_ct_STRIP+:} false; then : $as_echo_n "(cached) " >&6 else if test -n "$ac_ct_STRIP"; then ac_cv_prog_ac_ct_STRIP="$ac_ct_STRIP" # Let the user override the test. else as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH do IFS=$as_save_IFS test -z "$as_dir" && as_dir=. for ac_exec_ext in '' $ac_executable_extensions; do if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then ac_cv_prog_ac_ct_STRIP="strip" $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 break 2 fi done done IFS=$as_save_IFS fi fi ac_ct_STRIP=$ac_cv_prog_ac_ct_STRIP if test -n "$ac_ct_STRIP"; then { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_ct_STRIP" >&5 $as_echo "$ac_ct_STRIP" >&6; } else { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } fi if test "x$ac_ct_STRIP" = x; then STRIP=":" else case $cross_compiling:$ac_tool_warned in yes:) { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: using cross tools not prefixed with host triplet" >&5 $as_echo "$as_me: WARNING: using cross tools not prefixed with host triplet" >&2;} ac_tool_warned=yes ;; esac STRIP=$ac_ct_STRIP fi else STRIP="$ac_cv_prog_STRIP" fi fi INSTALL_STRIP_PROGRAM="\$(install_sh) -c -s" { $as_echo "$as_me:${as_lineno-$LINENO}: checking for a thread-safe mkdir -p" >&5 $as_echo_n "checking for a thread-safe mkdir -p... " >&6; } if test -z "$MKDIR_P"; then if ${ac_cv_path_mkdir+:} false; then : $as_echo_n "(cached) " >&6 else as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH$PATH_SEPARATOR/opt/sfw/bin do IFS=$as_save_IFS test -z "$as_dir" && as_dir=. for ac_prog in mkdir gmkdir; do for ac_exec_ext in '' $ac_executable_extensions; do { test -f "$as_dir/$ac_prog$ac_exec_ext" && $as_test_x "$as_dir/$ac_prog$ac_exec_ext"; } || continue case `"$as_dir/$ac_prog$ac_exec_ext" --version 2>&1` in #( 'mkdir (GNU coreutils) '* | \ 'mkdir (coreutils) '* | \ 'mkdir (fileutils) '4.1*) ac_cv_path_mkdir=$as_dir/$ac_prog$ac_exec_ext break 3;; esac done done done IFS=$as_save_IFS fi test -d ./--version && rmdir ./--version if test "${ac_cv_path_mkdir+set}" = set; then MKDIR_P="$ac_cv_path_mkdir -p" else # As a last resort, use the slow shell script. Don't cache a # value for MKDIR_P within a source directory, because that will # break other packages using the cache if that directory is # removed, or if the value is a relative name. MKDIR_P="$ac_install_sh -d" fi fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $MKDIR_P" >&5 $as_echo "$MKDIR_P" >&6; } mkdir_p="$MKDIR_P" case $mkdir_p in [\\/$]* | ?:[\\/]*) ;; */*) mkdir_p="\$(top_builddir)/$mkdir_p" ;; esac for ac_prog in gawk mawk nawk awk do # Extract the first word of "$ac_prog", so it can be a program name with args. set dummy $ac_prog; ac_word=$2 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 $as_echo_n "checking for $ac_word... " >&6; } if ${ac_cv_prog_AWK+:} false; then : $as_echo_n "(cached) " >&6 else if test -n "$AWK"; then ac_cv_prog_AWK="$AWK" # Let the user override the test. else as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH do IFS=$as_save_IFS test -z "$as_dir" && as_dir=. for ac_exec_ext in '' $ac_executable_extensions; do if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then ac_cv_prog_AWK="$ac_prog" $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 break 2 fi done done IFS=$as_save_IFS fi fi AWK=$ac_cv_prog_AWK if test -n "$AWK"; then { $as_echo "$as_me:${as_lineno-$LINENO}: result: $AWK" >&5 $as_echo "$AWK" >&6; } else { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } fi test -n "$AWK" && break done { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether ${MAKE-make} sets \$(MAKE)" >&5 $as_echo_n "checking whether ${MAKE-make} sets \$(MAKE)... " >&6; } set x ${MAKE-make} ac_make=`$as_echo "$2" | sed 's/+/p/g; s/[^a-zA-Z0-9_]/_/g'` if eval \${ac_cv_prog_make_${ac_make}_set+:} false; then : $as_echo_n "(cached) " >&6 else cat >conftest.make <<\_ACEOF SHELL = /bin/sh all: @echo '@@@%%%=$(MAKE)=@@@%%%' _ACEOF # GNU make sometimes prints "make[1]: Entering ...", which would confuse us. case `${MAKE-make} -f conftest.make 2>/dev/null` in *@@@%%%=?*=@@@%%%*) eval ac_cv_prog_make_${ac_make}_set=yes;; *) eval ac_cv_prog_make_${ac_make}_set=no;; esac rm -f conftest.make fi if eval test \$ac_cv_prog_make_${ac_make}_set = yes; then { $as_echo "$as_me:${as_lineno-$LINENO}: result: yes" >&5 $as_echo "yes" >&6; } SET_MAKE= else { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } SET_MAKE="MAKE=${MAKE-make}" fi rm -rf .tst 2>/dev/null mkdir .tst 2>/dev/null if test -d .tst; then am__leading_dot=. else am__leading_dot=_ fi rmdir .tst 2>/dev/null if test "`cd $srcdir && pwd`" != "`pwd`"; then # Use -I$(srcdir) only when $(srcdir) != ., so that make's output # is not polluted with repeated "-I." am__isrc=' -I$(srcdir)' # test to see if srcdir already configured if test -f $srcdir/config.status; then as_fn_error $? "source directory already configured; run \"make distclean\" there first" "$LINENO" 5 fi fi # test whether we have cygpath if test -z "$CYGPATH_W"; then if (cygpath --version) >/dev/null 2>/dev/null; then CYGPATH_W='cygpath -w' else CYGPATH_W=echo fi fi # Define the identity of the package. PACKAGE=iok VERSION=2.1.3 cat >>confdefs.h <<_ACEOF #define PACKAGE "$PACKAGE" _ACEOF cat >>confdefs.h <<_ACEOF #define VERSION "$VERSION" _ACEOF # Some tools Automake needs. ACLOCAL=${ACLOCAL-"${am_missing_run}aclocal-${am__api_version}"} AUTOCONF=${AUTOCONF-"${am_missing_run}autoconf"} AUTOMAKE=${AUTOMAKE-"${am_missing_run}automake-${am__api_version}"} AUTOHEADER=${AUTOHEADER-"${am_missing_run}autoheader"} MAKEINFO=${MAKEINFO-"${am_missing_run}makeinfo"} # We need awk for the "check" target. The system "awk" is bad on # some platforms. # Always define AMTAR for backward compatibility. Yes, it's still used # in the wild :-( We should find a proper way to deprecate it ... AMTAR='$${TAR-tar}' am__tar='$${TAR-tar} chof - "$$tardir"' am__untar='$${TAR-tar} xf -' ac_config_headers="$ac_config_headers config.h" { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether to enable maintainer-specific portions of Makefiles" >&5 $as_echo_n "checking whether to enable maintainer-specific portions of Makefiles... " >&6; } # Check whether --enable-maintainer-mode was given. if test "${enable_maintainer_mode+set}" = set; then : enableval=$enable_maintainer_mode; USE_MAINTAINER_MODE=$enableval else USE_MAINTAINER_MODE=no fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $USE_MAINTAINER_MODE" >&5 $as_echo "$USE_MAINTAINER_MODE" >&6; } if test $USE_MAINTAINER_MODE = yes; then MAINTAINER_MODE_TRUE= MAINTAINER_MODE_FALSE='#' else MAINTAINER_MODE_TRUE='#' MAINTAINER_MODE_FALSE= fi MAINT=$MAINTAINER_MODE_TRUE DEPDIR="${am__leading_dot}deps" ac_config_commands="$ac_config_commands depfiles" am_make=${MAKE-make} cat > confinc << 'END' am__doit: @echo this is the am__doit target .PHONY: am__doit END # If we don't find an include directive, just comment out the code. { $as_echo "$as_me:${as_lineno-$LINENO}: checking for style of include used by $am_make" >&5 $as_echo_n "checking for style of include used by $am_make... " >&6; } am__include="#" am__quote= _am_result=none # First try GNU make style include. echo "include confinc" > confmf # Ignore all kinds of additional output from `make'. case `$am_make -s -f confmf 2> /dev/null` in #( *the\ am__doit\ target*) am__include=include am__quote= _am_result=GNU ;; esac # Now try BSD make style include. if test "$am__include" = "#"; then echo '.include "confinc"' > confmf case `$am_make -s -f confmf 2> /dev/null` in #( *the\ am__doit\ target*) am__include=.include am__quote="\"" _am_result=BSD ;; esac fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $_am_result" >&5 $as_echo "$_am_result" >&6; } rm -f confinc confmf # Check whether --enable-dependency-tracking was given. if test "${enable_dependency_tracking+set}" = set; then : enableval=$enable_dependency_tracking; fi if test "x$enable_dependency_tracking" != xno; then am_depcomp="$ac_aux_dir/depcomp" AMDEPBACKSLASH='\' am__nodep='_no' fi if test "x$enable_dependency_tracking" != xno; then AMDEP_TRUE= AMDEP_FALSE='#' else AMDEP_TRUE='#' AMDEP_FALSE= fi ac_ext=c ac_cpp='$CPP $CPPFLAGS' ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' ac_compiler_gnu=$ac_cv_c_compiler_gnu if test -n "$ac_tool_prefix"; then # Extract the first word of "${ac_tool_prefix}gcc", so it can be a program name with args. set dummy ${ac_tool_prefix}gcc; ac_word=$2 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 $as_echo_n "checking for $ac_word... " >&6; } if ${ac_cv_prog_CC+:} false; then : $as_echo_n "(cached) " >&6 else if test -n "$CC"; then ac_cv_prog_CC="$CC" # Let the user override the test. else as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH do IFS=$as_save_IFS test -z "$as_dir" && as_dir=. for ac_exec_ext in '' $ac_executable_extensions; do if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then ac_cv_prog_CC="${ac_tool_prefix}gcc" $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 break 2 fi done done IFS=$as_save_IFS fi fi CC=$ac_cv_prog_CC if test -n "$CC"; then { $as_echo "$as_me:${as_lineno-$LINENO}: result: $CC" >&5 $as_echo "$CC" >&6; } else { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } fi fi if test -z "$ac_cv_prog_CC"; then ac_ct_CC=$CC # Extract the first word of "gcc", so it can be a program name with args. set dummy gcc; ac_word=$2 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 $as_echo_n "checking for $ac_word... " >&6; } if ${ac_cv_prog_ac_ct_CC+:} false; then : $as_echo_n "(cached) " >&6 else if test -n "$ac_ct_CC"; then ac_cv_prog_ac_ct_CC="$ac_ct_CC" # Let the user override the test. else as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH do IFS=$as_save_IFS test -z "$as_dir" && as_dir=. for ac_exec_ext in '' $ac_executable_extensions; do if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then ac_cv_prog_ac_ct_CC="gcc" $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 break 2 fi done done IFS=$as_save_IFS fi fi ac_ct_CC=$ac_cv_prog_ac_ct_CC if test -n "$ac_ct_CC"; then { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_ct_CC" >&5 $as_echo "$ac_ct_CC" >&6; } else { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } fi if test "x$ac_ct_CC" = x; then CC="" else case $cross_compiling:$ac_tool_warned in yes:) { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: using cross tools not prefixed with host triplet" >&5 $as_echo "$as_me: WARNING: using cross tools not prefixed with host triplet" >&2;} ac_tool_warned=yes ;; esac CC=$ac_ct_CC fi else CC="$ac_cv_prog_CC" fi if test -z "$CC"; then if test -n "$ac_tool_prefix"; then # Extract the first word of "${ac_tool_prefix}cc", so it can be a program name with args. set dummy ${ac_tool_prefix}cc; ac_word=$2 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 $as_echo_n "checking for $ac_word... " >&6; } if ${ac_cv_prog_CC+:} false; then : $as_echo_n "(cached) " >&6 else if test -n "$CC"; then ac_cv_prog_CC="$CC" # Let the user override the test. else as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH do IFS=$as_save_IFS test -z "$as_dir" && as_dir=. for ac_exec_ext in '' $ac_executable_extensions; do if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then ac_cv_prog_CC="${ac_tool_prefix}cc" $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 break 2 fi done done IFS=$as_save_IFS fi fi CC=$ac_cv_prog_CC if test -n "$CC"; then { $as_echo "$as_me:${as_lineno-$LINENO}: result: $CC" >&5 $as_echo "$CC" >&6; } else { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } fi fi fi if test -z "$CC"; then # Extract the first word of "cc", so it can be a program name with args. set dummy cc; ac_word=$2 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 $as_echo_n "checking for $ac_word... " >&6; } if ${ac_cv_prog_CC+:} false; then : $as_echo_n "(cached) " >&6 else if test -n "$CC"; then ac_cv_prog_CC="$CC" # Let the user override the test. else ac_prog_rejected=no as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH do IFS=$as_save_IFS test -z "$as_dir" && as_dir=. for ac_exec_ext in '' $ac_executable_extensions; do if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then if test "$as_dir/$ac_word$ac_exec_ext" = "/usr/ucb/cc"; then ac_prog_rejected=yes continue fi ac_cv_prog_CC="cc" $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 break 2 fi done done IFS=$as_save_IFS if test $ac_prog_rejected = yes; then # We found a bogon in the path, so make sure we never use it. set dummy $ac_cv_prog_CC shift if test $# != 0; then # We chose a different compiler from the bogus one. # However, it has the same basename, so the bogon will be chosen # first if we set CC to just the basename; use the full file name. shift ac_cv_prog_CC="$as_dir/$ac_word${1+' '}$@" fi fi fi fi CC=$ac_cv_prog_CC if test -n "$CC"; then { $as_echo "$as_me:${as_lineno-$LINENO}: result: $CC" >&5 $as_echo "$CC" >&6; } else { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } fi fi if test -z "$CC"; then if test -n "$ac_tool_prefix"; then for ac_prog in cl.exe do # Extract the first word of "$ac_tool_prefix$ac_prog", so it can be a program name with args. set dummy $ac_tool_prefix$ac_prog; ac_word=$2 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 $as_echo_n "checking for $ac_word... " >&6; } if ${ac_cv_prog_CC+:} false; then : $as_echo_n "(cached) " >&6 else if test -n "$CC"; then ac_cv_prog_CC="$CC" # Let the user override the test. else as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH do IFS=$as_save_IFS test -z "$as_dir" && as_dir=. for ac_exec_ext in '' $ac_executable_extensions; do if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then ac_cv_prog_CC="$ac_tool_prefix$ac_prog" $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 break 2 fi done done IFS=$as_save_IFS fi fi CC=$ac_cv_prog_CC if test -n "$CC"; then { $as_echo "$as_me:${as_lineno-$LINENO}: result: $CC" >&5 $as_echo "$CC" >&6; } else { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } fi test -n "$CC" && break done fi if test -z "$CC"; then ac_ct_CC=$CC for ac_prog in cl.exe do # Extract the first word of "$ac_prog", so it can be a program name with args. set dummy $ac_prog; ac_word=$2 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 $as_echo_n "checking for $ac_word... " >&6; } if ${ac_cv_prog_ac_ct_CC+:} false; then : $as_echo_n "(cached) " >&6 else if test -n "$ac_ct_CC"; then ac_cv_prog_ac_ct_CC="$ac_ct_CC" # Let the user override the test. else as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH do IFS=$as_save_IFS test -z "$as_dir" && as_dir=. for ac_exec_ext in '' $ac_executable_extensions; do if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then ac_cv_prog_ac_ct_CC="$ac_prog" $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 break 2 fi done done IFS=$as_save_IFS fi fi ac_ct_CC=$ac_cv_prog_ac_ct_CC if test -n "$ac_ct_CC"; then { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_ct_CC" >&5 $as_echo "$ac_ct_CC" >&6; } else { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } fi test -n "$ac_ct_CC" && break done if test "x$ac_ct_CC" = x; then CC="" else case $cross_compiling:$ac_tool_warned in yes:) { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: using cross tools not prefixed with host triplet" >&5 $as_echo "$as_me: WARNING: using cross tools not prefixed with host triplet" >&2;} ac_tool_warned=yes ;; esac CC=$ac_ct_CC fi fi fi test -z "$CC" && { { $as_echo "$as_me:${as_lineno-$LINENO}: error: in \`$ac_pwd':" >&5 $as_echo "$as_me: error: in \`$ac_pwd':" >&2;} as_fn_error $? "no acceptable C compiler found in \$PATH See \`config.log' for more details" "$LINENO" 5; } # Provide some information about the compiler. $as_echo "$as_me:${as_lineno-$LINENO}: checking for C compiler version" >&5 set X $ac_compile ac_compiler=$2 for ac_option in --version -v -V -qversion; do { { ac_try="$ac_compiler $ac_option >&5" case "(($ac_try" in *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; *) ac_try_echo=$ac_try;; esac eval ac_try_echo="\"\$as_me:${as_lineno-$LINENO}: $ac_try_echo\"" $as_echo "$ac_try_echo"; } >&5 (eval "$ac_compiler $ac_option >&5") 2>conftest.err ac_status=$? if test -s conftest.err; then sed '10a\ ... rest of stderr output deleted ... 10q' conftest.err >conftest.er1 cat conftest.er1 >&5 fi rm -f conftest.er1 conftest.err $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 test $ac_status = 0; } done cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ int main () { ; return 0; } _ACEOF ac_clean_files_save=$ac_clean_files ac_clean_files="$ac_clean_files a.out a.out.dSYM a.exe b.out" # Try to create an executable without -o first, disregard a.out. # It will help us diagnose broken compilers, and finding out an intuition # of exeext. { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether the C compiler works" >&5 $as_echo_n "checking whether the C compiler works... " >&6; } ac_link_default=`$as_echo "$ac_link" | sed 's/ -o *conftest[^ ]*//'` # The possible output files: ac_files="a.out conftest.exe conftest a.exe a_out.exe b.out conftest.*" ac_rmfiles= for ac_file in $ac_files do case $ac_file in *.$ac_ext | *.xcoff | *.tds | *.d | *.pdb | *.xSYM | *.bb | *.bbg | *.map | *.inf | *.dSYM | *.o | *.obj ) ;; * ) ac_rmfiles="$ac_rmfiles $ac_file";; esac done rm -f $ac_rmfiles if { { ac_try="$ac_link_default" case "(($ac_try" in *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; *) ac_try_echo=$ac_try;; esac eval ac_try_echo="\"\$as_me:${as_lineno-$LINENO}: $ac_try_echo\"" $as_echo "$ac_try_echo"; } >&5 (eval "$ac_link_default") 2>&5 ac_status=$? $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 test $ac_status = 0; }; then : # Autoconf-2.13 could set the ac_cv_exeext variable to `no'. # So ignore a value of `no', otherwise this would lead to `EXEEXT = no' # in a Makefile. We should not override ac_cv_exeext if it was cached, # so that the user can short-circuit this test for compilers unknown to # Autoconf. for ac_file in $ac_files '' do test -f "$ac_file" || continue case $ac_file in *.$ac_ext | *.xcoff | *.tds | *.d | *.pdb | *.xSYM | *.bb | *.bbg | *.map | *.inf | *.dSYM | *.o | *.obj ) ;; [ab].out ) # We found the default executable, but exeext='' is most # certainly right. break;; *.* ) if test "${ac_cv_exeext+set}" = set && test "$ac_cv_exeext" != no; then :; else ac_cv_exeext=`expr "$ac_file" : '[^.]*\(\..*\)'` fi # We set ac_cv_exeext here because the later test for it is not # safe: cross compilers may not add the suffix if given an `-o' # argument, so we may need to know it at that point already. # Even if this section looks crufty: it has the advantage of # actually working. break;; * ) break;; esac done test "$ac_cv_exeext" = no && ac_cv_exeext= else ac_file='' fi if test -z "$ac_file"; then : { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } $as_echo "$as_me: failed program was:" >&5 sed 's/^/| /' conftest.$ac_ext >&5 { { $as_echo "$as_me:${as_lineno-$LINENO}: error: in \`$ac_pwd':" >&5 $as_echo "$as_me: error: in \`$ac_pwd':" >&2;} as_fn_error 77 "C compiler cannot create executables See \`config.log' for more details" "$LINENO" 5; } else { $as_echo "$as_me:${as_lineno-$LINENO}: result: yes" >&5 $as_echo "yes" >&6; } fi { $as_echo "$as_me:${as_lineno-$LINENO}: checking for C compiler default output file name" >&5 $as_echo_n "checking for C compiler default output file name... " >&6; } { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_file" >&5 $as_echo "$ac_file" >&6; } ac_exeext=$ac_cv_exeext rm -f -r a.out a.out.dSYM a.exe conftest$ac_cv_exeext b.out ac_clean_files=$ac_clean_files_save { $as_echo "$as_me:${as_lineno-$LINENO}: checking for suffix of executables" >&5 $as_echo_n "checking for suffix of executables... " >&6; } if { { ac_try="$ac_link" case "(($ac_try" in *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; *) ac_try_echo=$ac_try;; esac eval ac_try_echo="\"\$as_me:${as_lineno-$LINENO}: $ac_try_echo\"" $as_echo "$ac_try_echo"; } >&5 (eval "$ac_link") 2>&5 ac_status=$? $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 test $ac_status = 0; }; then : # If both `conftest.exe' and `conftest' are `present' (well, observable) # catch `conftest.exe'. For instance with Cygwin, `ls conftest' will # work properly (i.e., refer to `conftest.exe'), while it won't with # `rm'. for ac_file in conftest.exe conftest conftest.*; do test -f "$ac_file" || continue case $ac_file in *.$ac_ext | *.xcoff | *.tds | *.d | *.pdb | *.xSYM | *.bb | *.bbg | *.map | *.inf | *.dSYM | *.o | *.obj ) ;; *.* ) ac_cv_exeext=`expr "$ac_file" : '[^.]*\(\..*\)'` break;; * ) break;; esac done else { { $as_echo "$as_me:${as_lineno-$LINENO}: error: in \`$ac_pwd':" >&5 $as_echo "$as_me: error: in \`$ac_pwd':" >&2;} as_fn_error $? "cannot compute suffix of executables: cannot compile and link See \`config.log' for more details" "$LINENO" 5; } fi rm -f conftest conftest$ac_cv_exeext { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_exeext" >&5 $as_echo "$ac_cv_exeext" >&6; } rm -f conftest.$ac_ext EXEEXT=$ac_cv_exeext ac_exeext=$EXEEXT cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ #include int main () { FILE *f = fopen ("conftest.out", "w"); return ferror (f) || fclose (f) != 0; ; return 0; } _ACEOF ac_clean_files="$ac_clean_files conftest.out" # Check that the compiler produces executables we can run. If not, either # the compiler is broken, or we cross compile. { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether we are cross compiling" >&5 $as_echo_n "checking whether we are cross compiling... " >&6; } if test "$cross_compiling" != yes; then { { ac_try="$ac_link" case "(($ac_try" in *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; *) ac_try_echo=$ac_try;; esac eval ac_try_echo="\"\$as_me:${as_lineno-$LINENO}: $ac_try_echo\"" $as_echo "$ac_try_echo"; } >&5 (eval "$ac_link") 2>&5 ac_status=$? $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 test $ac_status = 0; } if { ac_try='./conftest$ac_cv_exeext' { { case "(($ac_try" in *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; *) ac_try_echo=$ac_try;; esac eval ac_try_echo="\"\$as_me:${as_lineno-$LINENO}: $ac_try_echo\"" $as_echo "$ac_try_echo"; } >&5 (eval "$ac_try") 2>&5 ac_status=$? $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 test $ac_status = 0; }; }; then cross_compiling=no else if test "$cross_compiling" = maybe; then cross_compiling=yes else { { $as_echo "$as_me:${as_lineno-$LINENO}: error: in \`$ac_pwd':" >&5 $as_echo "$as_me: error: in \`$ac_pwd':" >&2;} as_fn_error $? "cannot run C compiled programs. If you meant to cross compile, use \`--host'. See \`config.log' for more details" "$LINENO" 5; } fi fi fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $cross_compiling" >&5 $as_echo "$cross_compiling" >&6; } rm -f conftest.$ac_ext conftest$ac_cv_exeext conftest.out ac_clean_files=$ac_clean_files_save { $as_echo "$as_me:${as_lineno-$LINENO}: checking for suffix of object files" >&5 $as_echo_n "checking for suffix of object files... " >&6; } if ${ac_cv_objext+:} false; then : $as_echo_n "(cached) " >&6 else cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ int main () { ; return 0; } _ACEOF rm -f conftest.o conftest.obj if { { ac_try="$ac_compile" case "(($ac_try" in *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; *) ac_try_echo=$ac_try;; esac eval ac_try_echo="\"\$as_me:${as_lineno-$LINENO}: $ac_try_echo\"" $as_echo "$ac_try_echo"; } >&5 (eval "$ac_compile") 2>&5 ac_status=$? $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 test $ac_status = 0; }; then : for ac_file in conftest.o conftest.obj conftest.*; do test -f "$ac_file" || continue; case $ac_file in *.$ac_ext | *.xcoff | *.tds | *.d | *.pdb | *.xSYM | *.bb | *.bbg | *.map | *.inf | *.dSYM ) ;; *) ac_cv_objext=`expr "$ac_file" : '.*\.\(.*\)'` break;; esac done else $as_echo "$as_me: failed program was:" >&5 sed 's/^/| /' conftest.$ac_ext >&5 { { $as_echo "$as_me:${as_lineno-$LINENO}: error: in \`$ac_pwd':" >&5 $as_echo "$as_me: error: in \`$ac_pwd':" >&2;} as_fn_error $? "cannot compute suffix of object files: cannot compile See \`config.log' for more details" "$LINENO" 5; } fi rm -f conftest.$ac_cv_objext conftest.$ac_ext fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_objext" >&5 $as_echo "$ac_cv_objext" >&6; } OBJEXT=$ac_cv_objext ac_objext=$OBJEXT { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether we are using the GNU C compiler" >&5 $as_echo_n "checking whether we are using the GNU C compiler... " >&6; } if ${ac_cv_c_compiler_gnu+:} false; then : $as_echo_n "(cached) " >&6 else cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ int main () { #ifndef __GNUC__ choke me #endif ; return 0; } _ACEOF if ac_fn_c_try_compile "$LINENO"; then : ac_compiler_gnu=yes else ac_compiler_gnu=no fi rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext ac_cv_c_compiler_gnu=$ac_compiler_gnu fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_c_compiler_gnu" >&5 $as_echo "$ac_cv_c_compiler_gnu" >&6; } if test $ac_compiler_gnu = yes; then GCC=yes else GCC= fi ac_test_CFLAGS=${CFLAGS+set} ac_save_CFLAGS=$CFLAGS { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether $CC accepts -g" >&5 $as_echo_n "checking whether $CC accepts -g... " >&6; } if ${ac_cv_prog_cc_g+:} false; then : $as_echo_n "(cached) " >&6 else ac_save_c_werror_flag=$ac_c_werror_flag ac_c_werror_flag=yes ac_cv_prog_cc_g=no CFLAGS="-g" cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ int main () { ; return 0; } _ACEOF if ac_fn_c_try_compile "$LINENO"; then : ac_cv_prog_cc_g=yes else CFLAGS="" cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ int main () { ; return 0; } _ACEOF if ac_fn_c_try_compile "$LINENO"; then : else ac_c_werror_flag=$ac_save_c_werror_flag CFLAGS="-g" cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ int main () { ; return 0; } _ACEOF if ac_fn_c_try_compile "$LINENO"; then : ac_cv_prog_cc_g=yes fi rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext fi rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext fi rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext ac_c_werror_flag=$ac_save_c_werror_flag fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_prog_cc_g" >&5 $as_echo "$ac_cv_prog_cc_g" >&6; } if test "$ac_test_CFLAGS" = set; then CFLAGS=$ac_save_CFLAGS elif test $ac_cv_prog_cc_g = yes; then if test "$GCC" = yes; then CFLAGS="-g -O2" else CFLAGS="-g" fi else if test "$GCC" = yes; then CFLAGS="-O2" else CFLAGS= fi fi { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $CC option to accept ISO C89" >&5 $as_echo_n "checking for $CC option to accept ISO C89... " >&6; } if ${ac_cv_prog_cc_c89+:} false; then : $as_echo_n "(cached) " >&6 else ac_cv_prog_cc_c89=no ac_save_CC=$CC cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ #include #include #include #include /* Most of the following tests are stolen from RCS 5.7's src/conf.sh. */ struct buf { int x; }; FILE * (*rcsopen) (struct buf *, struct stat *, int); static char *e (p, i) char **p; int i; { return p[i]; } static char *f (char * (*g) (char **, int), char **p, ...) { char *s; va_list v; va_start (v,p); s = g (p, va_arg (v,int)); va_end (v); return s; } /* OSF 4.0 Compaq cc is some sort of almost-ANSI by default. It has function prototypes and stuff, but not '\xHH' hex character constants. These don't provoke an error unfortunately, instead are silently treated as 'x'. The following induces an error, until -std is added to get proper ANSI mode. Curiously '\x00'!='x' always comes out true, for an array size at least. It's necessary to write '\x00'==0 to get something that's true only with -std. */ int osf4_cc_array ['\x00' == 0 ? 1 : -1]; /* IBM C 6 for AIX is almost-ANSI by default, but it replaces macro parameters inside strings and character constants. */ #define FOO(x) 'x' int xlc6_cc_array[FOO(a) == 'x' ? 1 : -1]; int test (int i, double x); struct s1 {int (*f) (int a);}; struct s2 {int (*f) (double a);}; int pairnames (int, char **, FILE *(*)(struct buf *, struct stat *, int), int, int); int argc; char **argv; int main () { return f (e, argv, 0) != argv[0] || f (e, argv, 1) != argv[1]; ; return 0; } _ACEOF for ac_arg in '' -qlanglvl=extc89 -qlanglvl=ansi -std \ -Ae "-Aa -D_HPUX_SOURCE" "-Xc -D__EXTENSIONS__" do CC="$ac_save_CC $ac_arg" if ac_fn_c_try_compile "$LINENO"; then : ac_cv_prog_cc_c89=$ac_arg fi rm -f core conftest.err conftest.$ac_objext test "x$ac_cv_prog_cc_c89" != "xno" && break done rm -f conftest.$ac_ext CC=$ac_save_CC fi # AC_CACHE_VAL case "x$ac_cv_prog_cc_c89" in x) { $as_echo "$as_me:${as_lineno-$LINENO}: result: none needed" >&5 $as_echo "none needed" >&6; } ;; xno) { $as_echo "$as_me:${as_lineno-$LINENO}: result: unsupported" >&5 $as_echo "unsupported" >&6; } ;; *) CC="$CC $ac_cv_prog_cc_c89" { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_prog_cc_c89" >&5 $as_echo "$ac_cv_prog_cc_c89" >&6; } ;; esac if test "x$ac_cv_prog_cc_c89" != xno; then : fi ac_ext=c ac_cpp='$CPP $CPPFLAGS' ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' ac_compiler_gnu=$ac_cv_c_compiler_gnu depcc="$CC" am_compiler_list= { $as_echo "$as_me:${as_lineno-$LINENO}: checking dependency style of $depcc" >&5 $as_echo_n "checking dependency style of $depcc... " >&6; } if ${am_cv_CC_dependencies_compiler_type+:} false; then : $as_echo_n "(cached) " >&6 else if test -z "$AMDEP_TRUE" && test -f "$am_depcomp"; then # We make a subdir and do the tests there. Otherwise we can end up # making bogus files that we don't know about and never remove. For # instance it was reported that on HP-UX the gcc test will end up # making a dummy file named `D' -- because `-MD' means `put the output # in D'. rm -rf conftest.dir mkdir conftest.dir # Copy depcomp to subdir because otherwise we won't find it if we're # using a relative directory. cp "$am_depcomp" conftest.dir cd conftest.dir # We will build objects and dependencies in a subdirectory because # it helps to detect inapplicable dependency modes. For instance # both Tru64's cc and ICC support -MD to output dependencies as a # side effect of compilation, but ICC will put the dependencies in # the current directory while Tru64 will put them in the object # directory. mkdir sub am_cv_CC_dependencies_compiler_type=none if test "$am_compiler_list" = ""; then am_compiler_list=`sed -n 's/^#*\([a-zA-Z0-9]*\))$/\1/p' < ./depcomp` fi am__universal=false case " $depcc " in #( *\ -arch\ *\ -arch\ *) am__universal=true ;; esac for depmode in $am_compiler_list; do # Setup a source with many dependencies, because some compilers # like to wrap large dependency lists on column 80 (with \), and # we should not choose a depcomp mode which is confused by this. # # We need to recreate these files for each test, as the compiler may # overwrite some of them when testing with obscure command lines. # This happens at least with the AIX C compiler. : > sub/conftest.c for i in 1 2 3 4 5 6; do echo '#include "conftst'$i'.h"' >> sub/conftest.c # Using `: > sub/conftst$i.h' creates only sub/conftst1.h with # Solaris 8's {/usr,}/bin/sh. touch sub/conftst$i.h done echo "${am__include} ${am__quote}sub/conftest.Po${am__quote}" > confmf # We check with `-c' and `-o' for the sake of the "dashmstdout" # mode. It turns out that the SunPro C++ compiler does not properly # handle `-M -o', and we need to detect this. Also, some Intel # versions had trouble with output in subdirs am__obj=sub/conftest.${OBJEXT-o} am__minus_obj="-o $am__obj" case $depmode in gcc) # This depmode causes a compiler race in universal mode. test "$am__universal" = false || continue ;; nosideeffect) # after this tag, mechanisms are not by side-effect, so they'll # only be used when explicitly requested if test "x$enable_dependency_tracking" = xyes; then continue else break fi ;; msvc7 | msvc7msys | msvisualcpp | msvcmsys) # This compiler won't grok `-c -o', but also, the minuso test has # not run yet. These depmodes are late enough in the game, and # so weak that their functioning should not be impacted. am__obj=conftest.${OBJEXT-o} am__minus_obj= ;; none) break ;; esac if depmode=$depmode \ source=sub/conftest.c object=$am__obj \ depfile=sub/conftest.Po tmpdepfile=sub/conftest.TPo \ $SHELL ./depcomp $depcc -c $am__minus_obj sub/conftest.c \ >/dev/null 2>conftest.err && grep sub/conftst1.h sub/conftest.Po > /dev/null 2>&1 && grep sub/conftst6.h sub/conftest.Po > /dev/null 2>&1 && grep $am__obj sub/conftest.Po > /dev/null 2>&1 && ${MAKE-make} -s -f confmf > /dev/null 2>&1; then # icc doesn't choke on unknown options, it will just issue warnings # or remarks (even with -Werror). So we grep stderr for any message # that says an option was ignored or not supported. # When given -MP, icc 7.0 and 7.1 complain thusly: # icc: Command line warning: ignoring option '-M'; no argument required # The diagnosis changed in icc 8.0: # icc: Command line remark: option '-MP' not supported if (grep 'ignoring option' conftest.err || grep 'not supported' conftest.err) >/dev/null 2>&1; then :; else am_cv_CC_dependencies_compiler_type=$depmode break fi fi done cd .. rm -rf conftest.dir else am_cv_CC_dependencies_compiler_type=none fi fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $am_cv_CC_dependencies_compiler_type" >&5 $as_echo "$am_cv_CC_dependencies_compiler_type" >&6; } CCDEPMODE=depmode=$am_cv_CC_dependencies_compiler_type if test "x$enable_dependency_tracking" != xno \ && test "$am_cv_CC_dependencies_compiler_type" = gcc3; then am__fastdepCC_TRUE= am__fastdepCC_FALSE='#' else am__fastdepCC_TRUE='#' am__fastdepCC_FALSE= fi { $as_echo "$as_me:${as_lineno-$LINENO}: checking for library containing strerror" >&5 $as_echo_n "checking for library containing strerror... " >&6; } if ${ac_cv_search_strerror+:} false; then : $as_echo_n "(cached) " >&6 else ac_func_search_save_LIBS=$LIBS cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ /* Override any GCC internal prototype to avoid an error. Use char because int might match the return type of a GCC builtin and then its argument prototype would still apply. */ #ifdef __cplusplus extern "C" #endif char strerror (); int main () { return strerror (); ; return 0; } _ACEOF for ac_lib in '' cposix; do if test -z "$ac_lib"; then ac_res="none required" else ac_res=-l$ac_lib LIBS="-l$ac_lib $ac_func_search_save_LIBS" fi if ac_fn_c_try_link "$LINENO"; then : ac_cv_search_strerror=$ac_res fi rm -f core conftest.err conftest.$ac_objext \ conftest$ac_exeext if ${ac_cv_search_strerror+:} false; then : break fi done if ${ac_cv_search_strerror+:} false; then : else ac_cv_search_strerror=no fi rm conftest.$ac_ext LIBS=$ac_func_search_save_LIBS fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_search_strerror" >&5 $as_echo "$ac_cv_search_strerror" >&6; } ac_res=$ac_cv_search_strerror if test "$ac_res" != no; then : test "$ac_res" = "none required" || LIBS="$ac_res $LIBS" fi ac_ext=c ac_cpp='$CPP $CPPFLAGS' ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' ac_compiler_gnu=$ac_cv_c_compiler_gnu if test -n "$ac_tool_prefix"; then # Extract the first word of "${ac_tool_prefix}gcc", so it can be a program name with args. set dummy ${ac_tool_prefix}gcc; ac_word=$2 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 $as_echo_n "checking for $ac_word... " >&6; } if ${ac_cv_prog_CC+:} false; then : $as_echo_n "(cached) " >&6 else if test -n "$CC"; then ac_cv_prog_CC="$CC" # Let the user override the test. else as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH do IFS=$as_save_IFS test -z "$as_dir" && as_dir=. for ac_exec_ext in '' $ac_executable_extensions; do if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then ac_cv_prog_CC="${ac_tool_prefix}gcc" $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 break 2 fi done done IFS=$as_save_IFS fi fi CC=$ac_cv_prog_CC if test -n "$CC"; then { $as_echo "$as_me:${as_lineno-$LINENO}: result: $CC" >&5 $as_echo "$CC" >&6; } else { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } fi fi if test -z "$ac_cv_prog_CC"; then ac_ct_CC=$CC # Extract the first word of "gcc", so it can be a program name with args. set dummy gcc; ac_word=$2 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 $as_echo_n "checking for $ac_word... " >&6; } if ${ac_cv_prog_ac_ct_CC+:} false; then : $as_echo_n "(cached) " >&6 else if test -n "$ac_ct_CC"; then ac_cv_prog_ac_ct_CC="$ac_ct_CC" # Let the user override the test. else as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH do IFS=$as_save_IFS test -z "$as_dir" && as_dir=. for ac_exec_ext in '' $ac_executable_extensions; do if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then ac_cv_prog_ac_ct_CC="gcc" $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 break 2 fi done done IFS=$as_save_IFS fi fi ac_ct_CC=$ac_cv_prog_ac_ct_CC if test -n "$ac_ct_CC"; then { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_ct_CC" >&5 $as_echo "$ac_ct_CC" >&6; } else { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } fi if test "x$ac_ct_CC" = x; then CC="" else case $cross_compiling:$ac_tool_warned in yes:) { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: using cross tools not prefixed with host triplet" >&5 $as_echo "$as_me: WARNING: using cross tools not prefixed with host triplet" >&2;} ac_tool_warned=yes ;; esac CC=$ac_ct_CC fi else CC="$ac_cv_prog_CC" fi if test -z "$CC"; then if test -n "$ac_tool_prefix"; then # Extract the first word of "${ac_tool_prefix}cc", so it can be a program name with args. set dummy ${ac_tool_prefix}cc; ac_word=$2 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 $as_echo_n "checking for $ac_word... " >&6; } if ${ac_cv_prog_CC+:} false; then : $as_echo_n "(cached) " >&6 else if test -n "$CC"; then ac_cv_prog_CC="$CC" # Let the user override the test. else as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH do IFS=$as_save_IFS test -z "$as_dir" && as_dir=. for ac_exec_ext in '' $ac_executable_extensions; do if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then ac_cv_prog_CC="${ac_tool_prefix}cc" $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 break 2 fi done done IFS=$as_save_IFS fi fi CC=$ac_cv_prog_CC if test -n "$CC"; then { $as_echo "$as_me:${as_lineno-$LINENO}: result: $CC" >&5 $as_echo "$CC" >&6; } else { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } fi fi fi if test -z "$CC"; then # Extract the first word of "cc", so it can be a program name with args. set dummy cc; ac_word=$2 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 $as_echo_n "checking for $ac_word... " >&6; } if ${ac_cv_prog_CC+:} false; then : $as_echo_n "(cached) " >&6 else if test -n "$CC"; then ac_cv_prog_CC="$CC" # Let the user override the test. else ac_prog_rejected=no as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH do IFS=$as_save_IFS test -z "$as_dir" && as_dir=. for ac_exec_ext in '' $ac_executable_extensions; do if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then if test "$as_dir/$ac_word$ac_exec_ext" = "/usr/ucb/cc"; then ac_prog_rejected=yes continue fi ac_cv_prog_CC="cc" $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 break 2 fi done done IFS=$as_save_IFS if test $ac_prog_rejected = yes; then # We found a bogon in the path, so make sure we never use it. set dummy $ac_cv_prog_CC shift if test $# != 0; then # We chose a different compiler from the bogus one. # However, it has the same basename, so the bogon will be chosen # first if we set CC to just the basename; use the full file name. shift ac_cv_prog_CC="$as_dir/$ac_word${1+' '}$@" fi fi fi fi CC=$ac_cv_prog_CC if test -n "$CC"; then { $as_echo "$as_me:${as_lineno-$LINENO}: result: $CC" >&5 $as_echo "$CC" >&6; } else { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } fi fi if test -z "$CC"; then if test -n "$ac_tool_prefix"; then for ac_prog in cl.exe do # Extract the first word of "$ac_tool_prefix$ac_prog", so it can be a program name with args. set dummy $ac_tool_prefix$ac_prog; ac_word=$2 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 $as_echo_n "checking for $ac_word... " >&6; } if ${ac_cv_prog_CC+:} false; then : $as_echo_n "(cached) " >&6 else if test -n "$CC"; then ac_cv_prog_CC="$CC" # Let the user override the test. else as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH do IFS=$as_save_IFS test -z "$as_dir" && as_dir=. for ac_exec_ext in '' $ac_executable_extensions; do if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then ac_cv_prog_CC="$ac_tool_prefix$ac_prog" $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 break 2 fi done done IFS=$as_save_IFS fi fi CC=$ac_cv_prog_CC if test -n "$CC"; then { $as_echo "$as_me:${as_lineno-$LINENO}: result: $CC" >&5 $as_echo "$CC" >&6; } else { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } fi test -n "$CC" && break done fi if test -z "$CC"; then ac_ct_CC=$CC for ac_prog in cl.exe do # Extract the first word of "$ac_prog", so it can be a program name with args. set dummy $ac_prog; ac_word=$2 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 $as_echo_n "checking for $ac_word... " >&6; } if ${ac_cv_prog_ac_ct_CC+:} false; then : $as_echo_n "(cached) " >&6 else if test -n "$ac_ct_CC"; then ac_cv_prog_ac_ct_CC="$ac_ct_CC" # Let the user override the test. else as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH do IFS=$as_save_IFS test -z "$as_dir" && as_dir=. for ac_exec_ext in '' $ac_executable_extensions; do if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then ac_cv_prog_ac_ct_CC="$ac_prog" $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 break 2 fi done done IFS=$as_save_IFS fi fi ac_ct_CC=$ac_cv_prog_ac_ct_CC if test -n "$ac_ct_CC"; then { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_ct_CC" >&5 $as_echo "$ac_ct_CC" >&6; } else { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } fi test -n "$ac_ct_CC" && break done if test "x$ac_ct_CC" = x; then CC="" else case $cross_compiling:$ac_tool_warned in yes:) { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: using cross tools not prefixed with host triplet" >&5 $as_echo "$as_me: WARNING: using cross tools not prefixed with host triplet" >&2;} ac_tool_warned=yes ;; esac CC=$ac_ct_CC fi fi fi test -z "$CC" && { { $as_echo "$as_me:${as_lineno-$LINENO}: error: in \`$ac_pwd':" >&5 $as_echo "$as_me: error: in \`$ac_pwd':" >&2;} as_fn_error $? "no acceptable C compiler found in \$PATH See \`config.log' for more details" "$LINENO" 5; } # Provide some information about the compiler. $as_echo "$as_me:${as_lineno-$LINENO}: checking for C compiler version" >&5 set X $ac_compile ac_compiler=$2 for ac_option in --version -v -V -qversion; do { { ac_try="$ac_compiler $ac_option >&5" case "(($ac_try" in *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; *) ac_try_echo=$ac_try;; esac eval ac_try_echo="\"\$as_me:${as_lineno-$LINENO}: $ac_try_echo\"" $as_echo "$ac_try_echo"; } >&5 (eval "$ac_compiler $ac_option >&5") 2>conftest.err ac_status=$? if test -s conftest.err; then sed '10a\ ... rest of stderr output deleted ... 10q' conftest.err >conftest.er1 cat conftest.er1 >&5 fi rm -f conftest.er1 conftest.err $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 test $ac_status = 0; } done { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether we are using the GNU C compiler" >&5 $as_echo_n "checking whether we are using the GNU C compiler... " >&6; } if ${ac_cv_c_compiler_gnu+:} false; then : $as_echo_n "(cached) " >&6 else cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ int main () { #ifndef __GNUC__ choke me #endif ; return 0; } _ACEOF if ac_fn_c_try_compile "$LINENO"; then : ac_compiler_gnu=yes else ac_compiler_gnu=no fi rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext ac_cv_c_compiler_gnu=$ac_compiler_gnu fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_c_compiler_gnu" >&5 $as_echo "$ac_cv_c_compiler_gnu" >&6; } if test $ac_compiler_gnu = yes; then GCC=yes else GCC= fi ac_test_CFLAGS=${CFLAGS+set} ac_save_CFLAGS=$CFLAGS { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether $CC accepts -g" >&5 $as_echo_n "checking whether $CC accepts -g... " >&6; } if ${ac_cv_prog_cc_g+:} false; then : $as_echo_n "(cached) " >&6 else ac_save_c_werror_flag=$ac_c_werror_flag ac_c_werror_flag=yes ac_cv_prog_cc_g=no CFLAGS="-g" cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ int main () { ; return 0; } _ACEOF if ac_fn_c_try_compile "$LINENO"; then : ac_cv_prog_cc_g=yes else CFLAGS="" cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ int main () { ; return 0; } _ACEOF if ac_fn_c_try_compile "$LINENO"; then : else ac_c_werror_flag=$ac_save_c_werror_flag CFLAGS="-g" cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ int main () { ; return 0; } _ACEOF if ac_fn_c_try_compile "$LINENO"; then : ac_cv_prog_cc_g=yes fi rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext fi rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext fi rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext ac_c_werror_flag=$ac_save_c_werror_flag fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_prog_cc_g" >&5 $as_echo "$ac_cv_prog_cc_g" >&6; } if test "$ac_test_CFLAGS" = set; then CFLAGS=$ac_save_CFLAGS elif test $ac_cv_prog_cc_g = yes; then if test "$GCC" = yes; then CFLAGS="-g -O2" else CFLAGS="-g" fi else if test "$GCC" = yes; then CFLAGS="-O2" else CFLAGS= fi fi { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $CC option to accept ISO C89" >&5 $as_echo_n "checking for $CC option to accept ISO C89... " >&6; } if ${ac_cv_prog_cc_c89+:} false; then : $as_echo_n "(cached) " >&6 else ac_cv_prog_cc_c89=no ac_save_CC=$CC cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ #include #include #include #include /* Most of the following tests are stolen from RCS 5.7's src/conf.sh. */ struct buf { int x; }; FILE * (*rcsopen) (struct buf *, struct stat *, int); static char *e (p, i) char **p; int i; { return p[i]; } static char *f (char * (*g) (char **, int), char **p, ...) { char *s; va_list v; va_start (v,p); s = g (p, va_arg (v,int)); va_end (v); return s; } /* OSF 4.0 Compaq cc is some sort of almost-ANSI by default. It has function prototypes and stuff, but not '\xHH' hex character constants. These don't provoke an error unfortunately, instead are silently treated as 'x'. The following induces an error, until -std is added to get proper ANSI mode. Curiously '\x00'!='x' always comes out true, for an array size at least. It's necessary to write '\x00'==0 to get something that's true only with -std. */ int osf4_cc_array ['\x00' == 0 ? 1 : -1]; /* IBM C 6 for AIX is almost-ANSI by default, but it replaces macro parameters inside strings and character constants. */ #define FOO(x) 'x' int xlc6_cc_array[FOO(a) == 'x' ? 1 : -1]; int test (int i, double x); struct s1 {int (*f) (int a);}; struct s2 {int (*f) (double a);}; int pairnames (int, char **, FILE *(*)(struct buf *, struct stat *, int), int, int); int argc; char **argv; int main () { return f (e, argv, 0) != argv[0] || f (e, argv, 1) != argv[1]; ; return 0; } _ACEOF for ac_arg in '' -qlanglvl=extc89 -qlanglvl=ansi -std \ -Ae "-Aa -D_HPUX_SOURCE" "-Xc -D__EXTENSIONS__" do CC="$ac_save_CC $ac_arg" if ac_fn_c_try_compile "$LINENO"; then : ac_cv_prog_cc_c89=$ac_arg fi rm -f core conftest.err conftest.$ac_objext test "x$ac_cv_prog_cc_c89" != "xno" && break done rm -f conftest.$ac_ext CC=$ac_save_CC fi # AC_CACHE_VAL case "x$ac_cv_prog_cc_c89" in x) { $as_echo "$as_me:${as_lineno-$LINENO}: result: none needed" >&5 $as_echo "none needed" >&6; } ;; xno) { $as_echo "$as_me:${as_lineno-$LINENO}: result: unsupported" >&5 $as_echo "unsupported" >&6; } ;; *) CC="$CC $ac_cv_prog_cc_c89" { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_prog_cc_c89" >&5 $as_echo "$ac_cv_prog_cc_c89" >&6; } ;; esac if test "x$ac_cv_prog_cc_c89" != xno; then : fi ac_ext=c ac_cpp='$CPP $CPPFLAGS' ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' ac_compiler_gnu=$ac_cv_c_compiler_gnu depcc="$CC" am_compiler_list= { $as_echo "$as_me:${as_lineno-$LINENO}: checking dependency style of $depcc" >&5 $as_echo_n "checking dependency style of $depcc... " >&6; } if ${am_cv_CC_dependencies_compiler_type+:} false; then : $as_echo_n "(cached) " >&6 else if test -z "$AMDEP_TRUE" && test -f "$am_depcomp"; then # We make a subdir and do the tests there. Otherwise we can end up # making bogus files that we don't know about and never remove. For # instance it was reported that on HP-UX the gcc test will end up # making a dummy file named `D' -- because `-MD' means `put the output # in D'. rm -rf conftest.dir mkdir conftest.dir # Copy depcomp to subdir because otherwise we won't find it if we're # using a relative directory. cp "$am_depcomp" conftest.dir cd conftest.dir # We will build objects and dependencies in a subdirectory because # it helps to detect inapplicable dependency modes. For instance # both Tru64's cc and ICC support -MD to output dependencies as a # side effect of compilation, but ICC will put the dependencies in # the current directory while Tru64 will put them in the object # directory. mkdir sub am_cv_CC_dependencies_compiler_type=none if test "$am_compiler_list" = ""; then am_compiler_list=`sed -n 's/^#*\([a-zA-Z0-9]*\))$/\1/p' < ./depcomp` fi am__universal=false case " $depcc " in #( *\ -arch\ *\ -arch\ *) am__universal=true ;; esac for depmode in $am_compiler_list; do # Setup a source with many dependencies, because some compilers # like to wrap large dependency lists on column 80 (with \), and # we should not choose a depcomp mode which is confused by this. # # We need to recreate these files for each test, as the compiler may # overwrite some of them when testing with obscure command lines. # This happens at least with the AIX C compiler. : > sub/conftest.c for i in 1 2 3 4 5 6; do echo '#include "conftst'$i'.h"' >> sub/conftest.c # Using `: > sub/conftst$i.h' creates only sub/conftst1.h with # Solaris 8's {/usr,}/bin/sh. touch sub/conftst$i.h done echo "${am__include} ${am__quote}sub/conftest.Po${am__quote}" > confmf # We check with `-c' and `-o' for the sake of the "dashmstdout" # mode. It turns out that the SunPro C++ compiler does not properly # handle `-M -o', and we need to detect this. Also, some Intel # versions had trouble with output in subdirs am__obj=sub/conftest.${OBJEXT-o} am__minus_obj="-o $am__obj" case $depmode in gcc) # This depmode causes a compiler race in universal mode. test "$am__universal" = false || continue ;; nosideeffect) # after this tag, mechanisms are not by side-effect, so they'll # only be used when explicitly requested if test "x$enable_dependency_tracking" = xyes; then continue else break fi ;; msvc7 | msvc7msys | msvisualcpp | msvcmsys) # This compiler won't grok `-c -o', but also, the minuso test has # not run yet. These depmodes are late enough in the game, and # so weak that their functioning should not be impacted. am__obj=conftest.${OBJEXT-o} am__minus_obj= ;; none) break ;; esac if depmode=$depmode \ source=sub/conftest.c object=$am__obj \ depfile=sub/conftest.Po tmpdepfile=sub/conftest.TPo \ $SHELL ./depcomp $depcc -c $am__minus_obj sub/conftest.c \ >/dev/null 2>conftest.err && grep sub/conftst1.h sub/conftest.Po > /dev/null 2>&1 && grep sub/conftst6.h sub/conftest.Po > /dev/null 2>&1 && grep $am__obj sub/conftest.Po > /dev/null 2>&1 && ${MAKE-make} -s -f confmf > /dev/null 2>&1; then # icc doesn't choke on unknown options, it will just issue warnings # or remarks (even with -Werror). So we grep stderr for any message # that says an option was ignored or not supported. # When given -MP, icc 7.0 and 7.1 complain thusly: # icc: Command line warning: ignoring option '-M'; no argument required # The diagnosis changed in icc 8.0: # icc: Command line remark: option '-MP' not supported if (grep 'ignoring option' conftest.err || grep 'not supported' conftest.err) >/dev/null 2>&1; then :; else am_cv_CC_dependencies_compiler_type=$depmode break fi fi done cd .. rm -rf conftest.dir else am_cv_CC_dependencies_compiler_type=none fi fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $am_cv_CC_dependencies_compiler_type" >&5 $as_echo "$am_cv_CC_dependencies_compiler_type" >&6; } CCDEPMODE=depmode=$am_cv_CC_dependencies_compiler_type if test "x$enable_dependency_tracking" != xno \ && test "$am_cv_CC_dependencies_compiler_type" = gcc3; then am__fastdepCC_TRUE= am__fastdepCC_FALSE='#' else am__fastdepCC_TRUE='#' am__fastdepCC_FALSE= fi ac_ext=c ac_cpp='$CPP $CPPFLAGS' ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' ac_compiler_gnu=$ac_cv_c_compiler_gnu if test -n "$ac_tool_prefix"; then # Extract the first word of "${ac_tool_prefix}gcc", so it can be a program name with args. set dummy ${ac_tool_prefix}gcc; ac_word=$2 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 $as_echo_n "checking for $ac_word... " >&6; } if ${ac_cv_prog_CC+:} false; then : $as_echo_n "(cached) " >&6 else if test -n "$CC"; then ac_cv_prog_CC="$CC" # Let the user override the test. else as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH do IFS=$as_save_IFS test -z "$as_dir" && as_dir=. for ac_exec_ext in '' $ac_executable_extensions; do if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then ac_cv_prog_CC="${ac_tool_prefix}gcc" $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 break 2 fi done done IFS=$as_save_IFS fi fi CC=$ac_cv_prog_CC if test -n "$CC"; then { $as_echo "$as_me:${as_lineno-$LINENO}: result: $CC" >&5 $as_echo "$CC" >&6; } else { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } fi fi if test -z "$ac_cv_prog_CC"; then ac_ct_CC=$CC # Extract the first word of "gcc", so it can be a program name with args. set dummy gcc; ac_word=$2 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 $as_echo_n "checking for $ac_word... " >&6; } if ${ac_cv_prog_ac_ct_CC+:} false; then : $as_echo_n "(cached) " >&6 else if test -n "$ac_ct_CC"; then ac_cv_prog_ac_ct_CC="$ac_ct_CC" # Let the user override the test. else as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH do IFS=$as_save_IFS test -z "$as_dir" && as_dir=. for ac_exec_ext in '' $ac_executable_extensions; do if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then ac_cv_prog_ac_ct_CC="gcc" $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 break 2 fi done done IFS=$as_save_IFS fi fi ac_ct_CC=$ac_cv_prog_ac_ct_CC if test -n "$ac_ct_CC"; then { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_ct_CC" >&5 $as_echo "$ac_ct_CC" >&6; } else { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } fi if test "x$ac_ct_CC" = x; then CC="" else case $cross_compiling:$ac_tool_warned in yes:) { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: using cross tools not prefixed with host triplet" >&5 $as_echo "$as_me: WARNING: using cross tools not prefixed with host triplet" >&2;} ac_tool_warned=yes ;; esac CC=$ac_ct_CC fi else CC="$ac_cv_prog_CC" fi if test -z "$CC"; then if test -n "$ac_tool_prefix"; then # Extract the first word of "${ac_tool_prefix}cc", so it can be a program name with args. set dummy ${ac_tool_prefix}cc; ac_word=$2 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 $as_echo_n "checking for $ac_word... " >&6; } if ${ac_cv_prog_CC+:} false; then : $as_echo_n "(cached) " >&6 else if test -n "$CC"; then ac_cv_prog_CC="$CC" # Let the user override the test. else as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH do IFS=$as_save_IFS test -z "$as_dir" && as_dir=. for ac_exec_ext in '' $ac_executable_extensions; do if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then ac_cv_prog_CC="${ac_tool_prefix}cc" $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 break 2 fi done done IFS=$as_save_IFS fi fi CC=$ac_cv_prog_CC if test -n "$CC"; then { $as_echo "$as_me:${as_lineno-$LINENO}: result: $CC" >&5 $as_echo "$CC" >&6; } else { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } fi fi fi if test -z "$CC"; then # Extract the first word of "cc", so it can be a program name with args. set dummy cc; ac_word=$2 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 $as_echo_n "checking for $ac_word... " >&6; } if ${ac_cv_prog_CC+:} false; then : $as_echo_n "(cached) " >&6 else if test -n "$CC"; then ac_cv_prog_CC="$CC" # Let the user override the test. else ac_prog_rejected=no as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH do IFS=$as_save_IFS test -z "$as_dir" && as_dir=. for ac_exec_ext in '' $ac_executable_extensions; do if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then if test "$as_dir/$ac_word$ac_exec_ext" = "/usr/ucb/cc"; then ac_prog_rejected=yes continue fi ac_cv_prog_CC="cc" $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 break 2 fi done done IFS=$as_save_IFS if test $ac_prog_rejected = yes; then # We found a bogon in the path, so make sure we never use it. set dummy $ac_cv_prog_CC shift if test $# != 0; then # We chose a different compiler from the bogus one. # However, it has the same basename, so the bogon will be chosen # first if we set CC to just the basename; use the full file name. shift ac_cv_prog_CC="$as_dir/$ac_word${1+' '}$@" fi fi fi fi CC=$ac_cv_prog_CC if test -n "$CC"; then { $as_echo "$as_me:${as_lineno-$LINENO}: result: $CC" >&5 $as_echo "$CC" >&6; } else { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } fi fi if test -z "$CC"; then if test -n "$ac_tool_prefix"; then for ac_prog in cl.exe do # Extract the first word of "$ac_tool_prefix$ac_prog", so it can be a program name with args. set dummy $ac_tool_prefix$ac_prog; ac_word=$2 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 $as_echo_n "checking for $ac_word... " >&6; } if ${ac_cv_prog_CC+:} false; then : $as_echo_n "(cached) " >&6 else if test -n "$CC"; then ac_cv_prog_CC="$CC" # Let the user override the test. else as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH do IFS=$as_save_IFS test -z "$as_dir" && as_dir=. for ac_exec_ext in '' $ac_executable_extensions; do if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then ac_cv_prog_CC="$ac_tool_prefix$ac_prog" $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 break 2 fi done done IFS=$as_save_IFS fi fi CC=$ac_cv_prog_CC if test -n "$CC"; then { $as_echo "$as_me:${as_lineno-$LINENO}: result: $CC" >&5 $as_echo "$CC" >&6; } else { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } fi test -n "$CC" && break done fi if test -z "$CC"; then ac_ct_CC=$CC for ac_prog in cl.exe do # Extract the first word of "$ac_prog", so it can be a program name with args. set dummy $ac_prog; ac_word=$2 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 $as_echo_n "checking for $ac_word... " >&6; } if ${ac_cv_prog_ac_ct_CC+:} false; then : $as_echo_n "(cached) " >&6 else if test -n "$ac_ct_CC"; then ac_cv_prog_ac_ct_CC="$ac_ct_CC" # Let the user override the test. else as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH do IFS=$as_save_IFS test -z "$as_dir" && as_dir=. for ac_exec_ext in '' $ac_executable_extensions; do if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then ac_cv_prog_ac_ct_CC="$ac_prog" $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 break 2 fi done done IFS=$as_save_IFS fi fi ac_ct_CC=$ac_cv_prog_ac_ct_CC if test -n "$ac_ct_CC"; then { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_ct_CC" >&5 $as_echo "$ac_ct_CC" >&6; } else { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } fi test -n "$ac_ct_CC" && break done if test "x$ac_ct_CC" = x; then CC="" else case $cross_compiling:$ac_tool_warned in yes:) { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: using cross tools not prefixed with host triplet" >&5 $as_echo "$as_me: WARNING: using cross tools not prefixed with host triplet" >&2;} ac_tool_warned=yes ;; esac CC=$ac_ct_CC fi fi fi test -z "$CC" && { { $as_echo "$as_me:${as_lineno-$LINENO}: error: in \`$ac_pwd':" >&5 $as_echo "$as_me: error: in \`$ac_pwd':" >&2;} as_fn_error $? "no acceptable C compiler found in \$PATH See \`config.log' for more details" "$LINENO" 5; } # Provide some information about the compiler. $as_echo "$as_me:${as_lineno-$LINENO}: checking for C compiler version" >&5 set X $ac_compile ac_compiler=$2 for ac_option in --version -v -V -qversion; do { { ac_try="$ac_compiler $ac_option >&5" case "(($ac_try" in *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; *) ac_try_echo=$ac_try;; esac eval ac_try_echo="\"\$as_me:${as_lineno-$LINENO}: $ac_try_echo\"" $as_echo "$ac_try_echo"; } >&5 (eval "$ac_compiler $ac_option >&5") 2>conftest.err ac_status=$? if test -s conftest.err; then sed '10a\ ... rest of stderr output deleted ... 10q' conftest.err >conftest.er1 cat conftest.er1 >&5 fi rm -f conftest.er1 conftest.err $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 test $ac_status = 0; } done { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether we are using the GNU C compiler" >&5 $as_echo_n "checking whether we are using the GNU C compiler... " >&6; } if ${ac_cv_c_compiler_gnu+:} false; then : $as_echo_n "(cached) " >&6 else cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ int main () { #ifndef __GNUC__ choke me #endif ; return 0; } _ACEOF if ac_fn_c_try_compile "$LINENO"; then : ac_compiler_gnu=yes else ac_compiler_gnu=no fi rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext ac_cv_c_compiler_gnu=$ac_compiler_gnu fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_c_compiler_gnu" >&5 $as_echo "$ac_cv_c_compiler_gnu" >&6; } if test $ac_compiler_gnu = yes; then GCC=yes else GCC= fi ac_test_CFLAGS=${CFLAGS+set} ac_save_CFLAGS=$CFLAGS { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether $CC accepts -g" >&5 $as_echo_n "checking whether $CC accepts -g... " >&6; } if ${ac_cv_prog_cc_g+:} false; then : $as_echo_n "(cached) " >&6 else ac_save_c_werror_flag=$ac_c_werror_flag ac_c_werror_flag=yes ac_cv_prog_cc_g=no CFLAGS="-g" cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ int main () { ; return 0; } _ACEOF if ac_fn_c_try_compile "$LINENO"; then : ac_cv_prog_cc_g=yes else CFLAGS="" cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ int main () { ; return 0; } _ACEOF if ac_fn_c_try_compile "$LINENO"; then : else ac_c_werror_flag=$ac_save_c_werror_flag CFLAGS="-g" cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ int main () { ; return 0; } _ACEOF if ac_fn_c_try_compile "$LINENO"; then : ac_cv_prog_cc_g=yes fi rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext fi rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext fi rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext ac_c_werror_flag=$ac_save_c_werror_flag fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_prog_cc_g" >&5 $as_echo "$ac_cv_prog_cc_g" >&6; } if test "$ac_test_CFLAGS" = set; then CFLAGS=$ac_save_CFLAGS elif test $ac_cv_prog_cc_g = yes; then if test "$GCC" = yes; then CFLAGS="-g -O2" else CFLAGS="-g" fi else if test "$GCC" = yes; then CFLAGS="-O2" else CFLAGS= fi fi { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $CC option to accept ISO C89" >&5 $as_echo_n "checking for $CC option to accept ISO C89... " >&6; } if ${ac_cv_prog_cc_c89+:} false; then : $as_echo_n "(cached) " >&6 else ac_cv_prog_cc_c89=no ac_save_CC=$CC cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ #include #include #include #include /* Most of the following tests are stolen from RCS 5.7's src/conf.sh. */ struct buf { int x; }; FILE * (*rcsopen) (struct buf *, struct stat *, int); static char *e (p, i) char **p; int i; { return p[i]; } static char *f (char * (*g) (char **, int), char **p, ...) { char *s; va_list v; va_start (v,p); s = g (p, va_arg (v,int)); va_end (v); return s; } /* OSF 4.0 Compaq cc is some sort of almost-ANSI by default. It has function prototypes and stuff, but not '\xHH' hex character constants. These don't provoke an error unfortunately, instead are silently treated as 'x'. The following induces an error, until -std is added to get proper ANSI mode. Curiously '\x00'!='x' always comes out true, for an array size at least. It's necessary to write '\x00'==0 to get something that's true only with -std. */ int osf4_cc_array ['\x00' == 0 ? 1 : -1]; /* IBM C 6 for AIX is almost-ANSI by default, but it replaces macro parameters inside strings and character constants. */ #define FOO(x) 'x' int xlc6_cc_array[FOO(a) == 'x' ? 1 : -1]; int test (int i, double x); struct s1 {int (*f) (int a);}; struct s2 {int (*f) (double a);}; int pairnames (int, char **, FILE *(*)(struct buf *, struct stat *, int), int, int); int argc; char **argv; int main () { return f (e, argv, 0) != argv[0] || f (e, argv, 1) != argv[1]; ; return 0; } _ACEOF for ac_arg in '' -qlanglvl=extc89 -qlanglvl=ansi -std \ -Ae "-Aa -D_HPUX_SOURCE" "-Xc -D__EXTENSIONS__" do CC="$ac_save_CC $ac_arg" if ac_fn_c_try_compile "$LINENO"; then : ac_cv_prog_cc_c89=$ac_arg fi rm -f core conftest.err conftest.$ac_objext test "x$ac_cv_prog_cc_c89" != "xno" && break done rm -f conftest.$ac_ext CC=$ac_save_CC fi # AC_CACHE_VAL case "x$ac_cv_prog_cc_c89" in x) { $as_echo "$as_me:${as_lineno-$LINENO}: result: none needed" >&5 $as_echo "none needed" >&6; } ;; xno) { $as_echo "$as_me:${as_lineno-$LINENO}: result: unsupported" >&5 $as_echo "unsupported" >&6; } ;; *) CC="$CC $ac_cv_prog_cc_c89" { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_prog_cc_c89" >&5 $as_echo "$ac_cv_prog_cc_c89" >&6; } ;; esac if test "x$ac_cv_prog_cc_c89" != xno; then : fi ac_ext=c ac_cpp='$CPP $CPPFLAGS' ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' ac_compiler_gnu=$ac_cv_c_compiler_gnu depcc="$CC" am_compiler_list= { $as_echo "$as_me:${as_lineno-$LINENO}: checking dependency style of $depcc" >&5 $as_echo_n "checking dependency style of $depcc... " >&6; } if ${am_cv_CC_dependencies_compiler_type+:} false; then : $as_echo_n "(cached) " >&6 else if test -z "$AMDEP_TRUE" && test -f "$am_depcomp"; then # We make a subdir and do the tests there. Otherwise we can end up # making bogus files that we don't know about and never remove. For # instance it was reported that on HP-UX the gcc test will end up # making a dummy file named `D' -- because `-MD' means `put the output # in D'. rm -rf conftest.dir mkdir conftest.dir # Copy depcomp to subdir because otherwise we won't find it if we're # using a relative directory. cp "$am_depcomp" conftest.dir cd conftest.dir # We will build objects and dependencies in a subdirectory because # it helps to detect inapplicable dependency modes. For instance # both Tru64's cc and ICC support -MD to output dependencies as a # side effect of compilation, but ICC will put the dependencies in # the current directory while Tru64 will put them in the object # directory. mkdir sub am_cv_CC_dependencies_compiler_type=none if test "$am_compiler_list" = ""; then am_compiler_list=`sed -n 's/^#*\([a-zA-Z0-9]*\))$/\1/p' < ./depcomp` fi am__universal=false case " $depcc " in #( *\ -arch\ *\ -arch\ *) am__universal=true ;; esac for depmode in $am_compiler_list; do # Setup a source with many dependencies, because some compilers # like to wrap large dependency lists on column 80 (with \), and # we should not choose a depcomp mode which is confused by this. # # We need to recreate these files for each test, as the compiler may # overwrite some of them when testing with obscure command lines. # This happens at least with the AIX C compiler. : > sub/conftest.c for i in 1 2 3 4 5 6; do echo '#include "conftst'$i'.h"' >> sub/conftest.c # Using `: > sub/conftst$i.h' creates only sub/conftst1.h with # Solaris 8's {/usr,}/bin/sh. touch sub/conftst$i.h done echo "${am__include} ${am__quote}sub/conftest.Po${am__quote}" > confmf # We check with `-c' and `-o' for the sake of the "dashmstdout" # mode. It turns out that the SunPro C++ compiler does not properly # handle `-M -o', and we need to detect this. Also, some Intel # versions had trouble with output in subdirs am__obj=sub/conftest.${OBJEXT-o} am__minus_obj="-o $am__obj" case $depmode in gcc) # This depmode causes a compiler race in universal mode. test "$am__universal" = false || continue ;; nosideeffect) # after this tag, mechanisms are not by side-effect, so they'll # only be used when explicitly requested if test "x$enable_dependency_tracking" = xyes; then continue else break fi ;; msvc7 | msvc7msys | msvisualcpp | msvcmsys) # This compiler won't grok `-c -o', but also, the minuso test has # not run yet. These depmodes are late enough in the game, and # so weak that their functioning should not be impacted. am__obj=conftest.${OBJEXT-o} am__minus_obj= ;; none) break ;; esac if depmode=$depmode \ source=sub/conftest.c object=$am__obj \ depfile=sub/conftest.Po tmpdepfile=sub/conftest.TPo \ $SHELL ./depcomp $depcc -c $am__minus_obj sub/conftest.c \ >/dev/null 2>conftest.err && grep sub/conftst1.h sub/conftest.Po > /dev/null 2>&1 && grep sub/conftst6.h sub/conftest.Po > /dev/null 2>&1 && grep $am__obj sub/conftest.Po > /dev/null 2>&1 && ${MAKE-make} -s -f confmf > /dev/null 2>&1; then # icc doesn't choke on unknown options, it will just issue warnings # or remarks (even with -Werror). So we grep stderr for any message # that says an option was ignored or not supported. # When given -MP, icc 7.0 and 7.1 complain thusly: # icc: Command line warning: ignoring option '-M'; no argument required # The diagnosis changed in icc 8.0: # icc: Command line remark: option '-MP' not supported if (grep 'ignoring option' conftest.err || grep 'not supported' conftest.err) >/dev/null 2>&1; then :; else am_cv_CC_dependencies_compiler_type=$depmode break fi fi done cd .. rm -rf conftest.dir else am_cv_CC_dependencies_compiler_type=none fi fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $am_cv_CC_dependencies_compiler_type" >&5 $as_echo "$am_cv_CC_dependencies_compiler_type" >&6; } CCDEPMODE=depmode=$am_cv_CC_dependencies_compiler_type if test "x$enable_dependency_tracking" != xno \ && test "$am_cv_CC_dependencies_compiler_type" = gcc3; then am__fastdepCC_TRUE= am__fastdepCC_FALSE='#' else am__fastdepCC_TRUE='#' am__fastdepCC_FALSE= fi am_cv_prog_cc_stdc=$ac_cv_prog_cc_stdc ac_ext=c ac_cpp='$CPP $CPPFLAGS' ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' ac_compiler_gnu=$ac_cv_c_compiler_gnu { $as_echo "$as_me:${as_lineno-$LINENO}: checking how to run the C preprocessor" >&5 $as_echo_n "checking how to run the C preprocessor... " >&6; } # On Suns, sometimes $CPP names a directory. if test -n "$CPP" && test -d "$CPP"; then CPP= fi if test -z "$CPP"; then if ${ac_cv_prog_CPP+:} false; then : $as_echo_n "(cached) " >&6 else # Double quotes because CPP needs to be expanded for CPP in "$CC -E" "$CC -E -traditional-cpp" "/lib/cpp" do ac_preproc_ok=false for ac_c_preproc_warn_flag in '' yes do # Use a header file that comes with gcc, so configuring glibc # with a fresh cross-compiler works. # Prefer to if __STDC__ is defined, since # exists even on freestanding compilers. # On the NeXT, cc -E runs the code through the compiler's parser, # not just through cpp. "Syntax error" is here to catch this case. cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ #ifdef __STDC__ # include #else # include #endif Syntax error _ACEOF if ac_fn_c_try_cpp "$LINENO"; then : else # Broken: fails on valid input. continue fi rm -f conftest.err conftest.i conftest.$ac_ext # OK, works on sane cases. Now check whether nonexistent headers # can be detected and how. cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ #include _ACEOF if ac_fn_c_try_cpp "$LINENO"; then : # Broken: success on invalid input. continue else # Passes both tests. ac_preproc_ok=: break fi rm -f conftest.err conftest.i conftest.$ac_ext done # Because of `break', _AC_PREPROC_IFELSE's cleaning code was skipped. rm -f conftest.i conftest.err conftest.$ac_ext if $ac_preproc_ok; then : break fi done ac_cv_prog_CPP=$CPP fi CPP=$ac_cv_prog_CPP else ac_cv_prog_CPP=$CPP fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $CPP" >&5 $as_echo "$CPP" >&6; } ac_preproc_ok=false for ac_c_preproc_warn_flag in '' yes do # Use a header file that comes with gcc, so configuring glibc # with a fresh cross-compiler works. # Prefer to if __STDC__ is defined, since # exists even on freestanding compilers. # On the NeXT, cc -E runs the code through the compiler's parser, # not just through cpp. "Syntax error" is here to catch this case. cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ #ifdef __STDC__ # include #else # include #endif Syntax error _ACEOF if ac_fn_c_try_cpp "$LINENO"; then : else # Broken: fails on valid input. continue fi rm -f conftest.err conftest.i conftest.$ac_ext # OK, works on sane cases. Now check whether nonexistent headers # can be detected and how. cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ #include _ACEOF if ac_fn_c_try_cpp "$LINENO"; then : # Broken: success on invalid input. continue else # Passes both tests. ac_preproc_ok=: break fi rm -f conftest.err conftest.i conftest.$ac_ext done # Because of `break', _AC_PREPROC_IFELSE's cleaning code was skipped. rm -f conftest.i conftest.err conftest.$ac_ext if $ac_preproc_ok; then : else { { $as_echo "$as_me:${as_lineno-$LINENO}: error: in \`$ac_pwd':" >&5 $as_echo "$as_me: error: in \`$ac_pwd':" >&2;} as_fn_error $? "C preprocessor \"$CPP\" fails sanity check See \`config.log' for more details" "$LINENO" 5; } fi ac_ext=c ac_cpp='$CPP $CPPFLAGS' ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' ac_compiler_gnu=$ac_cv_c_compiler_gnu { $as_echo "$as_me:${as_lineno-$LINENO}: checking for grep that handles long lines and -e" >&5 $as_echo_n "checking for grep that handles long lines and -e... " >&6; } if ${ac_cv_path_GREP+:} false; then : $as_echo_n "(cached) " >&6 else if test -z "$GREP"; then ac_path_GREP_found=false # Loop through the user's path and test for each of PROGNAME-LIST as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH$PATH_SEPARATOR/usr/xpg4/bin do IFS=$as_save_IFS test -z "$as_dir" && as_dir=. for ac_prog in grep ggrep; do for ac_exec_ext in '' $ac_executable_extensions; do ac_path_GREP="$as_dir/$ac_prog$ac_exec_ext" { test -f "$ac_path_GREP" && $as_test_x "$ac_path_GREP"; } || continue # Check for GNU ac_path_GREP and select it if it is found. # Check for GNU $ac_path_GREP case `"$ac_path_GREP" --version 2>&1` in *GNU*) ac_cv_path_GREP="$ac_path_GREP" ac_path_GREP_found=:;; *) ac_count=0 $as_echo_n 0123456789 >"conftest.in" while : do cat "conftest.in" "conftest.in" >"conftest.tmp" mv "conftest.tmp" "conftest.in" cp "conftest.in" "conftest.nl" $as_echo 'GREP' >> "conftest.nl" "$ac_path_GREP" -e 'GREP$' -e '-(cannot match)-' < "conftest.nl" >"conftest.out" 2>/dev/null || break diff "conftest.out" "conftest.nl" >/dev/null 2>&1 || break as_fn_arith $ac_count + 1 && ac_count=$as_val if test $ac_count -gt ${ac_path_GREP_max-0}; then # Best one so far, save it but keep looking for a better one ac_cv_path_GREP="$ac_path_GREP" ac_path_GREP_max=$ac_count fi # 10*(2^10) chars as input seems more than enough test $ac_count -gt 10 && break done rm -f conftest.in conftest.tmp conftest.nl conftest.out;; esac $ac_path_GREP_found && break 3 done done done IFS=$as_save_IFS if test -z "$ac_cv_path_GREP"; then as_fn_error $? "no acceptable grep could be found in $PATH$PATH_SEPARATOR/usr/xpg4/bin" "$LINENO" 5 fi else ac_cv_path_GREP=$GREP fi fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_path_GREP" >&5 $as_echo "$ac_cv_path_GREP" >&6; } GREP="$ac_cv_path_GREP" { $as_echo "$as_me:${as_lineno-$LINENO}: checking for egrep" >&5 $as_echo_n "checking for egrep... " >&6; } if ${ac_cv_path_EGREP+:} false; then : $as_echo_n "(cached) " >&6 else if echo a | $GREP -E '(a|b)' >/dev/null 2>&1 then ac_cv_path_EGREP="$GREP -E" else if test -z "$EGREP"; then ac_path_EGREP_found=false # Loop through the user's path and test for each of PROGNAME-LIST as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH$PATH_SEPARATOR/usr/xpg4/bin do IFS=$as_save_IFS test -z "$as_dir" && as_dir=. for ac_prog in egrep; do for ac_exec_ext in '' $ac_executable_extensions; do ac_path_EGREP="$as_dir/$ac_prog$ac_exec_ext" { test -f "$ac_path_EGREP" && $as_test_x "$ac_path_EGREP"; } || continue # Check for GNU ac_path_EGREP and select it if it is found. # Check for GNU $ac_path_EGREP case `"$ac_path_EGREP" --version 2>&1` in *GNU*) ac_cv_path_EGREP="$ac_path_EGREP" ac_path_EGREP_found=:;; *) ac_count=0 $as_echo_n 0123456789 >"conftest.in" while : do cat "conftest.in" "conftest.in" >"conftest.tmp" mv "conftest.tmp" "conftest.in" cp "conftest.in" "conftest.nl" $as_echo 'EGREP' >> "conftest.nl" "$ac_path_EGREP" 'EGREP$' < "conftest.nl" >"conftest.out" 2>/dev/null || break diff "conftest.out" "conftest.nl" >/dev/null 2>&1 || break as_fn_arith $ac_count + 1 && ac_count=$as_val if test $ac_count -gt ${ac_path_EGREP_max-0}; then # Best one so far, save it but keep looking for a better one ac_cv_path_EGREP="$ac_path_EGREP" ac_path_EGREP_max=$ac_count fi # 10*(2^10) chars as input seems more than enough test $ac_count -gt 10 && break done rm -f conftest.in conftest.tmp conftest.nl conftest.out;; esac $ac_path_EGREP_found && break 3 done done done IFS=$as_save_IFS if test -z "$ac_cv_path_EGREP"; then as_fn_error $? "no acceptable egrep could be found in $PATH$PATH_SEPARATOR/usr/xpg4/bin" "$LINENO" 5 fi else ac_cv_path_EGREP=$EGREP fi fi fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_path_EGREP" >&5 $as_echo "$ac_cv_path_EGREP" >&6; } EGREP="$ac_cv_path_EGREP" { $as_echo "$as_me:${as_lineno-$LINENO}: checking for ANSI C header files" >&5 $as_echo_n "checking for ANSI C header files... " >&6; } if ${ac_cv_header_stdc+:} false; then : $as_echo_n "(cached) " >&6 else cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ #include #include #include #include int main () { ; return 0; } _ACEOF if ac_fn_c_try_compile "$LINENO"; then : ac_cv_header_stdc=yes else ac_cv_header_stdc=no fi rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext if test $ac_cv_header_stdc = yes; then # SunOS 4.x string.h does not declare mem*, contrary to ANSI. cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ #include _ACEOF if (eval "$ac_cpp conftest.$ac_ext") 2>&5 | $EGREP "memchr" >/dev/null 2>&1; then : else ac_cv_header_stdc=no fi rm -f conftest* fi if test $ac_cv_header_stdc = yes; then # ISC 2.0.2 stdlib.h does not declare free, contrary to ANSI. cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ #include _ACEOF if (eval "$ac_cpp conftest.$ac_ext") 2>&5 | $EGREP "free" >/dev/null 2>&1; then : else ac_cv_header_stdc=no fi rm -f conftest* fi if test $ac_cv_header_stdc = yes; then # /bin/cc in Irix-4.0.5 gets non-ANSI ctype macros unless using -ansi. if test "$cross_compiling" = yes; then : : else cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ #include #include #if ((' ' & 0x0FF) == 0x020) # define ISLOWER(c) ('a' <= (c) && (c) <= 'z') # define TOUPPER(c) (ISLOWER(c) ? 'A' + ((c) - 'a') : (c)) #else # define ISLOWER(c) \ (('a' <= (c) && (c) <= 'i') \ || ('j' <= (c) && (c) <= 'r') \ || ('s' <= (c) && (c) <= 'z')) # define TOUPPER(c) (ISLOWER(c) ? ((c) | 0x40) : (c)) #endif #define XOR(e, f) (((e) && !(f)) || (!(e) && (f))) int main () { int i; for (i = 0; i < 256; i++) if (XOR (islower (i), ISLOWER (i)) || toupper (i) != TOUPPER (i)) return 2; return 0; } _ACEOF if ac_fn_c_try_run "$LINENO"; then : else ac_cv_header_stdc=no fi rm -f core *.core core.conftest.* gmon.out bb.out conftest$ac_exeext \ conftest.$ac_objext conftest.beam conftest.$ac_ext fi fi fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_header_stdc" >&5 $as_echo "$ac_cv_header_stdc" >&6; } if test $ac_cv_header_stdc = yes; then $as_echo "#define STDC_HEADERS 1" >>confdefs.h fi { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether NLS is requested" >&5 $as_echo_n "checking whether NLS is requested... " >&6; } # Check whether --enable-nls was given. if test "${enable_nls+set}" = set; then : enableval=$enable_nls; USE_NLS=$enableval else USE_NLS=yes fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $USE_NLS" >&5 $as_echo "$USE_NLS" >&6; } case "$am__api_version" in 1.01234) as_fn_error $? "Automake 1.5 or newer is required to use intltool" "$LINENO" 5 ;; *) ;; esac INTLTOOL_REQUIRED_VERSION_AS_INT=`echo 0.35.0 | awk -F. '{ print $ 1 * 1000 + $ 2 * 100 + $ 3; }'` INTLTOOL_APPLIED_VERSION=`intltool-update --version | head -1 | cut -d" " -f3` INTLTOOL_APPLIED_VERSION_AS_INT=`echo $INTLTOOL_APPLIED_VERSION | awk -F. '{ print $ 1 * 1000 + $ 2 * 100 + $ 3; }'` if test -n "0.35.0"; then { $as_echo "$as_me:${as_lineno-$LINENO}: checking for intltool >= 0.35.0" >&5 $as_echo_n "checking for intltool >= 0.35.0... " >&6; } { $as_echo "$as_me:${as_lineno-$LINENO}: result: $INTLTOOL_APPLIED_VERSION found" >&5 $as_echo "$INTLTOOL_APPLIED_VERSION found" >&6; } test "$INTLTOOL_APPLIED_VERSION_AS_INT" -ge "$INTLTOOL_REQUIRED_VERSION_AS_INT" || as_fn_error $? "Your intltool is too old. You need intltool 0.35.0 or later." "$LINENO" 5 fi # Extract the first word of "intltool-update", so it can be a program name with args. set dummy intltool-update; ac_word=$2 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 $as_echo_n "checking for $ac_word... " >&6; } if ${ac_cv_path_INTLTOOL_UPDATE+:} false; then : $as_echo_n "(cached) " >&6 else case $INTLTOOL_UPDATE in [\\/]* | ?:[\\/]*) ac_cv_path_INTLTOOL_UPDATE="$INTLTOOL_UPDATE" # Let the user override the test with a path. ;; *) as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH do IFS=$as_save_IFS test -z "$as_dir" && as_dir=. for ac_exec_ext in '' $ac_executable_extensions; do if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then ac_cv_path_INTLTOOL_UPDATE="$as_dir/$ac_word$ac_exec_ext" $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 break 2 fi done done IFS=$as_save_IFS ;; esac fi INTLTOOL_UPDATE=$ac_cv_path_INTLTOOL_UPDATE if test -n "$INTLTOOL_UPDATE"; then { $as_echo "$as_me:${as_lineno-$LINENO}: result: $INTLTOOL_UPDATE" >&5 $as_echo "$INTLTOOL_UPDATE" >&6; } else { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } fi # Extract the first word of "intltool-merge", so it can be a program name with args. set dummy intltool-merge; ac_word=$2 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 $as_echo_n "checking for $ac_word... " >&6; } if ${ac_cv_path_INTLTOOL_MERGE+:} false; then : $as_echo_n "(cached) " >&6 else case $INTLTOOL_MERGE in [\\/]* | ?:[\\/]*) ac_cv_path_INTLTOOL_MERGE="$INTLTOOL_MERGE" # Let the user override the test with a path. ;; *) as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH do IFS=$as_save_IFS test -z "$as_dir" && as_dir=. for ac_exec_ext in '' $ac_executable_extensions; do if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then ac_cv_path_INTLTOOL_MERGE="$as_dir/$ac_word$ac_exec_ext" $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 break 2 fi done done IFS=$as_save_IFS ;; esac fi INTLTOOL_MERGE=$ac_cv_path_INTLTOOL_MERGE if test -n "$INTLTOOL_MERGE"; then { $as_echo "$as_me:${as_lineno-$LINENO}: result: $INTLTOOL_MERGE" >&5 $as_echo "$INTLTOOL_MERGE" >&6; } else { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } fi # Extract the first word of "intltool-extract", so it can be a program name with args. set dummy intltool-extract; ac_word=$2 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 $as_echo_n "checking for $ac_word... " >&6; } if ${ac_cv_path_INTLTOOL_EXTRACT+:} false; then : $as_echo_n "(cached) " >&6 else case $INTLTOOL_EXTRACT in [\\/]* | ?:[\\/]*) ac_cv_path_INTLTOOL_EXTRACT="$INTLTOOL_EXTRACT" # Let the user override the test with a path. ;; *) as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH do IFS=$as_save_IFS test -z "$as_dir" && as_dir=. for ac_exec_ext in '' $ac_executable_extensions; do if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then ac_cv_path_INTLTOOL_EXTRACT="$as_dir/$ac_word$ac_exec_ext" $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 break 2 fi done done IFS=$as_save_IFS ;; esac fi INTLTOOL_EXTRACT=$ac_cv_path_INTLTOOL_EXTRACT if test -n "$INTLTOOL_EXTRACT"; then { $as_echo "$as_me:${as_lineno-$LINENO}: result: $INTLTOOL_EXTRACT" >&5 $as_echo "$INTLTOOL_EXTRACT" >&6; } else { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } fi if test -z "$INTLTOOL_UPDATE" -o -z "$INTLTOOL_MERGE" -o -z "$INTLTOOL_EXTRACT"; then as_fn_error $? "The intltool scripts were not found. Please install intltool." "$LINENO" 5 fi if test -z "$AM_DEFAULT_VERBOSITY"; then AM_DEFAULT_VERBOSITY=1 fi INTLTOOL_V_MERGE='$(INTLTOOL__v_MERGE_$(V))' INTLTOOL__v_MERGE_='$(INTLTOOL__v_MERGE_$(AM_DEFAULT_VERBOSITY))' INTLTOOL__v_MERGE_0='@echo " ITMRG " $@;' INTLTOOL_V_MERGE_OPTIONS='$(intltool__v_merge_options_$(V))' intltool__v_merge_options_='$(intltool__v_merge_options_$(AM_DEFAULT_VERBOSITY))' intltool__v_merge_options_0='-q' INTLTOOL_DESKTOP_RULE='%.desktop: %.desktop.in $(INTLTOOL_MERGE) $(wildcard $(top_srcdir)/po/*.po) ; $(INTLTOOL_V_MERGE)LC_ALL=C $(INTLTOOL_MERGE) $(INTLTOOL_V_MERGE_OPTIONS) -d -u -c $(top_builddir)/po/.intltool-merge-cache $(top_srcdir)/po $< $@' INTLTOOL_DIRECTORY_RULE='%.directory: %.directory.in $(INTLTOOL_MERGE) $(wildcard $(top_srcdir)/po/*.po) ; $(INTLTOOL_V_MERGE)LC_ALL=C $(INTLTOOL_MERGE) $(INTLTOOL_V_MERGE_OPTIONS) -d -u -c $(top_builddir)/po/.intltool-merge-cache $(top_srcdir)/po $< $@' INTLTOOL_KEYS_RULE='%.keys: %.keys.in $(INTLTOOL_MERGE) $(wildcard $(top_srcdir)/po/*.po) ; $(INTLTOOL_V_MERGE)LC_ALL=C $(INTLTOOL_MERGE) $(INTLTOOL_V_MERGE_OPTIONS) -k -u -c $(top_builddir)/po/.intltool-merge-cache $(top_srcdir)/po $< $@' INTLTOOL_PROP_RULE='%.prop: %.prop.in $(INTLTOOL_MERGE) $(wildcard $(top_srcdir)/po/*.po) ; $(INTLTOOL_V_MERGE)LC_ALL=C $(INTLTOOL_MERGE) $(INTLTOOL_V_MERGE_OPTIONS) -d -u -c $(top_builddir)/po/.intltool-merge-cache $(top_srcdir)/po $< $@' INTLTOOL_OAF_RULE='%.oaf: %.oaf.in $(INTLTOOL_MERGE) $(wildcard $(top_srcdir)/po/*.po) ; $(INTLTOOL_V_MERGE)LC_ALL=C $(INTLTOOL_MERGE) $(INTLTOOL_V_MERGE_OPTIONS) -o -p $(top_srcdir)/po $< $@' INTLTOOL_PONG_RULE='%.pong: %.pong.in $(INTLTOOL_MERGE) $(wildcard $(top_srcdir)/po/*.po) ; $(INTLTOOL_V_MERGE)LC_ALL=C $(INTLTOOL_MERGE) $(INTLTOOL_V_MERGE_OPTIONS) -x -u -c $(top_builddir)/po/.intltool-merge-cache $(top_srcdir)/po $< $@' INTLTOOL_SERVER_RULE='%.server: %.server.in $(INTLTOOL_MERGE) $(wildcard $(top_srcdir)/po/*.po) ; $(INTLTOOL_V_MERGE)LC_ALL=C $(INTLTOOL_MERGE) $(INTLTOOL_V_MERGE_OPTIONS) -o -u -c $(top_builddir)/po/.intltool-merge-cache $(top_srcdir)/po $< $@' INTLTOOL_SHEET_RULE='%.sheet: %.sheet.in $(INTLTOOL_MERGE) $(wildcard $(top_srcdir)/po/*.po) ; $(INTLTOOL_V_MERGE)LC_ALL=C $(INTLTOOL_MERGE) $(INTLTOOL_V_MERGE_OPTIONS) -x -u -c $(top_builddir)/po/.intltool-merge-cache $(top_srcdir)/po $< $@' INTLTOOL_SOUNDLIST_RULE='%.soundlist: %.soundlist.in $(INTLTOOL_MERGE) $(wildcard $(top_srcdir)/po/*.po) ; $(INTLTOOL_V_MERGE)LC_ALL=C $(INTLTOOL_MERGE) $(INTLTOOL_V_MERGE_OPTIONS) -d -u -c $(top_builddir)/po/.intltool-merge-cache $(top_srcdir)/po $< $@' INTLTOOL_UI_RULE='%.ui: %.ui.in $(INTLTOOL_MERGE) $(wildcard $(top_srcdir)/po/*.po) ; $(INTLTOOL_V_MERGE)LC_ALL=C $(INTLTOOL_MERGE) $(INTLTOOL_V_MERGE_OPTIONS) -x -u -c $(top_builddir)/po/.intltool-merge-cache $(top_srcdir)/po $< $@' INTLTOOL_XML_RULE='%.xml: %.xml.in $(INTLTOOL_MERGE) $(wildcard $(top_srcdir)/po/*.po) ; $(INTLTOOL_V_MERGE)LC_ALL=C $(INTLTOOL_MERGE) $(INTLTOOL_V_MERGE_OPTIONS) -x -u -c $(top_builddir)/po/.intltool-merge-cache $(top_srcdir)/po $< $@' if test "$INTLTOOL_APPLIED_VERSION_AS_INT" -ge 5000; then INTLTOOL_XML_NOMERGE_RULE='%.xml: %.xml.in $(INTLTOOL_MERGE) ; $(INTLTOOL_V_MERGE)LC_ALL=C $(INTLTOOL_MERGE) $(INTLTOOL_V_MERGE_OPTIONS) -x -u --no-translations $< $@' else INTLTOOL_XML_NOMERGE_RULE='%.xml: %.xml.in $(INTLTOOL_MERGE) ; $(INTLTOOL_V_MERGE)_it_tmp_dir=tmp.intltool.$$RANDOM && mkdir $$_it_tmp_dir && LC_ALL=C $(INTLTOOL_MERGE) $(INTLTOOL_V_MERGE_OPTIONS) -x -u $$_it_tmp_dir $< $@ && rmdir $$_it_tmp_dir' fi INTLTOOL_XAM_RULE='%.xam: %.xml.in $(INTLTOOL_MERGE) $(wildcard $(top_srcdir)/po/*.po) ; $(INTLTOOL_V_MERGE)LC_ALL=C $(INTLTOOL_MERGE) $(INTLTOOL_V_MERGE_OPTIONS) -x -u -c $(top_builddir)/po/.intltool-merge-cache $(top_srcdir)/po $< $@' INTLTOOL_KBD_RULE='%.kbd: %.kbd.in $(INTLTOOL_MERGE) $(wildcard $(top_srcdir)/po/*.po) ; $(INTLTOOL_V_MERGE)LC_ALL=C $(INTLTOOL_MERGE) $(INTLTOOL_V_MERGE_OPTIONS) -x -u -m -c $(top_builddir)/po/.intltool-merge-cache $(top_srcdir)/po $< $@' INTLTOOL_CAVES_RULE='%.caves: %.caves.in $(INTLTOOL_MERGE) $(wildcard $(top_srcdir)/po/*.po) ; $(INTLTOOL_V_MERGE)LC_ALL=C $(INTLTOOL_MERGE) $(INTLTOOL_V_MERGE_OPTIONS) -d -u -c $(top_builddir)/po/.intltool-merge-cache $(top_srcdir)/po $< $@' INTLTOOL_SCHEMAS_RULE='%.schemas: %.schemas.in $(INTLTOOL_MERGE) $(wildcard $(top_srcdir)/po/*.po) ; $(INTLTOOL_V_MERGE)LC_ALL=C $(INTLTOOL_MERGE) $(INTLTOOL_V_MERGE_OPTIONS) -s -u -c $(top_builddir)/po/.intltool-merge-cache $(top_srcdir)/po $< $@' INTLTOOL_THEME_RULE='%.theme: %.theme.in $(INTLTOOL_MERGE) $(wildcard $(top_srcdir)/po/*.po) ; $(INTLTOOL_V_MERGE)LC_ALL=C $(INTLTOOL_MERGE) $(INTLTOOL_V_MERGE_OPTIONS) -d -u -c $(top_builddir)/po/.intltool-merge-cache $(top_srcdir)/po $< $@' INTLTOOL_SERVICE_RULE='%.service: %.service.in $(INTLTOOL_MERGE) $(wildcard $(top_srcdir)/po/*.po) ; $(INTLTOOL_V_MERGE)LC_ALL=C $(INTLTOOL_MERGE) $(INTLTOOL_V_MERGE_OPTIONS) -d -u -c $(top_builddir)/po/.intltool-merge-cache $(top_srcdir)/po $< $@' INTLTOOL_POLICY_RULE='%.policy: %.policy.in $(INTLTOOL_MERGE) $(wildcard $(top_srcdir)/po/*.po) ; $(INTLTOOL_V_MERGE)LC_ALL=C $(INTLTOOL_MERGE) $(INTLTOOL_V_MERGE_OPTIONS) -x -u -c $(top_builddir)/po/.intltool-merge-cache $(top_srcdir)/po $< $@' # Check the gettext tools to make sure they are GNU # Extract the first word of "xgettext", so it can be a program name with args. set dummy xgettext; ac_word=$2 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 $as_echo_n "checking for $ac_word... " >&6; } if ${ac_cv_path_XGETTEXT+:} false; then : $as_echo_n "(cached) " >&6 else case $XGETTEXT in [\\/]* | ?:[\\/]*) ac_cv_path_XGETTEXT="$XGETTEXT" # Let the user override the test with a path. ;; *) as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH do IFS=$as_save_IFS test -z "$as_dir" && as_dir=. for ac_exec_ext in '' $ac_executable_extensions; do if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then ac_cv_path_XGETTEXT="$as_dir/$ac_word$ac_exec_ext" $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 break 2 fi done done IFS=$as_save_IFS ;; esac fi XGETTEXT=$ac_cv_path_XGETTEXT if test -n "$XGETTEXT"; then { $as_echo "$as_me:${as_lineno-$LINENO}: result: $XGETTEXT" >&5 $as_echo "$XGETTEXT" >&6; } else { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } fi # Extract the first word of "msgmerge", so it can be a program name with args. set dummy msgmerge; ac_word=$2 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 $as_echo_n "checking for $ac_word... " >&6; } if ${ac_cv_path_MSGMERGE+:} false; then : $as_echo_n "(cached) " >&6 else case $MSGMERGE in [\\/]* | ?:[\\/]*) ac_cv_path_MSGMERGE="$MSGMERGE" # Let the user override the test with a path. ;; *) as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH do IFS=$as_save_IFS test -z "$as_dir" && as_dir=. for ac_exec_ext in '' $ac_executable_extensions; do if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then ac_cv_path_MSGMERGE="$as_dir/$ac_word$ac_exec_ext" $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 break 2 fi done done IFS=$as_save_IFS ;; esac fi MSGMERGE=$ac_cv_path_MSGMERGE if test -n "$MSGMERGE"; then { $as_echo "$as_me:${as_lineno-$LINENO}: result: $MSGMERGE" >&5 $as_echo "$MSGMERGE" >&6; } else { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } fi # Extract the first word of "msgfmt", so it can be a program name with args. set dummy msgfmt; ac_word=$2 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 $as_echo_n "checking for $ac_word... " >&6; } if ${ac_cv_path_MSGFMT+:} false; then : $as_echo_n "(cached) " >&6 else case $MSGFMT in [\\/]* | ?:[\\/]*) ac_cv_path_MSGFMT="$MSGFMT" # Let the user override the test with a path. ;; *) as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH do IFS=$as_save_IFS test -z "$as_dir" && as_dir=. for ac_exec_ext in '' $ac_executable_extensions; do if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then ac_cv_path_MSGFMT="$as_dir/$ac_word$ac_exec_ext" $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 break 2 fi done done IFS=$as_save_IFS ;; esac fi MSGFMT=$ac_cv_path_MSGFMT if test -n "$MSGFMT"; then { $as_echo "$as_me:${as_lineno-$LINENO}: result: $MSGFMT" >&5 $as_echo "$MSGFMT" >&6; } else { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } fi # Extract the first word of "gmsgfmt", so it can be a program name with args. set dummy gmsgfmt; ac_word=$2 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 $as_echo_n "checking for $ac_word... " >&6; } if ${ac_cv_path_GMSGFMT+:} false; then : $as_echo_n "(cached) " >&6 else case $GMSGFMT in [\\/]* | ?:[\\/]*) ac_cv_path_GMSGFMT="$GMSGFMT" # Let the user override the test with a path. ;; *) as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH do IFS=$as_save_IFS test -z "$as_dir" && as_dir=. for ac_exec_ext in '' $ac_executable_extensions; do if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then ac_cv_path_GMSGFMT="$as_dir/$ac_word$ac_exec_ext" $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 break 2 fi done done IFS=$as_save_IFS test -z "$ac_cv_path_GMSGFMT" && ac_cv_path_GMSGFMT="$MSGFMT" ;; esac fi GMSGFMT=$ac_cv_path_GMSGFMT if test -n "$GMSGFMT"; then { $as_echo "$as_me:${as_lineno-$LINENO}: result: $GMSGFMT" >&5 $as_echo "$GMSGFMT" >&6; } else { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } fi if test -z "$XGETTEXT" -o -z "$MSGMERGE" -o -z "$MSGFMT"; then as_fn_error $? "GNU gettext tools not found; required for intltool" "$LINENO" 5 fi xgversion="`$XGETTEXT --version|grep '(GNU ' 2> /dev/null`" mmversion="`$MSGMERGE --version|grep '(GNU ' 2> /dev/null`" mfversion="`$MSGFMT --version|grep '(GNU ' 2> /dev/null`" if test -z "$xgversion" -o -z "$mmversion" -o -z "$mfversion"; then as_fn_error $? "GNU gettext tools not found; required for intltool" "$LINENO" 5 fi # Extract the first word of "perl", so it can be a program name with args. set dummy perl; ac_word=$2 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 $as_echo_n "checking for $ac_word... " >&6; } if ${ac_cv_path_INTLTOOL_PERL+:} false; then : $as_echo_n "(cached) " >&6 else case $INTLTOOL_PERL in [\\/]* | ?:[\\/]*) ac_cv_path_INTLTOOL_PERL="$INTLTOOL_PERL" # Let the user override the test with a path. ;; *) as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH do IFS=$as_save_IFS test -z "$as_dir" && as_dir=. for ac_exec_ext in '' $ac_executable_extensions; do if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then ac_cv_path_INTLTOOL_PERL="$as_dir/$ac_word$ac_exec_ext" $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 break 2 fi done done IFS=$as_save_IFS ;; esac fi INTLTOOL_PERL=$ac_cv_path_INTLTOOL_PERL if test -n "$INTLTOOL_PERL"; then { $as_echo "$as_me:${as_lineno-$LINENO}: result: $INTLTOOL_PERL" >&5 $as_echo "$INTLTOOL_PERL" >&6; } else { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } fi if test -z "$INTLTOOL_PERL"; then as_fn_error $? "perl not found" "$LINENO" 5 fi { $as_echo "$as_me:${as_lineno-$LINENO}: checking for perl >= 5.8.1" >&5 $as_echo_n "checking for perl >= 5.8.1... " >&6; } $INTLTOOL_PERL -e "use 5.8.1;" > /dev/null 2>&1 if test $? -ne 0; then as_fn_error $? "perl 5.8.1 is required for intltool" "$LINENO" 5 else IT_PERL_VERSION=`$INTLTOOL_PERL -e "printf '%vd', $^V"` { $as_echo "$as_me:${as_lineno-$LINENO}: result: $IT_PERL_VERSION" >&5 $as_echo "$IT_PERL_VERSION" >&6; } fi if test "x" != "xno-xml"; then { $as_echo "$as_me:${as_lineno-$LINENO}: checking for XML::Parser" >&5 $as_echo_n "checking for XML::Parser... " >&6; } if `$INTLTOOL_PERL -e "require XML::Parser" 2>/dev/null`; then { $as_echo "$as_me:${as_lineno-$LINENO}: result: ok" >&5 $as_echo "ok" >&6; } else as_fn_error $? "XML::Parser perl module is required for intltool" "$LINENO" 5 fi fi # Substitute ALL_LINGUAS so we can use it in po/Makefile # Set DATADIRNAME correctly if it is not set yet # (copied from glib-gettext.m4) if test -z "$DATADIRNAME"; then cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ int main () { extern int _nl_msg_cat_cntr; return _nl_msg_cat_cntr ; return 0; } _ACEOF if ac_fn_c_try_link "$LINENO"; then : DATADIRNAME=share else case $host in *-*-solaris*) ac_fn_c_check_func "$LINENO" "bind_textdomain_codeset" "ac_cv_func_bind_textdomain_codeset" if test "x$ac_cv_func_bind_textdomain_codeset" = xyes; then : DATADIRNAME=share else DATADIRNAME=lib fi ;; *) DATADIRNAME=lib ;; esac fi rm -f core conftest.err conftest.$ac_objext \ conftest$ac_exeext conftest.$ac_ext fi # Xtest extension { $as_echo "$as_me:${as_lineno-$LINENO}: checking for X" >&5 $as_echo_n "checking for X... " >&6; } # Check whether --with-x was given. if test "${with_x+set}" = set; then : withval=$with_x; fi # $have_x is `yes', `no', `disabled', or empty when we do not yet know. if test "x$with_x" = xno; then # The user explicitly disabled X. have_x=disabled else case $x_includes,$x_libraries in #( *\'*) as_fn_error $? "cannot use X directory names containing '" "$LINENO" 5;; #( *,NONE | NONE,*) if ${ac_cv_have_x+:} false; then : $as_echo_n "(cached) " >&6 else # One or both of the vars are not set, and there is no cached value. ac_x_includes=no ac_x_libraries=no rm -f -r conftest.dir if mkdir conftest.dir; then cd conftest.dir cat >Imakefile <<'_ACEOF' incroot: @echo incroot='${INCROOT}' usrlibdir: @echo usrlibdir='${USRLIBDIR}' libdir: @echo libdir='${LIBDIR}' _ACEOF if (export CC; ${XMKMF-xmkmf}) >/dev/null 2>/dev/null && test -f Makefile; then # GNU make sometimes prints "make[1]: Entering ...", which would confuse us. for ac_var in incroot usrlibdir libdir; do eval "ac_im_$ac_var=\`\${MAKE-make} $ac_var 2>/dev/null | sed -n 's/^$ac_var=//p'\`" done # Open Windows xmkmf reportedly sets LIBDIR instead of USRLIBDIR. for ac_extension in a so sl dylib la dll; do if test ! -f "$ac_im_usrlibdir/libX11.$ac_extension" && test -f "$ac_im_libdir/libX11.$ac_extension"; then ac_im_usrlibdir=$ac_im_libdir; break fi done # Screen out bogus values from the imake configuration. They are # bogus both because they are the default anyway, and because # using them would break gcc on systems where it needs fixed includes. case $ac_im_incroot in /usr/include) ac_x_includes= ;; *) test -f "$ac_im_incroot/X11/Xos.h" && ac_x_includes=$ac_im_incroot;; esac case $ac_im_usrlibdir in /usr/lib | /usr/lib64 | /lib | /lib64) ;; *) test -d "$ac_im_usrlibdir" && ac_x_libraries=$ac_im_usrlibdir ;; esac fi cd .. rm -f -r conftest.dir fi # Standard set of common directories for X headers. # Check X11 before X11Rn because it is often a symlink to the current release. ac_x_header_dirs=' /usr/X11/include /usr/X11R7/include /usr/X11R6/include /usr/X11R5/include /usr/X11R4/include /usr/include/X11 /usr/include/X11R7 /usr/include/X11R6 /usr/include/X11R5 /usr/include/X11R4 /usr/local/X11/include /usr/local/X11R7/include /usr/local/X11R6/include /usr/local/X11R5/include /usr/local/X11R4/include /usr/local/include/X11 /usr/local/include/X11R7 /usr/local/include/X11R6 /usr/local/include/X11R5 /usr/local/include/X11R4 /usr/X386/include /usr/x386/include /usr/XFree86/include/X11 /usr/include /usr/local/include /usr/unsupported/include /usr/athena/include /usr/local/x11r5/include /usr/lpp/Xamples/include /usr/openwin/include /usr/openwin/share/include' if test "$ac_x_includes" = no; then # Guess where to find include files, by looking for Xlib.h. # First, try using that file with no special directory specified. cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ #include _ACEOF if ac_fn_c_try_cpp "$LINENO"; then : # We can compile using X headers with no special include directory. ac_x_includes= else for ac_dir in $ac_x_header_dirs; do if test -r "$ac_dir/X11/Xlib.h"; then ac_x_includes=$ac_dir break fi done fi rm -f conftest.err conftest.i conftest.$ac_ext fi # $ac_x_includes = no if test "$ac_x_libraries" = no; then # Check for the libraries. # See if we find them without any special options. # Don't add to $LIBS permanently. ac_save_LIBS=$LIBS LIBS="-lX11 $LIBS" cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ #include int main () { XrmInitialize () ; return 0; } _ACEOF if ac_fn_c_try_link "$LINENO"; then : LIBS=$ac_save_LIBS # We can link X programs with no special library path. ac_x_libraries= else LIBS=$ac_save_LIBS for ac_dir in `$as_echo "$ac_x_includes $ac_x_header_dirs" | sed s/include/lib/g` do # Don't even attempt the hair of trying to link an X program! for ac_extension in a so sl dylib la dll; do if test -r "$ac_dir/libX11.$ac_extension"; then ac_x_libraries=$ac_dir break 2 fi done done fi rm -f core conftest.err conftest.$ac_objext \ conftest$ac_exeext conftest.$ac_ext fi # $ac_x_libraries = no case $ac_x_includes,$ac_x_libraries in #( no,* | *,no | *\'*) # Didn't find X, or a directory has "'" in its name. ac_cv_have_x="have_x=no";; #( *) # Record where we found X for the cache. ac_cv_have_x="have_x=yes\ ac_x_includes='$ac_x_includes'\ ac_x_libraries='$ac_x_libraries'" esac fi ;; #( *) have_x=yes;; esac eval "$ac_cv_have_x" fi # $with_x != no if test "$have_x" != yes; then { $as_echo "$as_me:${as_lineno-$LINENO}: result: $have_x" >&5 $as_echo "$have_x" >&6; } no_x=yes else # If each of the values was on the command line, it overrides each guess. test "x$x_includes" = xNONE && x_includes=$ac_x_includes test "x$x_libraries" = xNONE && x_libraries=$ac_x_libraries # Update the cache value to reflect the command line values. ac_cv_have_x="have_x=yes\ ac_x_includes='$x_includes'\ ac_x_libraries='$x_libraries'" { $as_echo "$as_me:${as_lineno-$LINENO}: result: libraries $x_libraries, headers $x_includes" >&5 $as_echo "libraries $x_libraries, headers $x_includes" >&6; } fi { $as_echo "$as_me:${as_lineno-$LINENO}: checking for XTestFakeKeyEvent in -lXtst" >&5 $as_echo_n "checking for XTestFakeKeyEvent in -lXtst... " >&6; } if ${ac_cv_lib_Xtst_XTestFakeKeyEvent+:} false; then : $as_echo_n "(cached) " >&6 else ac_check_lib_save_LIBS=$LIBS LIBS="-lXtst $LIBS" cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ /* Override any GCC internal prototype to avoid an error. Use char because int might match the return type of a GCC builtin and then its argument prototype would still apply. */ #ifdef __cplusplus extern "C" #endif char XTestFakeKeyEvent (); int main () { return XTestFakeKeyEvent (); ; return 0; } _ACEOF if ac_fn_c_try_link "$LINENO"; then : ac_cv_lib_Xtst_XTestFakeKeyEvent=yes else ac_cv_lib_Xtst_XTestFakeKeyEvent=no fi rm -f core conftest.err conftest.$ac_objext \ conftest$ac_exeext conftest.$ac_ext LIBS=$ac_check_lib_save_LIBS fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_Xtst_XTestFakeKeyEvent" >&5 $as_echo "$ac_cv_lib_Xtst_XTestFakeKeyEvent" >&6; } if test "x$ac_cv_lib_Xtst_XTestFakeKeyEvent" = xyes; then : cat >>confdefs.h <<_ACEOF #define HAVE_LIBXTST 1 _ACEOF LIBS="-lXtst $LIBS" else as_fn_error $? "XTest library not found or outdated! Please install the latest libxtst-dev package." "$LINENO" 5 fi # X11 library check { $as_echo "$as_me:${as_lineno-$LINENO}: checking for XKeysymToString in -lX11" >&5 $as_echo_n "checking for XKeysymToString in -lX11... " >&6; } if ${ac_cv_lib_X11_XKeysymToString+:} false; then : $as_echo_n "(cached) " >&6 else ac_check_lib_save_LIBS=$LIBS LIBS="-lX11 $LIBS" cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ /* Override any GCC internal prototype to avoid an error. Use char because int might match the return type of a GCC builtin and then its argument prototype would still apply. */ #ifdef __cplusplus extern "C" #endif char XKeysymToString (); int main () { return XKeysymToString (); ; return 0; } _ACEOF if ac_fn_c_try_link "$LINENO"; then : ac_cv_lib_X11_XKeysymToString=yes else ac_cv_lib_X11_XKeysymToString=no fi rm -f core conftest.err conftest.$ac_objext \ conftest$ac_exeext conftest.$ac_ext LIBS=$ac_check_lib_save_LIBS fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_X11_XKeysymToString" >&5 $as_echo "$ac_cv_lib_X11_XKeysymToString" >&6; } if test "x$ac_cv_lib_X11_XKeysymToString" = xyes; then : cat >>confdefs.h <<_ACEOF #define HAVE_LIBX11 1 _ACEOF LIBS="-lX11 $LIBS" fi # check for GTK3 pkg_modules="gtk+-3.0 >= 3.0.0" if test "x$ac_cv_env_PKG_CONFIG_set" != "xset"; then if test -n "$ac_tool_prefix"; then # Extract the first word of "${ac_tool_prefix}pkg-config", so it can be a program name with args. set dummy ${ac_tool_prefix}pkg-config; ac_word=$2 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 $as_echo_n "checking for $ac_word... " >&6; } if ${ac_cv_path_PKG_CONFIG+:} false; then : $as_echo_n "(cached) " >&6 else case $PKG_CONFIG in [\\/]* | ?:[\\/]*) ac_cv_path_PKG_CONFIG="$PKG_CONFIG" # Let the user override the test with a path. ;; *) as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH do IFS=$as_save_IFS test -z "$as_dir" && as_dir=. for ac_exec_ext in '' $ac_executable_extensions; do if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then ac_cv_path_PKG_CONFIG="$as_dir/$ac_word$ac_exec_ext" $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 break 2 fi done done IFS=$as_save_IFS ;; esac fi PKG_CONFIG=$ac_cv_path_PKG_CONFIG if test -n "$PKG_CONFIG"; then { $as_echo "$as_me:${as_lineno-$LINENO}: result: $PKG_CONFIG" >&5 $as_echo "$PKG_CONFIG" >&6; } else { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } fi fi if test -z "$ac_cv_path_PKG_CONFIG"; then ac_pt_PKG_CONFIG=$PKG_CONFIG # Extract the first word of "pkg-config", so it can be a program name with args. set dummy pkg-config; ac_word=$2 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 $as_echo_n "checking for $ac_word... " >&6; } if ${ac_cv_path_ac_pt_PKG_CONFIG+:} false; then : $as_echo_n "(cached) " >&6 else case $ac_pt_PKG_CONFIG in [\\/]* | ?:[\\/]*) ac_cv_path_ac_pt_PKG_CONFIG="$ac_pt_PKG_CONFIG" # Let the user override the test with a path. ;; *) as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH do IFS=$as_save_IFS test -z "$as_dir" && as_dir=. for ac_exec_ext in '' $ac_executable_extensions; do if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then ac_cv_path_ac_pt_PKG_CONFIG="$as_dir/$ac_word$ac_exec_ext" $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 break 2 fi done done IFS=$as_save_IFS ;; esac fi ac_pt_PKG_CONFIG=$ac_cv_path_ac_pt_PKG_CONFIG if test -n "$ac_pt_PKG_CONFIG"; then { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_pt_PKG_CONFIG" >&5 $as_echo "$ac_pt_PKG_CONFIG" >&6; } else { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } fi if test "x$ac_pt_PKG_CONFIG" = x; then PKG_CONFIG="" else case $cross_compiling:$ac_tool_warned in yes:) { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: using cross tools not prefixed with host triplet" >&5 $as_echo "$as_me: WARNING: using cross tools not prefixed with host triplet" >&2;} ac_tool_warned=yes ;; esac PKG_CONFIG=$ac_pt_PKG_CONFIG fi else PKG_CONFIG="$ac_cv_path_PKG_CONFIG" fi fi if test -n "$PKG_CONFIG"; then _pkg_min_version=0.9.0 { $as_echo "$as_me:${as_lineno-$LINENO}: checking pkg-config is at least version $_pkg_min_version" >&5 $as_echo_n "checking pkg-config is at least version $_pkg_min_version... " >&6; } if $PKG_CONFIG --atleast-pkgconfig-version $_pkg_min_version; then { $as_echo "$as_me:${as_lineno-$LINENO}: result: yes" >&5 $as_echo "yes" >&6; } else { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } PKG_CONFIG="" fi fi pkg_failed=no { $as_echo "$as_me:${as_lineno-$LINENO}: checking for GTK3" >&5 $as_echo_n "checking for GTK3... " >&6; } if test -n "$GTK3_CFLAGS"; then pkg_cv_GTK3_CFLAGS="$GTK3_CFLAGS" elif test -n "$PKG_CONFIG"; then if test -n "$PKG_CONFIG" && \ { { $as_echo "$as_me:${as_lineno-$LINENO}: \$PKG_CONFIG --exists --print-errors \"\$pkg_modules\""; } >&5 ($PKG_CONFIG --exists --print-errors "$pkg_modules") 2>&5 ac_status=$? $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 test $ac_status = 0; }; then pkg_cv_GTK3_CFLAGS=`$PKG_CONFIG --cflags "$pkg_modules" 2>/dev/null` else pkg_failed=yes fi else pkg_failed=untried fi if test -n "$GTK3_LIBS"; then pkg_cv_GTK3_LIBS="$GTK3_LIBS" elif test -n "$PKG_CONFIG"; then if test -n "$PKG_CONFIG" && \ { { $as_echo "$as_me:${as_lineno-$LINENO}: \$PKG_CONFIG --exists --print-errors \"\$pkg_modules\""; } >&5 ($PKG_CONFIG --exists --print-errors "$pkg_modules") 2>&5 ac_status=$? $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 test $ac_status = 0; }; then pkg_cv_GTK3_LIBS=`$PKG_CONFIG --libs "$pkg_modules" 2>/dev/null` else pkg_failed=yes fi else pkg_failed=untried fi if test $pkg_failed = yes; then { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } if $PKG_CONFIG --atleast-pkgconfig-version 0.20; then _pkg_short_errors_supported=yes else _pkg_short_errors_supported=no fi if test $_pkg_short_errors_supported = yes; then GTK3_PKG_ERRORS=`$PKG_CONFIG --short-errors --print-errors "$pkg_modules" 2>&1` else GTK3_PKG_ERRORS=`$PKG_CONFIG --print-errors "$pkg_modules" 2>&1` fi # Put the nasty error message in config.log where it belongs echo "$GTK3_PKG_ERRORS" >&5 as_fn_error $? "Package requirements ($pkg_modules) were not met: $GTK3_PKG_ERRORS Consider adjusting the PKG_CONFIG_PATH environment variable if you installed software in a non-standard prefix. Alternatively, you may set the environment variables GTK3_CFLAGS and GTK3_LIBS to avoid the need to call pkg-config. See the pkg-config man page for more details." "$LINENO" 5 elif test $pkg_failed = untried; then { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } { { $as_echo "$as_me:${as_lineno-$LINENO}: error: in \`$ac_pwd':" >&5 $as_echo "$as_me: error: in \`$ac_pwd':" >&2;} as_fn_error $? "The pkg-config script could not be found or is too old. Make sure it is in your PATH or set the PKG_CONFIG environment variable to the full path to pkg-config. Alternatively, you may set the environment variables GTK3_CFLAGS and GTK3_LIBS to avoid the need to call pkg-config. See the pkg-config man page for more details. To get pkg-config, see . See \`config.log' for more details" "$LINENO" 5; } else GTK3_CFLAGS=$pkg_cv_GTK3_CFLAGS GTK3_LIBS=$pkg_cv_GTK3_LIBS { $as_echo "$as_me:${as_lineno-$LINENO}: result: yes" >&5 $as_echo "yes" >&6; } fi # check for LIBXML2 pkg_modules="libxml-2.0 >= 2.4.0" pkg_failed=no { $as_echo "$as_me:${as_lineno-$LINENO}: checking for LIBXML2" >&5 $as_echo_n "checking for LIBXML2... " >&6; } if test -n "$LIBXML2_CFLAGS"; then pkg_cv_LIBXML2_CFLAGS="$LIBXML2_CFLAGS" elif test -n "$PKG_CONFIG"; then if test -n "$PKG_CONFIG" && \ { { $as_echo "$as_me:${as_lineno-$LINENO}: \$PKG_CONFIG --exists --print-errors \"\$pkg_modules\""; } >&5 ($PKG_CONFIG --exists --print-errors "$pkg_modules") 2>&5 ac_status=$? $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 test $ac_status = 0; }; then pkg_cv_LIBXML2_CFLAGS=`$PKG_CONFIG --cflags "$pkg_modules" 2>/dev/null` else pkg_failed=yes fi else pkg_failed=untried fi if test -n "$LIBXML2_LIBS"; then pkg_cv_LIBXML2_LIBS="$LIBXML2_LIBS" elif test -n "$PKG_CONFIG"; then if test -n "$PKG_CONFIG" && \ { { $as_echo "$as_me:${as_lineno-$LINENO}: \$PKG_CONFIG --exists --print-errors \"\$pkg_modules\""; } >&5 ($PKG_CONFIG --exists --print-errors "$pkg_modules") 2>&5 ac_status=$? $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 test $ac_status = 0; }; then pkg_cv_LIBXML2_LIBS=`$PKG_CONFIG --libs "$pkg_modules" 2>/dev/null` else pkg_failed=yes fi else pkg_failed=untried fi if test $pkg_failed = yes; then { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } if $PKG_CONFIG --atleast-pkgconfig-version 0.20; then _pkg_short_errors_supported=yes else _pkg_short_errors_supported=no fi if test $_pkg_short_errors_supported = yes; then LIBXML2_PKG_ERRORS=`$PKG_CONFIG --short-errors --print-errors "$pkg_modules" 2>&1` else LIBXML2_PKG_ERRORS=`$PKG_CONFIG --print-errors "$pkg_modules" 2>&1` fi # Put the nasty error message in config.log where it belongs echo "$LIBXML2_PKG_ERRORS" >&5 as_fn_error $? "Package requirements ($pkg_modules) were not met: $LIBXML2_PKG_ERRORS Consider adjusting the PKG_CONFIG_PATH environment variable if you installed software in a non-standard prefix. Alternatively, you may set the environment variables LIBXML2_CFLAGS and LIBXML2_LIBS to avoid the need to call pkg-config. See the pkg-config man page for more details." "$LINENO" 5 elif test $pkg_failed = untried; then { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } { { $as_echo "$as_me:${as_lineno-$LINENO}: error: in \`$ac_pwd':" >&5 $as_echo "$as_me: error: in \`$ac_pwd':" >&2;} as_fn_error $? "The pkg-config script could not be found or is too old. Make sure it is in your PATH or set the PKG_CONFIG environment variable to the full path to pkg-config. Alternatively, you may set the environment variables LIBXML2_CFLAGS and LIBXML2_LIBS to avoid the need to call pkg-config. See the pkg-config man page for more details. To get pkg-config, see . See \`config.log' for more details" "$LINENO" 5; } else LIBXML2_CFLAGS=$pkg_cv_LIBXML2_CFLAGS LIBXML2_LIBS=$pkg_cv_LIBXML2_LIBS { $as_echo "$as_me:${as_lineno-$LINENO}: result: yes" >&5 $as_echo "yes" >&6; } fi # check for UNIQUE3 pkg_modules="unique-3.0 >= 2.91.0" pkg_failed=no { $as_echo "$as_me:${as_lineno-$LINENO}: checking for UNIQUE3" >&5 $as_echo_n "checking for UNIQUE3... " >&6; } if test -n "$UNIQUE3_CFLAGS"; then pkg_cv_UNIQUE3_CFLAGS="$UNIQUE3_CFLAGS" elif test -n "$PKG_CONFIG"; then if test -n "$PKG_CONFIG" && \ { { $as_echo "$as_me:${as_lineno-$LINENO}: \$PKG_CONFIG --exists --print-errors \"\$pkg_modules\""; } >&5 ($PKG_CONFIG --exists --print-errors "$pkg_modules") 2>&5 ac_status=$? $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 test $ac_status = 0; }; then pkg_cv_UNIQUE3_CFLAGS=`$PKG_CONFIG --cflags "$pkg_modules" 2>/dev/null` else pkg_failed=yes fi else pkg_failed=untried fi if test -n "$UNIQUE3_LIBS"; then pkg_cv_UNIQUE3_LIBS="$UNIQUE3_LIBS" elif test -n "$PKG_CONFIG"; then if test -n "$PKG_CONFIG" && \ { { $as_echo "$as_me:${as_lineno-$LINENO}: \$PKG_CONFIG --exists --print-errors \"\$pkg_modules\""; } >&5 ($PKG_CONFIG --exists --print-errors "$pkg_modules") 2>&5 ac_status=$? $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 test $ac_status = 0; }; then pkg_cv_UNIQUE3_LIBS=`$PKG_CONFIG --libs "$pkg_modules" 2>/dev/null` else pkg_failed=yes fi else pkg_failed=untried fi if test $pkg_failed = yes; then { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } if $PKG_CONFIG --atleast-pkgconfig-version 0.20; then _pkg_short_errors_supported=yes else _pkg_short_errors_supported=no fi if test $_pkg_short_errors_supported = yes; then UNIQUE3_PKG_ERRORS=`$PKG_CONFIG --short-errors --print-errors "$pkg_modules" 2>&1` else UNIQUE3_PKG_ERRORS=`$PKG_CONFIG --print-errors "$pkg_modules" 2>&1` fi # Put the nasty error message in config.log where it belongs echo "$UNIQUE3_PKG_ERRORS" >&5 as_fn_error $? "Package requirements ($pkg_modules) were not met: $UNIQUE3_PKG_ERRORS Consider adjusting the PKG_CONFIG_PATH environment variable if you installed software in a non-standard prefix. Alternatively, you may set the environment variables UNIQUE3_CFLAGS and UNIQUE3_LIBS to avoid the need to call pkg-config. See the pkg-config man page for more details." "$LINENO" 5 elif test $pkg_failed = untried; then { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } { { $as_echo "$as_me:${as_lineno-$LINENO}: error: in \`$ac_pwd':" >&5 $as_echo "$as_me: error: in \`$ac_pwd':" >&2;} as_fn_error $? "The pkg-config script could not be found or is too old. Make sure it is in your PATH or set the PKG_CONFIG environment variable to the full path to pkg-config. Alternatively, you may set the environment variables UNIQUE3_CFLAGS and UNIQUE3_LIBS to avoid the need to call pkg-config. See the pkg-config man page for more details. To get pkg-config, see . See \`config.log' for more details" "$LINENO" 5; } else UNIQUE3_CFLAGS=$pkg_cv_UNIQUE3_CFLAGS UNIQUE3_LIBS=$pkg_cv_UNIQUE3_LIBS { $as_echo "$as_me:${as_lineno-$LINENO}: result: yes" >&5 $as_echo "yes" >&6; } fi GETTEXT_PACKAGE=iok cat >>confdefs.h <<_ACEOF #define GETTEXT_PACKAGE "$GETTEXT_PACKAGE" _ACEOF ALL_LINGUAS="ar as bho bn_IN brx bs ca da de de_CH doi el es fa fr gu hi hne hu it ja kn ko mai ml mni mr nds nl or pa pl pt_BR pt ru sa sat sd sr@latin sr sv ta te th uk zh_CN zh_TW" # On IRIX 5.3, sys/types and inttypes.h are conflicting. for ac_header in sys/types.h sys/stat.h stdlib.h string.h memory.h strings.h \ inttypes.h stdint.h unistd.h do : as_ac_Header=`$as_echo "ac_cv_header_$ac_header" | $as_tr_sh` ac_fn_c_check_header_compile "$LINENO" "$ac_header" "$as_ac_Header" "$ac_includes_default " if eval test \"x\$"$as_ac_Header"\" = x"yes"; then : cat >>confdefs.h <<_ACEOF #define `$as_echo "HAVE_$ac_header" | $as_tr_cpp` 1 _ACEOF fi done for ac_header in locale.h do : ac_fn_c_check_header_mongrel "$LINENO" "locale.h" "ac_cv_header_locale_h" "$ac_includes_default" if test "x$ac_cv_header_locale_h" = xyes; then : cat >>confdefs.h <<_ACEOF #define HAVE_LOCALE_H 1 _ACEOF fi done if test $ac_cv_header_locale_h = yes; then { $as_echo "$as_me:${as_lineno-$LINENO}: checking for LC_MESSAGES" >&5 $as_echo_n "checking for LC_MESSAGES... " >&6; } if ${am_cv_val_LC_MESSAGES+:} false; then : $as_echo_n "(cached) " >&6 else cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ #include int main () { return LC_MESSAGES ; return 0; } _ACEOF if ac_fn_c_try_link "$LINENO"; then : am_cv_val_LC_MESSAGES=yes else am_cv_val_LC_MESSAGES=no fi rm -f core conftest.err conftest.$ac_objext \ conftest$ac_exeext conftest.$ac_ext fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $am_cv_val_LC_MESSAGES" >&5 $as_echo "$am_cv_val_LC_MESSAGES" >&6; } if test $am_cv_val_LC_MESSAGES = yes; then $as_echo "#define HAVE_LC_MESSAGES 1" >>confdefs.h fi fi USE_NLS=yes gt_cv_have_gettext=no CATOBJEXT=NONE XGETTEXT=: INTLLIBS= ac_fn_c_check_header_mongrel "$LINENO" "libintl.h" "ac_cv_header_libintl_h" "$ac_includes_default" if test "x$ac_cv_header_libintl_h" = xyes; then : gt_cv_func_dgettext_libintl="no" libintl_extra_libs="" # # First check in libc # { $as_echo "$as_me:${as_lineno-$LINENO}: checking for ngettext in libc" >&5 $as_echo_n "checking for ngettext in libc... " >&6; } if ${gt_cv_func_ngettext_libc+:} false; then : $as_echo_n "(cached) " >&6 else cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ #include int main () { return !ngettext ("","", 1) ; return 0; } _ACEOF if ac_fn_c_try_link "$LINENO"; then : gt_cv_func_ngettext_libc=yes else gt_cv_func_ngettext_libc=no fi rm -f core conftest.err conftest.$ac_objext \ conftest$ac_exeext conftest.$ac_ext fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $gt_cv_func_ngettext_libc" >&5 $as_echo "$gt_cv_func_ngettext_libc" >&6; } if test "$gt_cv_func_ngettext_libc" = "yes" ; then { $as_echo "$as_me:${as_lineno-$LINENO}: checking for dgettext in libc" >&5 $as_echo_n "checking for dgettext in libc... " >&6; } if ${gt_cv_func_dgettext_libc+:} false; then : $as_echo_n "(cached) " >&6 else cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ #include int main () { return !dgettext ("","") ; return 0; } _ACEOF if ac_fn_c_try_link "$LINENO"; then : gt_cv_func_dgettext_libc=yes else gt_cv_func_dgettext_libc=no fi rm -f core conftest.err conftest.$ac_objext \ conftest$ac_exeext conftest.$ac_ext fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $gt_cv_func_dgettext_libc" >&5 $as_echo "$gt_cv_func_dgettext_libc" >&6; } fi if test "$gt_cv_func_ngettext_libc" = "yes" ; then for ac_func in bind_textdomain_codeset do : ac_fn_c_check_func "$LINENO" "bind_textdomain_codeset" "ac_cv_func_bind_textdomain_codeset" if test "x$ac_cv_func_bind_textdomain_codeset" = xyes; then : cat >>confdefs.h <<_ACEOF #define HAVE_BIND_TEXTDOMAIN_CODESET 1 _ACEOF fi done fi # # If we don't have everything we want, check in libintl # if test "$gt_cv_func_dgettext_libc" != "yes" \ || test "$gt_cv_func_ngettext_libc" != "yes" \ || test "$ac_cv_func_bind_textdomain_codeset" != "yes" ; then { $as_echo "$as_me:${as_lineno-$LINENO}: checking for bindtextdomain in -lintl" >&5 $as_echo_n "checking for bindtextdomain in -lintl... " >&6; } if ${ac_cv_lib_intl_bindtextdomain+:} false; then : $as_echo_n "(cached) " >&6 else ac_check_lib_save_LIBS=$LIBS LIBS="-lintl $LIBS" cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ /* Override any GCC internal prototype to avoid an error. Use char because int might match the return type of a GCC builtin and then its argument prototype would still apply. */ #ifdef __cplusplus extern "C" #endif char bindtextdomain (); int main () { return bindtextdomain (); ; return 0; } _ACEOF if ac_fn_c_try_link "$LINENO"; then : ac_cv_lib_intl_bindtextdomain=yes else ac_cv_lib_intl_bindtextdomain=no fi rm -f core conftest.err conftest.$ac_objext \ conftest$ac_exeext conftest.$ac_ext LIBS=$ac_check_lib_save_LIBS fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_intl_bindtextdomain" >&5 $as_echo "$ac_cv_lib_intl_bindtextdomain" >&6; } if test "x$ac_cv_lib_intl_bindtextdomain" = xyes; then : { $as_echo "$as_me:${as_lineno-$LINENO}: checking for ngettext in -lintl" >&5 $as_echo_n "checking for ngettext in -lintl... " >&6; } if ${ac_cv_lib_intl_ngettext+:} false; then : $as_echo_n "(cached) " >&6 else ac_check_lib_save_LIBS=$LIBS LIBS="-lintl $LIBS" cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ /* Override any GCC internal prototype to avoid an error. Use char because int might match the return type of a GCC builtin and then its argument prototype would still apply. */ #ifdef __cplusplus extern "C" #endif char ngettext (); int main () { return ngettext (); ; return 0; } _ACEOF if ac_fn_c_try_link "$LINENO"; then : ac_cv_lib_intl_ngettext=yes else ac_cv_lib_intl_ngettext=no fi rm -f core conftest.err conftest.$ac_objext \ conftest$ac_exeext conftest.$ac_ext LIBS=$ac_check_lib_save_LIBS fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_intl_ngettext" >&5 $as_echo "$ac_cv_lib_intl_ngettext" >&6; } if test "x$ac_cv_lib_intl_ngettext" = xyes; then : { $as_echo "$as_me:${as_lineno-$LINENO}: checking for dgettext in -lintl" >&5 $as_echo_n "checking for dgettext in -lintl... " >&6; } if ${ac_cv_lib_intl_dgettext+:} false; then : $as_echo_n "(cached) " >&6 else ac_check_lib_save_LIBS=$LIBS LIBS="-lintl $LIBS" cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ /* Override any GCC internal prototype to avoid an error. Use char because int might match the return type of a GCC builtin and then its argument prototype would still apply. */ #ifdef __cplusplus extern "C" #endif char dgettext (); int main () { return dgettext (); ; return 0; } _ACEOF if ac_fn_c_try_link "$LINENO"; then : ac_cv_lib_intl_dgettext=yes else ac_cv_lib_intl_dgettext=no fi rm -f core conftest.err conftest.$ac_objext \ conftest$ac_exeext conftest.$ac_ext LIBS=$ac_check_lib_save_LIBS fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_intl_dgettext" >&5 $as_echo "$ac_cv_lib_intl_dgettext" >&6; } if test "x$ac_cv_lib_intl_dgettext" = xyes; then : gt_cv_func_dgettext_libintl=yes fi fi fi if test "$gt_cv_func_dgettext_libintl" != "yes" ; then { $as_echo "$as_me:${as_lineno-$LINENO}: checking if -liconv is needed to use gettext" >&5 $as_echo_n "checking if -liconv is needed to use gettext... " >&6; } { $as_echo "$as_me:${as_lineno-$LINENO}: result: " >&5 $as_echo "" >&6; } { $as_echo "$as_me:${as_lineno-$LINENO}: checking for ngettext in -lintl" >&5 $as_echo_n "checking for ngettext in -lintl... " >&6; } if ${ac_cv_lib_intl_ngettext+:} false; then : $as_echo_n "(cached) " >&6 else ac_check_lib_save_LIBS=$LIBS LIBS="-lintl -liconv $LIBS" cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ /* Override any GCC internal prototype to avoid an error. Use char because int might match the return type of a GCC builtin and then its argument prototype would still apply. */ #ifdef __cplusplus extern "C" #endif char ngettext (); int main () { return ngettext (); ; return 0; } _ACEOF if ac_fn_c_try_link "$LINENO"; then : ac_cv_lib_intl_ngettext=yes else ac_cv_lib_intl_ngettext=no fi rm -f core conftest.err conftest.$ac_objext \ conftest$ac_exeext conftest.$ac_ext LIBS=$ac_check_lib_save_LIBS fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_intl_ngettext" >&5 $as_echo "$ac_cv_lib_intl_ngettext" >&6; } if test "x$ac_cv_lib_intl_ngettext" = xyes; then : { $as_echo "$as_me:${as_lineno-$LINENO}: checking for dcgettext in -lintl" >&5 $as_echo_n "checking for dcgettext in -lintl... " >&6; } if ${ac_cv_lib_intl_dcgettext+:} false; then : $as_echo_n "(cached) " >&6 else ac_check_lib_save_LIBS=$LIBS LIBS="-lintl -liconv $LIBS" cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ /* Override any GCC internal prototype to avoid an error. Use char because int might match the return type of a GCC builtin and then its argument prototype would still apply. */ #ifdef __cplusplus extern "C" #endif char dcgettext (); int main () { return dcgettext (); ; return 0; } _ACEOF if ac_fn_c_try_link "$LINENO"; then : ac_cv_lib_intl_dcgettext=yes else ac_cv_lib_intl_dcgettext=no fi rm -f core conftest.err conftest.$ac_objext \ conftest$ac_exeext conftest.$ac_ext LIBS=$ac_check_lib_save_LIBS fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_intl_dcgettext" >&5 $as_echo "$ac_cv_lib_intl_dcgettext" >&6; } if test "x$ac_cv_lib_intl_dcgettext" = xyes; then : gt_cv_func_dgettext_libintl=yes libintl_extra_libs=-liconv else : fi else : fi fi # # If we found libintl, then check in it for bind_textdomain_codeset(); # we'll prefer libc if neither have bind_textdomain_codeset(), # and both have dgettext and ngettext # if test "$gt_cv_func_dgettext_libintl" = "yes" ; then glib_save_LIBS="$LIBS" LIBS="$LIBS -lintl $libintl_extra_libs" unset ac_cv_func_bind_textdomain_codeset for ac_func in bind_textdomain_codeset do : ac_fn_c_check_func "$LINENO" "bind_textdomain_codeset" "ac_cv_func_bind_textdomain_codeset" if test "x$ac_cv_func_bind_textdomain_codeset" = xyes; then : cat >>confdefs.h <<_ACEOF #define HAVE_BIND_TEXTDOMAIN_CODESET 1 _ACEOF fi done LIBS="$glib_save_LIBS" if test "$ac_cv_func_bind_textdomain_codeset" = "yes" ; then gt_cv_func_dgettext_libc=no else if test "$gt_cv_func_dgettext_libc" = "yes" \ && test "$gt_cv_func_ngettext_libc" = "yes"; then gt_cv_func_dgettext_libintl=no fi fi fi fi if test "$gt_cv_func_dgettext_libc" = "yes" \ || test "$gt_cv_func_dgettext_libintl" = "yes"; then gt_cv_have_gettext=yes fi if test "$gt_cv_func_dgettext_libintl" = "yes"; then INTLLIBS="-lintl $libintl_extra_libs" fi if test "$gt_cv_have_gettext" = "yes"; then $as_echo "#define HAVE_GETTEXT 1" >>confdefs.h # Extract the first word of "msgfmt", so it can be a program name with args. set dummy msgfmt; ac_word=$2 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 $as_echo_n "checking for $ac_word... " >&6; } if ${ac_cv_path_MSGFMT+:} false; then : $as_echo_n "(cached) " >&6 else case "$MSGFMT" in /*) ac_cv_path_MSGFMT="$MSGFMT" # Let the user override the test with a path. ;; *) IFS="${IFS= }"; ac_save_ifs="$IFS"; IFS="${IFS}:" for ac_dir in $PATH; do test -z "$ac_dir" && ac_dir=. if test -f $ac_dir/$ac_word; then if test -z "`$ac_dir/$ac_word -h 2>&1 | grep 'dv '`"; then ac_cv_path_MSGFMT="$ac_dir/$ac_word" break fi fi done IFS="$ac_save_ifs" test -z "$ac_cv_path_MSGFMT" && ac_cv_path_MSGFMT="no" ;; esac fi MSGFMT="$ac_cv_path_MSGFMT" if test "$MSGFMT" != "no"; then { $as_echo "$as_me:${as_lineno-$LINENO}: result: $MSGFMT" >&5 $as_echo "$MSGFMT" >&6; } else { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } fi if test "$MSGFMT" != "no"; then glib_save_LIBS="$LIBS" LIBS="$LIBS $INTLLIBS" for ac_func in dcgettext do : ac_fn_c_check_func "$LINENO" "dcgettext" "ac_cv_func_dcgettext" if test "x$ac_cv_func_dcgettext" = xyes; then : cat >>confdefs.h <<_ACEOF #define HAVE_DCGETTEXT 1 _ACEOF fi done MSGFMT_OPTS= { $as_echo "$as_me:${as_lineno-$LINENO}: checking if msgfmt accepts -c" >&5 $as_echo_n "checking if msgfmt accepts -c... " >&6; } cat >conftest.foo <<_ACEOF msgid "" msgstr "" "Content-Type: text/plain; charset=UTF-8\n" "Project-Id-Version: test 1.0\n" "PO-Revision-Date: 2007-02-15 12:01+0100\n" "Last-Translator: test \n" "Language-Team: C \n" "MIME-Version: 1.0\n" "Content-Transfer-Encoding: 8bit\n" _ACEOF if { { $as_echo "$as_me:${as_lineno-$LINENO}: \$MSGFMT -c -o /dev/null conftest.foo"; } >&5 ($MSGFMT -c -o /dev/null conftest.foo) 2>&5 ac_status=$? $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 test $ac_status = 0; }; then MSGFMT_OPTS=-c; { $as_echo "$as_me:${as_lineno-$LINENO}: result: yes" >&5 $as_echo "yes" >&6; } else { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } echo "$as_me: failed input was:" >&5 sed 's/^/| /' conftest.foo >&5 fi # Extract the first word of "gmsgfmt", so it can be a program name with args. set dummy gmsgfmt; ac_word=$2 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 $as_echo_n "checking for $ac_word... " >&6; } if ${ac_cv_path_GMSGFMT+:} false; then : $as_echo_n "(cached) " >&6 else case $GMSGFMT in [\\/]* | ?:[\\/]*) ac_cv_path_GMSGFMT="$GMSGFMT" # Let the user override the test with a path. ;; *) as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH do IFS=$as_save_IFS test -z "$as_dir" && as_dir=. for ac_exec_ext in '' $ac_executable_extensions; do if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then ac_cv_path_GMSGFMT="$as_dir/$ac_word$ac_exec_ext" $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 break 2 fi done done IFS=$as_save_IFS test -z "$ac_cv_path_GMSGFMT" && ac_cv_path_GMSGFMT="$MSGFMT" ;; esac fi GMSGFMT=$ac_cv_path_GMSGFMT if test -n "$GMSGFMT"; then { $as_echo "$as_me:${as_lineno-$LINENO}: result: $GMSGFMT" >&5 $as_echo "$GMSGFMT" >&6; } else { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } fi # Extract the first word of "xgettext", so it can be a program name with args. set dummy xgettext; ac_word=$2 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 $as_echo_n "checking for $ac_word... " >&6; } if ${ac_cv_path_XGETTEXT+:} false; then : $as_echo_n "(cached) " >&6 else case "$XGETTEXT" in /*) ac_cv_path_XGETTEXT="$XGETTEXT" # Let the user override the test with a path. ;; *) IFS="${IFS= }"; ac_save_ifs="$IFS"; IFS="${IFS}:" for ac_dir in $PATH; do test -z "$ac_dir" && ac_dir=. if test -f $ac_dir/$ac_word; then if test -z "`$ac_dir/$ac_word -h 2>&1 | grep '(HELP)'`"; then ac_cv_path_XGETTEXT="$ac_dir/$ac_word" break fi fi done IFS="$ac_save_ifs" test -z "$ac_cv_path_XGETTEXT" && ac_cv_path_XGETTEXT=":" ;; esac fi XGETTEXT="$ac_cv_path_XGETTEXT" if test "$XGETTEXT" != ":"; then { $as_echo "$as_me:${as_lineno-$LINENO}: result: $XGETTEXT" >&5 $as_echo "$XGETTEXT" >&6; } else { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } fi cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ int main () { extern int _nl_msg_cat_cntr; return _nl_msg_cat_cntr ; return 0; } _ACEOF if ac_fn_c_try_link "$LINENO"; then : CATOBJEXT=.gmo DATADIRNAME=share else case $host in *-*-solaris*) ac_fn_c_check_func "$LINENO" "bind_textdomain_codeset" "ac_cv_func_bind_textdomain_codeset" if test "x$ac_cv_func_bind_textdomain_codeset" = xyes; then : CATOBJEXT=.gmo DATADIRNAME=share else CATOBJEXT=.mo DATADIRNAME=lib fi ;; *-*-openbsd*) CATOBJEXT=.mo DATADIRNAME=share ;; *) CATOBJEXT=.mo DATADIRNAME=lib ;; esac fi rm -f core conftest.err conftest.$ac_objext \ conftest$ac_exeext conftest.$ac_ext LIBS="$glib_save_LIBS" INSTOBJEXT=.mo else gt_cv_have_gettext=no fi fi fi if test "$gt_cv_have_gettext" = "yes" ; then $as_echo "#define ENABLE_NLS 1" >>confdefs.h fi if test "$XGETTEXT" != ":"; then if $XGETTEXT --omit-header /dev/null 2> /dev/null; then : ; else { $as_echo "$as_me:${as_lineno-$LINENO}: result: found xgettext program is not GNU xgettext; ignore it" >&5 $as_echo "found xgettext program is not GNU xgettext; ignore it" >&6; } XGETTEXT=":" fi fi # We need to process the po/ directory. POSUB=po ac_config_commands="$ac_config_commands default-1" for lang in $ALL_LINGUAS; do GMOFILES="$GMOFILES $lang.gmo" POFILES="$POFILES $lang.po" done if test "$gt_cv_have_gettext" = "yes"; then if test "x$ALL_LINGUAS" = "x"; then LINGUAS= else { $as_echo "$as_me:${as_lineno-$LINENO}: checking for catalogs to be installed" >&5 $as_echo_n "checking for catalogs to be installed... " >&6; } NEW_LINGUAS= for presentlang in $ALL_LINGUAS; do useit=no if test "%UNSET%" != "${LINGUAS-%UNSET%}"; then desiredlanguages="$LINGUAS" else desiredlanguages="$ALL_LINGUAS" fi for desiredlang in $desiredlanguages; do # Use the presentlang catalog if desiredlang is # a. equal to presentlang, or # b. a variant of presentlang (because in this case, # presentlang can be used as a fallback for messages # which are not translated in the desiredlang catalog). case "$desiredlang" in "$presentlang"*) useit=yes;; esac done if test $useit = yes; then NEW_LINGUAS="$NEW_LINGUAS $presentlang" fi done LINGUAS=$NEW_LINGUAS { $as_echo "$as_me:${as_lineno-$LINENO}: result: $LINGUAS" >&5 $as_echo "$LINGUAS" >&6; } fi if test -n "$LINGUAS"; then for lang in $LINGUAS; do CATALOGS="$CATALOGS $lang$CATOBJEXT"; done fi fi MKINSTALLDIRS= if test -n "$ac_aux_dir"; then MKINSTALLDIRS="$ac_aux_dir/mkinstalldirs" fi if test -z "$MKINSTALLDIRS"; then MKINSTALLDIRS="\$(top_srcdir)/mkinstalldirs" fi test -d po || mkdir po if test "x$srcdir" != "x."; then if test "x`echo $srcdir | sed 's@/.*@@'`" = "x"; then posrcprefix="$srcdir/" else posrcprefix="../$srcdir/" fi else posrcprefix="../" fi rm -f po/POTFILES sed -e "/^#/d" -e "/^\$/d" -e "s,.*, $posrcprefix& \\\\," -e "\$s/\(.*\) \\\\/\1/" \ < $srcdir/po/POTFILES.in > po/POTFILES ac_config_files="$ac_config_files Makefile iok.desktop.in src/Makefile po/Makefile.in data/Makefile data/icons/Makefile" cat >confcache <<\_ACEOF # This file is a shell script that caches the results of configure # tests run on this system so they can be shared between configure # scripts and configure runs, see configure's option --config-cache. # It is not useful on other systems. If it contains results you don't # want to keep, you may remove or edit it. # # config.status only pays attention to the cache file if you give it # the --recheck option to rerun configure. # # `ac_cv_env_foo' variables (set or unset) will be overridden when # loading this file, other *unset* `ac_cv_foo' will be assigned the # following values. _ACEOF # The following way of writing the cache mishandles newlines in values, # but we know of no workaround that is simple, portable, and efficient. # So, we kill variables containing newlines. # Ultrix sh set writes to stderr and can't be redirected directly, # and sets the high bit in the cache file unless we assign to the vars. ( for ac_var in `(set) 2>&1 | sed -n 's/^\([a-zA-Z_][a-zA-Z0-9_]*\)=.*/\1/p'`; do eval ac_val=\$$ac_var case $ac_val in #( *${as_nl}*) case $ac_var in #( *_cv_*) { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: cache variable $ac_var contains a newline" >&5 $as_echo "$as_me: WARNING: cache variable $ac_var contains a newline" >&2;} ;; esac case $ac_var in #( _ | IFS | as_nl) ;; #( BASH_ARGV | BASH_SOURCE) eval $ac_var= ;; #( *) { eval $ac_var=; unset $ac_var;} ;; esac ;; esac done (set) 2>&1 | case $as_nl`(ac_space=' '; set) 2>&1` in #( *${as_nl}ac_space=\ *) # `set' does not quote correctly, so add quotes: double-quote # substitution turns \\\\ into \\, and sed turns \\ into \. sed -n \ "s/'/'\\\\''/g; s/^\\([_$as_cr_alnum]*_cv_[_$as_cr_alnum]*\\)=\\(.*\\)/\\1='\\2'/p" ;; #( *) # `set' quotes correctly as required by POSIX, so do not add quotes. sed -n "/^[_$as_cr_alnum]*_cv_[_$as_cr_alnum]*=/p" ;; esac | sort ) | sed ' /^ac_cv_env_/b end t clear :clear s/^\([^=]*\)=\(.*[{}].*\)$/test "${\1+set}" = set || &/ t end s/^\([^=]*\)=\(.*\)$/\1=${\1=\2}/ :end' >>confcache if diff "$cache_file" confcache >/dev/null 2>&1; then :; else if test -w "$cache_file"; then if test "x$cache_file" != "x/dev/null"; then { $as_echo "$as_me:${as_lineno-$LINENO}: updating cache $cache_file" >&5 $as_echo "$as_me: updating cache $cache_file" >&6;} if test ! -f "$cache_file" || test -h "$cache_file"; then cat confcache >"$cache_file" else case $cache_file in #( */* | ?:*) mv -f confcache "$cache_file"$$ && mv -f "$cache_file"$$ "$cache_file" ;; #( *) mv -f confcache "$cache_file" ;; esac fi fi else { $as_echo "$as_me:${as_lineno-$LINENO}: not updating unwritable cache $cache_file" >&5 $as_echo "$as_me: not updating unwritable cache $cache_file" >&6;} fi fi rm -f confcache test "x$prefix" = xNONE && prefix=$ac_default_prefix # Let make expand exec_prefix. test "x$exec_prefix" = xNONE && exec_prefix='${prefix}' DEFS=-DHAVE_CONFIG_H ac_libobjs= ac_ltlibobjs= U= for ac_i in : $LIBOBJS; do test "x$ac_i" = x: && continue # 1. Remove the extension, and $U if already installed. ac_script='s/\$U\././;s/\.o$//;s/\.obj$//' ac_i=`$as_echo "$ac_i" | sed "$ac_script"` # 2. Prepend LIBOBJDIR. When used with automake>=1.10 LIBOBJDIR # will be set to the directory where LIBOBJS objects are built. as_fn_append ac_libobjs " \${LIBOBJDIR}$ac_i\$U.$ac_objext" as_fn_append ac_ltlibobjs " \${LIBOBJDIR}$ac_i"'$U.lo' done LIBOBJS=$ac_libobjs LTLIBOBJS=$ac_ltlibobjs if test -n "$EXEEXT"; then am__EXEEXT_TRUE= am__EXEEXT_FALSE='#' else am__EXEEXT_TRUE='#' am__EXEEXT_FALSE= fi if test -z "${MAINTAINER_MODE_TRUE}" && test -z "${MAINTAINER_MODE_FALSE}"; then as_fn_error $? "conditional \"MAINTAINER_MODE\" was never defined. Usually this means the macro was only invoked conditionally." "$LINENO" 5 fi if test -z "${AMDEP_TRUE}" && test -z "${AMDEP_FALSE}"; then as_fn_error $? "conditional \"AMDEP\" was never defined. Usually this means the macro was only invoked conditionally." "$LINENO" 5 fi if test -z "${am__fastdepCC_TRUE}" && test -z "${am__fastdepCC_FALSE}"; then as_fn_error $? "conditional \"am__fastdepCC\" was never defined. Usually this means the macro was only invoked conditionally." "$LINENO" 5 fi if test -z "${am__fastdepCC_TRUE}" && test -z "${am__fastdepCC_FALSE}"; then as_fn_error $? "conditional \"am__fastdepCC\" was never defined. Usually this means the macro was only invoked conditionally." "$LINENO" 5 fi if test -z "${am__fastdepCC_TRUE}" && test -z "${am__fastdepCC_FALSE}"; then as_fn_error $? "conditional \"am__fastdepCC\" was never defined. Usually this means the macro was only invoked conditionally." "$LINENO" 5 fi ac_config_commands="$ac_config_commands po/stamp-it" : "${CONFIG_STATUS=./config.status}" ac_write_fail=0 ac_clean_files_save=$ac_clean_files ac_clean_files="$ac_clean_files $CONFIG_STATUS" { $as_echo "$as_me:${as_lineno-$LINENO}: creating $CONFIG_STATUS" >&5 $as_echo "$as_me: creating $CONFIG_STATUS" >&6;} as_write_fail=0 cat >$CONFIG_STATUS <<_ASEOF || as_write_fail=1 #! $SHELL # Generated by $as_me. # Run this file to recreate the current configuration. # Compiler output produced by configure, useful for debugging # configure, is in config.log if it exists. debug=false ac_cs_recheck=false ac_cs_silent=false SHELL=\${CONFIG_SHELL-$SHELL} export SHELL _ASEOF cat >>$CONFIG_STATUS <<\_ASEOF || as_write_fail=1 ## -------------------- ## ## M4sh Initialization. ## ## -------------------- ## # Be more Bourne compatible DUALCASE=1; export DUALCASE # for MKS sh if test -n "${ZSH_VERSION+set}" && (emulate sh) >/dev/null 2>&1; then : emulate sh NULLCMD=: # Pre-4.2 versions of Zsh do word splitting on ${1+"$@"}, which # is contrary to our usage. Disable this feature. alias -g '${1+"$@"}'='"$@"' setopt NO_GLOB_SUBST else case `(set -o) 2>/dev/null` in #( *posix*) : set -o posix ;; #( *) : ;; esac fi as_nl=' ' export as_nl # Printing a long string crashes Solaris 7 /usr/bin/printf. as_echo='\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\' as_echo=$as_echo$as_echo$as_echo$as_echo$as_echo as_echo=$as_echo$as_echo$as_echo$as_echo$as_echo$as_echo # Prefer a ksh shell builtin over an external printf program on Solaris, # but without wasting forks for bash or zsh. if test -z "$BASH_VERSION$ZSH_VERSION" \ && (test "X`print -r -- $as_echo`" = "X$as_echo") 2>/dev/null; then as_echo='print -r --' as_echo_n='print -rn --' elif (test "X`printf %s $as_echo`" = "X$as_echo") 2>/dev/null; then as_echo='printf %s\n' as_echo_n='printf %s' else if test "X`(/usr/ucb/echo -n -n $as_echo) 2>/dev/null`" = "X-n $as_echo"; then as_echo_body='eval /usr/ucb/echo -n "$1$as_nl"' as_echo_n='/usr/ucb/echo -n' else as_echo_body='eval expr "X$1" : "X\\(.*\\)"' as_echo_n_body='eval arg=$1; case $arg in #( *"$as_nl"*) expr "X$arg" : "X\\(.*\\)$as_nl"; arg=`expr "X$arg" : ".*$as_nl\\(.*\\)"`;; esac; expr "X$arg" : "X\\(.*\\)" | tr -d "$as_nl" ' export as_echo_n_body as_echo_n='sh -c $as_echo_n_body as_echo' fi export as_echo_body as_echo='sh -c $as_echo_body as_echo' fi # The user is always right. if test "${PATH_SEPARATOR+set}" != set; then PATH_SEPARATOR=: (PATH='/bin;/bin'; FPATH=$PATH; sh -c :) >/dev/null 2>&1 && { (PATH='/bin:/bin'; FPATH=$PATH; sh -c :) >/dev/null 2>&1 || PATH_SEPARATOR=';' } fi # IFS # We need space, tab and new line, in precisely that order. Quoting is # there to prevent editors from complaining about space-tab. # (If _AS_PATH_WALK were called with IFS unset, it would disable word # splitting by setting IFS to empty value.) IFS=" "" $as_nl" # Find who we are. Look in the path if we contain no directory separator. as_myself= case $0 in #(( *[\\/]* ) as_myself=$0 ;; *) as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH do IFS=$as_save_IFS test -z "$as_dir" && as_dir=. test -r "$as_dir/$0" && as_myself=$as_dir/$0 && break done IFS=$as_save_IFS ;; esac # We did not find ourselves, most probably we were run as `sh COMMAND' # in which case we are not to be found in the path. if test "x$as_myself" = x; then as_myself=$0 fi if test ! -f "$as_myself"; then $as_echo "$as_myself: error: cannot find myself; rerun with an absolute file name" >&2 exit 1 fi # Unset variables that we do not need and which cause bugs (e.g. in # pre-3.0 UWIN ksh). But do not cause bugs in bash 2.01; the "|| exit 1" # suppresses any "Segmentation fault" message there. '((' could # trigger a bug in pdksh 5.2.14. for as_var in BASH_ENV ENV MAIL MAILPATH do eval test x\${$as_var+set} = xset \ && ( (unset $as_var) || exit 1) >/dev/null 2>&1 && unset $as_var || : done PS1='$ ' PS2='> ' PS4='+ ' # NLS nuisances. LC_ALL=C export LC_ALL LANGUAGE=C export LANGUAGE # CDPATH. (unset CDPATH) >/dev/null 2>&1 && unset CDPATH # as_fn_error STATUS ERROR [LINENO LOG_FD] # ---------------------------------------- # Output "`basename $0`: error: ERROR" to stderr. If LINENO and LOG_FD are # provided, also output the error to LOG_FD, referencing LINENO. Then exit the # script with STATUS, using 1 if that was 0. as_fn_error () { as_status=$1; test $as_status -eq 0 && as_status=1 if test "$4"; then as_lineno=${as_lineno-"$3"} as_lineno_stack=as_lineno_stack=$as_lineno_stack $as_echo "$as_me:${as_lineno-$LINENO}: error: $2" >&$4 fi $as_echo "$as_me: error: $2" >&2 as_fn_exit $as_status } # as_fn_error # as_fn_set_status STATUS # ----------------------- # Set $? to STATUS, without forking. as_fn_set_status () { return $1 } # as_fn_set_status # as_fn_exit STATUS # ----------------- # Exit the shell with STATUS, even in a "trap 0" or "set -e" context. as_fn_exit () { set +e as_fn_set_status $1 exit $1 } # as_fn_exit # as_fn_unset VAR # --------------- # Portably unset VAR. as_fn_unset () { { eval $1=; unset $1;} } as_unset=as_fn_unset # as_fn_append VAR VALUE # ---------------------- # Append the text in VALUE to the end of the definition contained in VAR. Take # advantage of any shell optimizations that allow amortized linear growth over # repeated appends, instead of the typical quadratic growth present in naive # implementations. if (eval "as_var=1; as_var+=2; test x\$as_var = x12") 2>/dev/null; then : eval 'as_fn_append () { eval $1+=\$2 }' else as_fn_append () { eval $1=\$$1\$2 } fi # as_fn_append # as_fn_arith ARG... # ------------------ # Perform arithmetic evaluation on the ARGs, and store the result in the # global $as_val. Take advantage of shells that can avoid forks. The arguments # must be portable across $(()) and expr. if (eval "test \$(( 1 + 1 )) = 2") 2>/dev/null; then : eval 'as_fn_arith () { as_val=$(( $* )) }' else as_fn_arith () { as_val=`expr "$@" || test $? -eq 1` } fi # as_fn_arith if expr a : '\(a\)' >/dev/null 2>&1 && test "X`expr 00001 : '.*\(...\)'`" = X001; then as_expr=expr else as_expr=false fi if (basename -- /) >/dev/null 2>&1 && test "X`basename -- / 2>&1`" = "X/"; then as_basename=basename else as_basename=false fi if (as_dir=`dirname -- /` && test "X$as_dir" = X/) >/dev/null 2>&1; then as_dirname=dirname else as_dirname=false fi as_me=`$as_basename -- "$0" || $as_expr X/"$0" : '.*/\([^/][^/]*\)/*$' \| \ X"$0" : 'X\(//\)$' \| \ X"$0" : 'X\(/\)' \| . 2>/dev/null || $as_echo X/"$0" | sed '/^.*\/\([^/][^/]*\)\/*$/{ s//\1/ q } /^X\/\(\/\/\)$/{ s//\1/ q } /^X\/\(\/\).*/{ s//\1/ q } s/.*/./; q'` # Avoid depending upon Character Ranges. as_cr_letters='abcdefghijklmnopqrstuvwxyz' as_cr_LETTERS='ABCDEFGHIJKLMNOPQRSTUVWXYZ' as_cr_Letters=$as_cr_letters$as_cr_LETTERS as_cr_digits='0123456789' as_cr_alnum=$as_cr_Letters$as_cr_digits ECHO_C= ECHO_N= ECHO_T= case `echo -n x` in #((((( -n*) case `echo 'xy\c'` in *c*) ECHO_T=' ';; # ECHO_T is single tab character. xy) ECHO_C='\c';; *) echo `echo ksh88 bug on AIX 6.1` > /dev/null ECHO_T=' ';; esac;; *) ECHO_N='-n';; esac rm -f conf$$ conf$$.exe conf$$.file if test -d conf$$.dir; then rm -f conf$$.dir/conf$$.file else rm -f conf$$.dir mkdir conf$$.dir 2>/dev/null fi if (echo >conf$$.file) 2>/dev/null; then if ln -s conf$$.file conf$$ 2>/dev/null; then as_ln_s='ln -s' # ... but there are two gotchas: # 1) On MSYS, both `ln -s file dir' and `ln file dir' fail. # 2) DJGPP < 2.04 has no symlinks; `ln -s' creates a wrapper executable. # In both cases, we have to default to `cp -p'. ln -s conf$$.file conf$$.dir 2>/dev/null && test ! -f conf$$.exe || as_ln_s='cp -p' elif ln conf$$.file conf$$ 2>/dev/null; then as_ln_s=ln else as_ln_s='cp -p' fi else as_ln_s='cp -p' fi rm -f conf$$ conf$$.exe conf$$.dir/conf$$.file conf$$.file rmdir conf$$.dir 2>/dev/null # as_fn_mkdir_p # ------------- # Create "$as_dir" as a directory, including parents if necessary. as_fn_mkdir_p () { case $as_dir in #( -*) as_dir=./$as_dir;; esac test -d "$as_dir" || eval $as_mkdir_p || { as_dirs= while :; do case $as_dir in #( *\'*) as_qdir=`$as_echo "$as_dir" | sed "s/'/'\\\\\\\\''/g"`;; #'( *) as_qdir=$as_dir;; esac as_dirs="'$as_qdir' $as_dirs" as_dir=`$as_dirname -- "$as_dir" || $as_expr X"$as_dir" : 'X\(.*[^/]\)//*[^/][^/]*/*$' \| \ X"$as_dir" : 'X\(//\)[^/]' \| \ X"$as_dir" : 'X\(//\)$' \| \ X"$as_dir" : 'X\(/\)' \| . 2>/dev/null || $as_echo X"$as_dir" | sed '/^X\(.*[^/]\)\/\/*[^/][^/]*\/*$/{ s//\1/ q } /^X\(\/\/\)[^/].*/{ s//\1/ q } /^X\(\/\/\)$/{ s//\1/ q } /^X\(\/\).*/{ s//\1/ q } s/.*/./; q'` test -d "$as_dir" && break done test -z "$as_dirs" || eval "mkdir $as_dirs" } || test -d "$as_dir" || as_fn_error $? "cannot create directory $as_dir" } # as_fn_mkdir_p if mkdir -p . 2>/dev/null; then as_mkdir_p='mkdir -p "$as_dir"' else test -d ./-p && rmdir ./-p as_mkdir_p=false fi if test -x / >/dev/null 2>&1; then as_test_x='test -x' else if ls -dL / >/dev/null 2>&1; then as_ls_L_option=L else as_ls_L_option= fi as_test_x=' eval sh -c '\'' if test -d "$1"; then test -d "$1/."; else case $1 in #( -*)set "./$1";; esac; case `ls -ld'$as_ls_L_option' "$1" 2>/dev/null` in #(( ???[sx]*):;;*)false;;esac;fi '\'' sh ' fi as_executable_p=$as_test_x # Sed expression to map a string onto a valid CPP name. as_tr_cpp="eval sed 'y%*$as_cr_letters%P$as_cr_LETTERS%;s%[^_$as_cr_alnum]%_%g'" # Sed expression to map a string onto a valid variable name. as_tr_sh="eval sed 'y%*+%pp%;s%[^_$as_cr_alnum]%_%g'" exec 6>&1 ## ----------------------------------- ## ## Main body of $CONFIG_STATUS script. ## ## ----------------------------------- ## _ASEOF test $as_write_fail = 0 && chmod +x $CONFIG_STATUS || ac_write_fail=1 cat >>$CONFIG_STATUS <<\_ACEOF || ac_write_fail=1 # Save the log message, to keep $0 and so on meaningful, and to # report actual input values of CONFIG_FILES etc. instead of their # values after options handling. ac_log=" This file was extended by $as_me, which was generated by GNU Autoconf 2.68. Invocation command line was CONFIG_FILES = $CONFIG_FILES CONFIG_HEADERS = $CONFIG_HEADERS CONFIG_LINKS = $CONFIG_LINKS CONFIG_COMMANDS = $CONFIG_COMMANDS $ $0 $@ on `(hostname || uname -n) 2>/dev/null | sed 1q` " _ACEOF case $ac_config_files in *" "*) set x $ac_config_files; shift; ac_config_files=$*;; esac case $ac_config_headers in *" "*) set x $ac_config_headers; shift; ac_config_headers=$*;; esac cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1 # Files that config.status was made for. config_files="$ac_config_files" config_headers="$ac_config_headers" config_commands="$ac_config_commands" _ACEOF cat >>$CONFIG_STATUS <<\_ACEOF || ac_write_fail=1 ac_cs_usage="\ \`$as_me' instantiates files and other configuration actions from templates according to the current configuration. Unless the files and actions are specified as TAGs, all are instantiated by default. Usage: $0 [OPTION]... [TAG]... -h, --help print this help, then exit -V, --version print version number and configuration settings, then exit --config print configuration, then exit -q, --quiet, --silent do not print progress messages -d, --debug don't remove temporary files --recheck update $as_me by reconfiguring in the same conditions --file=FILE[:TEMPLATE] instantiate the configuration file FILE --header=FILE[:TEMPLATE] instantiate the configuration header FILE Configuration files: $config_files Configuration headers: $config_headers Configuration commands: $config_commands Report bugs to the package provider." _ACEOF cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1 ac_cs_config="`$as_echo "$ac_configure_args" | sed 's/^ //; s/[\\""\`\$]/\\\\&/g'`" ac_cs_version="\\ config.status configured by $0, generated by GNU Autoconf 2.68, with options \\"\$ac_cs_config\\" Copyright (C) 2010 Free Software Foundation, Inc. This config.status script is free software; the Free Software Foundation gives unlimited permission to copy, distribute and modify it." ac_pwd='$ac_pwd' srcdir='$srcdir' INSTALL='$INSTALL' MKDIR_P='$MKDIR_P' AWK='$AWK' test -n "\$AWK" || AWK=awk _ACEOF cat >>$CONFIG_STATUS <<\_ACEOF || ac_write_fail=1 # The default lists apply if the user does not specify any file. ac_need_defaults=: while test $# != 0 do case $1 in --*=?*) ac_option=`expr "X$1" : 'X\([^=]*\)='` ac_optarg=`expr "X$1" : 'X[^=]*=\(.*\)'` ac_shift=: ;; --*=) ac_option=`expr "X$1" : 'X\([^=]*\)='` ac_optarg= ac_shift=: ;; *) ac_option=$1 ac_optarg=$2 ac_shift=shift ;; esac case $ac_option in # Handling of the options. -recheck | --recheck | --rechec | --reche | --rech | --rec | --re | --r) ac_cs_recheck=: ;; --version | --versio | --versi | --vers | --ver | --ve | --v | -V ) $as_echo "$ac_cs_version"; exit ;; --config | --confi | --conf | --con | --co | --c ) $as_echo "$ac_cs_config"; exit ;; --debug | --debu | --deb | --de | --d | -d ) debug=: ;; --file | --fil | --fi | --f ) $ac_shift case $ac_optarg in *\'*) ac_optarg=`$as_echo "$ac_optarg" | sed "s/'/'\\\\\\\\''/g"` ;; '') as_fn_error $? "missing file argument" ;; esac as_fn_append CONFIG_FILES " '$ac_optarg'" ac_need_defaults=false;; --header | --heade | --head | --hea ) $ac_shift case $ac_optarg in *\'*) ac_optarg=`$as_echo "$ac_optarg" | sed "s/'/'\\\\\\\\''/g"` ;; esac as_fn_append CONFIG_HEADERS " '$ac_optarg'" ac_need_defaults=false;; --he | --h) # Conflict between --help and --header as_fn_error $? "ambiguous option: \`$1' Try \`$0 --help' for more information.";; --help | --hel | -h ) $as_echo "$ac_cs_usage"; exit ;; -q | -quiet | --quiet | --quie | --qui | --qu | --q \ | -silent | --silent | --silen | --sile | --sil | --si | --s) ac_cs_silent=: ;; # This is an error. -*) as_fn_error $? "unrecognized option: \`$1' Try \`$0 --help' for more information." ;; *) as_fn_append ac_config_targets " $1" ac_need_defaults=false ;; esac shift done ac_configure_extra_args= if $ac_cs_silent; then exec 6>/dev/null ac_configure_extra_args="$ac_configure_extra_args --silent" fi _ACEOF cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1 if \$ac_cs_recheck; then set X '$SHELL' '$0' $ac_configure_args \$ac_configure_extra_args --no-create --no-recursion shift \$as_echo "running CONFIG_SHELL=$SHELL \$*" >&6 CONFIG_SHELL='$SHELL' export CONFIG_SHELL exec "\$@" fi _ACEOF cat >>$CONFIG_STATUS <<\_ACEOF || ac_write_fail=1 exec 5>>config.log { echo sed 'h;s/./-/g;s/^.../## /;s/...$/ ##/;p;x;p;x' <<_ASBOX ## Running $as_me. ## _ASBOX $as_echo "$ac_log" } >&5 _ACEOF cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1 # # INIT-COMMANDS # AMDEP_TRUE="$AMDEP_TRUE" ac_aux_dir="$ac_aux_dir" _ACEOF cat >>$CONFIG_STATUS <<\_ACEOF || ac_write_fail=1 # Handling of arguments. for ac_config_target in $ac_config_targets do case $ac_config_target in "config.h") CONFIG_HEADERS="$CONFIG_HEADERS config.h" ;; "depfiles") CONFIG_COMMANDS="$CONFIG_COMMANDS depfiles" ;; "default-1") CONFIG_COMMANDS="$CONFIG_COMMANDS default-1" ;; "Makefile") CONFIG_FILES="$CONFIG_FILES Makefile" ;; "iok.desktop.in") CONFIG_FILES="$CONFIG_FILES iok.desktop.in" ;; "src/Makefile") CONFIG_FILES="$CONFIG_FILES src/Makefile" ;; "po/Makefile.in") CONFIG_FILES="$CONFIG_FILES po/Makefile.in" ;; "data/Makefile") CONFIG_FILES="$CONFIG_FILES data/Makefile" ;; "data/icons/Makefile") CONFIG_FILES="$CONFIG_FILES data/icons/Makefile" ;; "po/stamp-it") CONFIG_COMMANDS="$CONFIG_COMMANDS po/stamp-it" ;; *) as_fn_error $? "invalid argument: \`$ac_config_target'" "$LINENO" 5;; esac done # If the user did not use the arguments to specify the items to instantiate, # then the envvar interface is used. Set only those that are not. # We use the long form for the default assignment because of an extremely # bizarre bug on SunOS 4.1.3. if $ac_need_defaults; then test "${CONFIG_FILES+set}" = set || CONFIG_FILES=$config_files test "${CONFIG_HEADERS+set}" = set || CONFIG_HEADERS=$config_headers test "${CONFIG_COMMANDS+set}" = set || CONFIG_COMMANDS=$config_commands fi # Have a temporary directory for convenience. Make it in the build tree # simply because there is no reason against having it here, and in addition, # creating and moving files from /tmp can sometimes cause problems. # Hook for its removal unless debugging. # Note that there is a small window in which the directory will not be cleaned: # after its creation but before its name has been assigned to `$tmp'. $debug || { tmp= ac_tmp= trap 'exit_status=$? : "${ac_tmp:=$tmp}" { test ! -d "$ac_tmp" || rm -fr "$ac_tmp"; } && exit $exit_status ' 0 trap 'as_fn_exit 1' 1 2 13 15 } # Create a (secure) tmp directory for tmp files. { tmp=`(umask 077 && mktemp -d "./confXXXXXX") 2>/dev/null` && test -d "$tmp" } || { tmp=./conf$$-$RANDOM (umask 077 && mkdir "$tmp") } || as_fn_error $? "cannot create a temporary directory in ." "$LINENO" 5 ac_tmp=$tmp # Set up the scripts for CONFIG_FILES section. # No need to generate them if there are no CONFIG_FILES. # This happens for instance with `./config.status config.h'. if test -n "$CONFIG_FILES"; then ac_cr=`echo X | tr X '\015'` # On cygwin, bash can eat \r inside `` if the user requested igncr. # But we know of no other shell where ac_cr would be empty at this # point, so we can use a bashism as a fallback. if test "x$ac_cr" = x; then eval ac_cr=\$\'\\r\' fi ac_cs_awk_cr=`$AWK 'BEGIN { print "a\rb" }' /dev/null` if test "$ac_cs_awk_cr" = "a${ac_cr}b"; then ac_cs_awk_cr='\\r' else ac_cs_awk_cr=$ac_cr fi echo 'BEGIN {' >"$ac_tmp/subs1.awk" && _ACEOF { echo "cat >conf$$subs.awk <<_ACEOF" && echo "$ac_subst_vars" | sed 's/.*/&!$&$ac_delim/' && echo "_ACEOF" } >conf$$subs.sh || as_fn_error $? "could not make $CONFIG_STATUS" "$LINENO" 5 ac_delim_num=`echo "$ac_subst_vars" | grep -c '^'` ac_delim='%!_!# ' for ac_last_try in false false false false false :; do . ./conf$$subs.sh || as_fn_error $? "could not make $CONFIG_STATUS" "$LINENO" 5 ac_delim_n=`sed -n "s/.*$ac_delim\$/X/p" conf$$subs.awk | grep -c X` if test $ac_delim_n = $ac_delim_num; then break elif $ac_last_try; then as_fn_error $? "could not make $CONFIG_STATUS" "$LINENO" 5 else ac_delim="$ac_delim!$ac_delim _$ac_delim!! " fi done rm -f conf$$subs.sh cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1 cat >>"\$ac_tmp/subs1.awk" <<\\_ACAWK && _ACEOF sed -n ' h s/^/S["/; s/!.*/"]=/ p g s/^[^!]*!// :repl t repl s/'"$ac_delim"'$// t delim :nl h s/\(.\{148\}\)..*/\1/ t more1 s/["\\]/\\&/g; s/^/"/; s/$/\\n"\\/ p n b repl :more1 s/["\\]/\\&/g; s/^/"/; s/$/"\\/ p g s/.\{148\}// t nl :delim h s/\(.\{148\}\)..*/\1/ t more2 s/["\\]/\\&/g; s/^/"/; s/$/"/ p b :more2 s/["\\]/\\&/g; s/^/"/; s/$/"\\/ p g s/.\{148\}// t delim ' >$CONFIG_STATUS || ac_write_fail=1 rm -f conf$$subs.awk cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1 _ACAWK cat >>"\$ac_tmp/subs1.awk" <<_ACAWK && for (key in S) S_is_set[key] = 1 FS = "" } { line = $ 0 nfields = split(line, field, "@") substed = 0 len = length(field[1]) for (i = 2; i < nfields; i++) { key = field[i] keylen = length(key) if (S_is_set[key]) { value = S[key] line = substr(line, 1, len) "" value "" substr(line, len + keylen + 3) len += length(value) + length(field[++i]) substed = 1 } else len += 1 + keylen } print line } _ACAWK _ACEOF cat >>$CONFIG_STATUS <<\_ACEOF || ac_write_fail=1 if sed "s/$ac_cr//" < /dev/null > /dev/null 2>&1; then sed "s/$ac_cr\$//; s/$ac_cr/$ac_cs_awk_cr/g" else cat fi < "$ac_tmp/subs1.awk" > "$ac_tmp/subs.awk" \ || as_fn_error $? "could not setup config files machinery" "$LINENO" 5 _ACEOF # VPATH may cause trouble with some makes, so we remove sole $(srcdir), # ${srcdir} and @srcdir@ entries from VPATH if srcdir is ".", strip leading and # trailing colons and then remove the whole line if VPATH becomes empty # (actually we leave an empty line to preserve line numbers). if test "x$srcdir" = x.; then ac_vpsub='/^[ ]*VPATH[ ]*=[ ]*/{ h s/// s/^/:/ s/[ ]*$/:/ s/:\$(srcdir):/:/g s/:\${srcdir}:/:/g s/:@srcdir@:/:/g s/^:*// s/:*$// x s/\(=[ ]*\).*/\1/ G s/\n// s/^[^=]*=[ ]*$// }' fi cat >>$CONFIG_STATUS <<\_ACEOF || ac_write_fail=1 fi # test -n "$CONFIG_FILES" # Set up the scripts for CONFIG_HEADERS section. # No need to generate them if there are no CONFIG_HEADERS. # This happens for instance with `./config.status Makefile'. if test -n "$CONFIG_HEADERS"; then cat >"$ac_tmp/defines.awk" <<\_ACAWK || BEGIN { _ACEOF # Transform confdefs.h into an awk script `defines.awk', embedded as # here-document in config.status, that substitutes the proper values into # config.h.in to produce config.h. # Create a delimiter string that does not exist in confdefs.h, to ease # handling of long lines. ac_delim='%!_!# ' for ac_last_try in false false :; do ac_tt=`sed -n "/$ac_delim/p" confdefs.h` if test -z "$ac_tt"; then break elif $ac_last_try; then as_fn_error $? "could not make $CONFIG_HEADERS" "$LINENO" 5 else ac_delim="$ac_delim!$ac_delim _$ac_delim!! " fi done # For the awk script, D is an array of macro values keyed by name, # likewise P contains macro parameters if any. Preserve backslash # newline sequences. ac_word_re=[_$as_cr_Letters][_$as_cr_alnum]* sed -n ' s/.\{148\}/&'"$ac_delim"'/g t rset :rset s/^[ ]*#[ ]*define[ ][ ]*/ / t def d :def s/\\$// t bsnl s/["\\]/\\&/g s/^ \('"$ac_word_re"'\)\(([^()]*)\)[ ]*\(.*\)/P["\1"]="\2"\ D["\1"]=" \3"/p s/^ \('"$ac_word_re"'\)[ ]*\(.*\)/D["\1"]=" \2"/p d :bsnl s/["\\]/\\&/g s/^ \('"$ac_word_re"'\)\(([^()]*)\)[ ]*\(.*\)/P["\1"]="\2"\ D["\1"]=" \3\\\\\\n"\\/p t cont s/^ \('"$ac_word_re"'\)[ ]*\(.*\)/D["\1"]=" \2\\\\\\n"\\/p t cont d :cont n s/.\{148\}/&'"$ac_delim"'/g t clear :clear s/\\$// t bsnlc s/["\\]/\\&/g; s/^/"/; s/$/"/p d :bsnlc s/["\\]/\\&/g; s/^/"/; s/$/\\\\\\n"\\/p b cont ' >$CONFIG_STATUS || ac_write_fail=1 cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1 for (key in D) D_is_set[key] = 1 FS = "" } /^[\t ]*#[\t ]*(define|undef)[\t ]+$ac_word_re([\t (]|\$)/ { line = \$ 0 split(line, arg, " ") if (arg[1] == "#") { defundef = arg[2] mac1 = arg[3] } else { defundef = substr(arg[1], 2) mac1 = arg[2] } split(mac1, mac2, "(") #) macro = mac2[1] prefix = substr(line, 1, index(line, defundef) - 1) if (D_is_set[macro]) { # Preserve the white space surrounding the "#". print prefix "define", macro P[macro] D[macro] next } else { # Replace #undef with comments. This is necessary, for example, # in the case of _POSIX_SOURCE, which is predefined and required # on some systems where configure will not decide to define it. if (defundef == "undef") { print "/*", prefix defundef, macro, "*/" next } } } { print } _ACAWK _ACEOF cat >>$CONFIG_STATUS <<\_ACEOF || ac_write_fail=1 as_fn_error $? "could not setup config headers machinery" "$LINENO" 5 fi # test -n "$CONFIG_HEADERS" eval set X " :F $CONFIG_FILES :H $CONFIG_HEADERS :C $CONFIG_COMMANDS" shift for ac_tag do case $ac_tag in :[FHLC]) ac_mode=$ac_tag; continue;; esac case $ac_mode$ac_tag in :[FHL]*:*);; :L* | :C*:*) as_fn_error $? "invalid tag \`$ac_tag'" "$LINENO" 5;; :[FH]-) ac_tag=-:-;; :[FH]*) ac_tag=$ac_tag:$ac_tag.in;; esac ac_save_IFS=$IFS IFS=: set x $ac_tag IFS=$ac_save_IFS shift ac_file=$1 shift case $ac_mode in :L) ac_source=$1;; :[FH]) ac_file_inputs= for ac_f do case $ac_f in -) ac_f="$ac_tmp/stdin";; *) # Look for the file first in the build tree, then in the source tree # (if the path is not absolute). The absolute path cannot be DOS-style, # because $ac_f cannot contain `:'. test -f "$ac_f" || case $ac_f in [\\/$]*) false;; *) test -f "$srcdir/$ac_f" && ac_f="$srcdir/$ac_f";; esac || as_fn_error 1 "cannot find input file: \`$ac_f'" "$LINENO" 5;; esac case $ac_f in *\'*) ac_f=`$as_echo "$ac_f" | sed "s/'/'\\\\\\\\''/g"`;; esac as_fn_append ac_file_inputs " '$ac_f'" done # Let's still pretend it is `configure' which instantiates (i.e., don't # use $as_me), people would be surprised to read: # /* config.h. Generated by config.status. */ configure_input='Generated from '` $as_echo "$*" | sed 's|^[^:]*/||;s|:[^:]*/|, |g' `' by configure.' if test x"$ac_file" != x-; then configure_input="$ac_file. $configure_input" { $as_echo "$as_me:${as_lineno-$LINENO}: creating $ac_file" >&5 $as_echo "$as_me: creating $ac_file" >&6;} fi # Neutralize special characters interpreted by sed in replacement strings. case $configure_input in #( *\&* | *\|* | *\\* ) ac_sed_conf_input=`$as_echo "$configure_input" | sed 's/[\\\\&|]/\\\\&/g'`;; #( *) ac_sed_conf_input=$configure_input;; esac case $ac_tag in *:-:* | *:-) cat >"$ac_tmp/stdin" \ || as_fn_error $? "could not create $ac_file" "$LINENO" 5 ;; esac ;; esac ac_dir=`$as_dirname -- "$ac_file" || $as_expr X"$ac_file" : 'X\(.*[^/]\)//*[^/][^/]*/*$' \| \ X"$ac_file" : 'X\(//\)[^/]' \| \ X"$ac_file" : 'X\(//\)$' \| \ X"$ac_file" : 'X\(/\)' \| . 2>/dev/null || $as_echo X"$ac_file" | sed '/^X\(.*[^/]\)\/\/*[^/][^/]*\/*$/{ s//\1/ q } /^X\(\/\/\)[^/].*/{ s//\1/ q } /^X\(\/\/\)$/{ s//\1/ q } /^X\(\/\).*/{ s//\1/ q } s/.*/./; q'` as_dir="$ac_dir"; as_fn_mkdir_p ac_builddir=. case "$ac_dir" in .) ac_dir_suffix= ac_top_builddir_sub=. ac_top_build_prefix= ;; *) ac_dir_suffix=/`$as_echo "$ac_dir" | sed 's|^\.[\\/]||'` # A ".." for each directory in $ac_dir_suffix. ac_top_builddir_sub=`$as_echo "$ac_dir_suffix" | sed 's|/[^\\/]*|/..|g;s|/||'` case $ac_top_builddir_sub in "") ac_top_builddir_sub=. ac_top_build_prefix= ;; *) ac_top_build_prefix=$ac_top_builddir_sub/ ;; esac ;; esac ac_abs_top_builddir=$ac_pwd ac_abs_builddir=$ac_pwd$ac_dir_suffix # for backward compatibility: ac_top_builddir=$ac_top_build_prefix case $srcdir in .) # We are building in place. ac_srcdir=. ac_top_srcdir=$ac_top_builddir_sub ac_abs_top_srcdir=$ac_pwd ;; [\\/]* | ?:[\\/]* ) # Absolute name. ac_srcdir=$srcdir$ac_dir_suffix; ac_top_srcdir=$srcdir ac_abs_top_srcdir=$srcdir ;; *) # Relative name. ac_srcdir=$ac_top_build_prefix$srcdir$ac_dir_suffix ac_top_srcdir=$ac_top_build_prefix$srcdir ac_abs_top_srcdir=$ac_pwd/$srcdir ;; esac ac_abs_srcdir=$ac_abs_top_srcdir$ac_dir_suffix case $ac_mode in :F) # # CONFIG_FILE # case $INSTALL in [\\/$]* | ?:[\\/]* ) ac_INSTALL=$INSTALL ;; *) ac_INSTALL=$ac_top_build_prefix$INSTALL ;; esac ac_MKDIR_P=$MKDIR_P case $MKDIR_P in [\\/$]* | ?:[\\/]* ) ;; */*) ac_MKDIR_P=$ac_top_build_prefix$MKDIR_P ;; esac _ACEOF cat >>$CONFIG_STATUS <<\_ACEOF || ac_write_fail=1 # If the template does not know about datarootdir, expand it. # FIXME: This hack should be removed a few years after 2.60. ac_datarootdir_hack=; ac_datarootdir_seen= ac_sed_dataroot=' /datarootdir/ { p q } /@datadir@/p /@docdir@/p /@infodir@/p /@localedir@/p /@mandir@/p' case `eval "sed -n \"\$ac_sed_dataroot\" $ac_file_inputs"` in *datarootdir*) ac_datarootdir_seen=yes;; *@datadir@*|*@docdir@*|*@infodir@*|*@localedir@*|*@mandir@*) { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: $ac_file_inputs seems to ignore the --datarootdir setting" >&5 $as_echo "$as_me: WARNING: $ac_file_inputs seems to ignore the --datarootdir setting" >&2;} _ACEOF cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1 ac_datarootdir_hack=' s&@datadir@&$datadir&g s&@docdir@&$docdir&g s&@infodir@&$infodir&g s&@localedir@&$localedir&g s&@mandir@&$mandir&g s&\\\${datarootdir}&$datarootdir&g' ;; esac _ACEOF # Neutralize VPATH when `$srcdir' = `.'. # Shell code in configure.ac might set extrasub. # FIXME: do we really want to maintain this feature? cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1 ac_sed_extra="$ac_vpsub $extrasub _ACEOF cat >>$CONFIG_STATUS <<\_ACEOF || ac_write_fail=1 :t /@[a-zA-Z_][a-zA-Z_0-9]*@/!b s|@configure_input@|$ac_sed_conf_input|;t t s&@top_builddir@&$ac_top_builddir_sub&;t t s&@top_build_prefix@&$ac_top_build_prefix&;t t s&@srcdir@&$ac_srcdir&;t t s&@abs_srcdir@&$ac_abs_srcdir&;t t s&@top_srcdir@&$ac_top_srcdir&;t t s&@abs_top_srcdir@&$ac_abs_top_srcdir&;t t s&@builddir@&$ac_builddir&;t t s&@abs_builddir@&$ac_abs_builddir&;t t s&@abs_top_builddir@&$ac_abs_top_builddir&;t t s&@INSTALL@&$ac_INSTALL&;t t s&@MKDIR_P@&$ac_MKDIR_P&;t t $ac_datarootdir_hack " eval sed \"\$ac_sed_extra\" "$ac_file_inputs" | $AWK -f "$ac_tmp/subs.awk" \ >$ac_tmp/out || as_fn_error $? "could not create $ac_file" "$LINENO" 5 test -z "$ac_datarootdir_hack$ac_datarootdir_seen" && { ac_out=`sed -n '/\${datarootdir}/p' "$ac_tmp/out"`; test -n "$ac_out"; } && { ac_out=`sed -n '/^[ ]*datarootdir[ ]*:*=/p' \ "$ac_tmp/out"`; test -z "$ac_out"; } && { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: $ac_file contains a reference to the variable \`datarootdir' which seems to be undefined. Please make sure it is defined" >&5 $as_echo "$as_me: WARNING: $ac_file contains a reference to the variable \`datarootdir' which seems to be undefined. Please make sure it is defined" >&2;} rm -f "$ac_tmp/stdin" case $ac_file in -) cat "$ac_tmp/out" && rm -f "$ac_tmp/out";; *) rm -f "$ac_file" && mv "$ac_tmp/out" "$ac_file";; esac \ || as_fn_error $? "could not create $ac_file" "$LINENO" 5 ;; :H) # # CONFIG_HEADER # if test x"$ac_file" != x-; then { $as_echo "/* $configure_input */" \ && eval '$AWK -f "$ac_tmp/defines.awk"' "$ac_file_inputs" } >"$ac_tmp/config.h" \ || as_fn_error $? "could not create $ac_file" "$LINENO" 5 if diff "$ac_file" "$ac_tmp/config.h" >/dev/null 2>&1; then { $as_echo "$as_me:${as_lineno-$LINENO}: $ac_file is unchanged" >&5 $as_echo "$as_me: $ac_file is unchanged" >&6;} else rm -f "$ac_file" mv "$ac_tmp/config.h" "$ac_file" \ || as_fn_error $? "could not create $ac_file" "$LINENO" 5 fi else $as_echo "/* $configure_input */" \ && eval '$AWK -f "$ac_tmp/defines.awk"' "$ac_file_inputs" \ || as_fn_error $? "could not create -" "$LINENO" 5 fi # Compute "$ac_file"'s index in $config_headers. _am_arg="$ac_file" _am_stamp_count=1 for _am_header in $config_headers :; do case $_am_header in $_am_arg | $_am_arg:* ) break ;; * ) _am_stamp_count=`expr $_am_stamp_count + 1` ;; esac done echo "timestamp for $_am_arg" >`$as_dirname -- "$_am_arg" || $as_expr X"$_am_arg" : 'X\(.*[^/]\)//*[^/][^/]*/*$' \| \ X"$_am_arg" : 'X\(//\)[^/]' \| \ X"$_am_arg" : 'X\(//\)$' \| \ X"$_am_arg" : 'X\(/\)' \| . 2>/dev/null || $as_echo X"$_am_arg" | sed '/^X\(.*[^/]\)\/\/*[^/][^/]*\/*$/{ s//\1/ q } /^X\(\/\/\)[^/].*/{ s//\1/ q } /^X\(\/\/\)$/{ s//\1/ q } /^X\(\/\).*/{ s//\1/ q } s/.*/./; q'`/stamp-h$_am_stamp_count ;; :C) { $as_echo "$as_me:${as_lineno-$LINENO}: executing $ac_file commands" >&5 $as_echo "$as_me: executing $ac_file commands" >&6;} ;; esac case $ac_file$ac_mode in "depfiles":C) test x"$AMDEP_TRUE" != x"" || { # Autoconf 2.62 quotes --file arguments for eval, but not when files # are listed without --file. Let's play safe and only enable the eval # if we detect the quoting. case $CONFIG_FILES in *\'*) eval set x "$CONFIG_FILES" ;; *) set x $CONFIG_FILES ;; esac shift for mf do # Strip MF so we end up with the name of the file. mf=`echo "$mf" | sed -e 's/:.*$//'` # Check whether this is an Automake generated Makefile or not. # We used to match only the files named `Makefile.in', but # some people rename them; so instead we look at the file content. # Grep'ing the first line is not enough: some people post-process # each Makefile.in and add a new line on top of each file to say so. # Grep'ing the whole file is not good either: AIX grep has a line # limit of 2048, but all sed's we know have understand at least 4000. if sed -n 's,^#.*generated by automake.*,X,p' "$mf" | grep X >/dev/null 2>&1; then dirpart=`$as_dirname -- "$mf" || $as_expr X"$mf" : 'X\(.*[^/]\)//*[^/][^/]*/*$' \| \ X"$mf" : 'X\(//\)[^/]' \| \ X"$mf" : 'X\(//\)$' \| \ X"$mf" : 'X\(/\)' \| . 2>/dev/null || $as_echo X"$mf" | sed '/^X\(.*[^/]\)\/\/*[^/][^/]*\/*$/{ s//\1/ q } /^X\(\/\/\)[^/].*/{ s//\1/ q } /^X\(\/\/\)$/{ s//\1/ q } /^X\(\/\).*/{ s//\1/ q } s/.*/./; q'` else continue fi # Extract the definition of DEPDIR, am__include, and am__quote # from the Makefile without running `make'. DEPDIR=`sed -n 's/^DEPDIR = //p' < "$mf"` test -z "$DEPDIR" && continue am__include=`sed -n 's/^am__include = //p' < "$mf"` test -z "am__include" && continue am__quote=`sed -n 's/^am__quote = //p' < "$mf"` # When using ansi2knr, U may be empty or an underscore; expand it U=`sed -n 's/^U = //p' < "$mf"` # Find all dependency output files, they are included files with # $(DEPDIR) in their names. We invoke sed twice because it is the # simplest approach to changing $(DEPDIR) to its actual value in the # expansion. for file in `sed -n " s/^$am__include $am__quote\(.*(DEPDIR).*\)$am__quote"'$/\1/p' <"$mf" | \ sed -e 's/\$(DEPDIR)/'"$DEPDIR"'/g' -e 's/\$U/'"$U"'/g'`; do # Make sure the directory exists. test -f "$dirpart/$file" && continue fdir=`$as_dirname -- "$file" || $as_expr X"$file" : 'X\(.*[^/]\)//*[^/][^/]*/*$' \| \ X"$file" : 'X\(//\)[^/]' \| \ X"$file" : 'X\(//\)$' \| \ X"$file" : 'X\(/\)' \| . 2>/dev/null || $as_echo X"$file" | sed '/^X\(.*[^/]\)\/\/*[^/][^/]*\/*$/{ s//\1/ q } /^X\(\/\/\)[^/].*/{ s//\1/ q } /^X\(\/\/\)$/{ s//\1/ q } /^X\(\/\).*/{ s//\1/ q } s/.*/./; q'` as_dir=$dirpart/$fdir; as_fn_mkdir_p # echo "creating $dirpart/$file" echo '# dummy' > "$dirpart/$file" done done } ;; "default-1":C) case "$CONFIG_FILES" in *po/Makefile.in*) sed -e "/POTFILES =/r po/POTFILES" po/Makefile.in > po/Makefile esac ;; "po/stamp-it":C) if ! grep "^# INTLTOOL_MAKEFILE$" "po/Makefile.in" > /dev/null ; then as_fn_error $? "po/Makefile.in.in was not created by intltoolize." "$LINENO" 5 fi rm -f "po/stamp-it" "po/stamp-it.tmp" "po/POTFILES" "po/Makefile.tmp" >"po/stamp-it.tmp" sed '/^#/d s/^[[].*] *// /^[ ]*$/d '"s|^| $ac_top_srcdir/|" \ "$srcdir/po/POTFILES.in" | sed '$!s/$/ \\/' >"po/POTFILES" sed '/^POTFILES =/,/[^\\]$/ { /^POTFILES =/!d r po/POTFILES } ' "po/Makefile.in" >"po/Makefile" rm -f "po/Makefile.tmp" mv "po/stamp-it.tmp" "po/stamp-it" ;; esac done # for ac_tag as_fn_exit 0 _ACEOF ac_clean_files=$ac_clean_files_save test $ac_write_fail = 0 || as_fn_error $? "write failure creating $CONFIG_STATUS" "$LINENO" 5 # configure is writing to config.log, and then calls config.status. # config.status does its own redirection, appending to config.log. # Unfortunately, on DOS this fails, as config.log is still kept open # by configure, so config.status won't be able to write to it; its # output is simply discarded. So we exec the FD to /dev/null, # effectively closing config.log, so it can be properly (re)opened and # appended to by config.status. When coming back to configure, we # need to make the FD available again. if test "$no_create" != yes; then ac_cs_success=: ac_config_status_args= test "$silent" = yes && ac_config_status_args="$ac_config_status_args --quiet" exec 5>/dev/null $SHELL $CONFIG_STATUS $ac_config_status_args || ac_cs_success=false exec 5>>config.log # Use ||, not &&, to avoid exiting from the if with $? = 1, which # would make configure fail if this is the last instruction. $ac_cs_success || as_fn_exit 1 fi if test -n "$ac_unrecognized_opts" && test "$enable_option_checking" != no; then { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: unrecognized options: $ac_unrecognized_opts" >&5 $as_echo "$as_me: WARNING: unrecognized options: $ac_unrecognized_opts" >&2;} fi iok-2.1.3/README.old0000644000076400007640000000354211776460025010701 00000000000000 iok iok is Indic Onscreen Keyboard. It currently shows Inscript keymaps for following Indian languages. Assamese, Bengali, Gujarati, Hindi, Kannada, Marathi, Malayalam, Punjabi, Oriya, Tamil, Telugu. Using drop down menu you can select any of above supported Indian language. Drop down menu listing depends on available inscript keymaps atlocation /usr/share/m17n/. You can then start directly clicking on keys appearing in iok graphical interface. It will not only show you keyvalues(characters) for English keys on your QWERTY keyboard from selected inscript keymap but also allows you to send those characters tocurrently active window. Currently there is no Indic Onscreen Keyboard is available that will allow to type in Indian languages. This application is using inscript maps installed in /usr/share/m17n directory. If no inscript maps found in /usr/share/m17n then this application will work as English on screen keyboard. Other functionality this application provides is customization of system installed inscript map. User can swap 2 English key values and also can reassign some other new character to existing key in keypair (Key,Value) from existing inscript map and write new keymaps which can be used after restarting application. New feature has been added to iok that will graphically swap 2 English key values in a inscript keymap by just dragging first key button over second button. Users can now use their own favorite keymaps other than inscript provided those keymaps MUST be written for single English key to characterpair. Since iok-1.3.0 release, partial support for some indic xkb layouts has been added. Since iok-1.3.8, nepali keymaps are also appearing in keymap list and now iok only run single instance. Since iok-1.3.12, drag and drop feature used to swap key values is available with iok only when iok is started with advanced options.