[oe] [meta-oe][PATCH v2] maliit-framework: fix for Qt based applications

Samuel Stirtzel s.stirtzel at googlemail.com
Mon Mar 11 13:24:47 UTC 2013


2013/3/7 Samuel Stirtzel <s.stirtzel at googlemail.com>:
> Previously Qt based applications did not trigger the Maliit virtual keyboard
> The Qt inputmethod plugin could not be loaded because it did not link to libmaliit-1.0.so
> It is also necessary to set the Qt default input method to "Maliit"
>
> Signed-off-by: Samuel Stirtzel <s.stirtzel at googlemail.com>
> ---
>  ...k-to-libmaliit-1-0-in-inputcontext-plugin.patch |   23 ++++++++++++++++++++
>  .../recipes-support/maliit/maliit-framework_git.bb |   13 +++++++++++
>  2 files changed, 36 insertions(+)
>  create mode 100644 meta-oe/recipes-support/maliit/maliit-framework/0001-Link-to-libmaliit-1-0-in-inputcontext-plugin.patch
>
> diff --git a/meta-oe/recipes-support/maliit/maliit-framework/0001-Link-to-libmaliit-1-0-in-inputcontext-plugin.patch b/meta-oe/recipes-support/maliit/maliit-framework/0001-Link-to-libmaliit-1-0-in-inputcontext-plugin.patch
> new file mode 100644
> index 0000000..749ddbe
> --- /dev/null
> +++ b/meta-oe/recipes-support/maliit/maliit-framework/0001-Link-to-libmaliit-1-0-in-inputcontext-plugin.patch
> @@ -0,0 +1,23 @@
> +From cc33efdedbec9e9a55e9a0c6756516fd84d42e53 Mon Sep 17 00:00:00 2001
> +From: Samuel Stirtzel <s.stirtzel at googlemail.com>
> +Date: Fri, 1 Mar 2013 11:31:41 +0100
> +Subject: [PATCH] Link to libmaliit-1,0 in inputcontext plugin
> +
> +Signed-off-by: Samuel Stirtzel <s.stirtzel at googlemail.com>
> +---
> + .../input-context-plugin/input-context-plugin.pro  |    2 ++
> + 1 file changed, 2 insertions(+)
> +
> +diff --git a/input-context/input-context-plugin/input-context-plugin.pro b/input-context/input-context-plugin/input-context-plugin.pro
> +index eefbe93..296e2fa 100644
> +--- a/input-context/input-context-plugin/input-context-plugin.pro
> ++++ b/input-context/input-context-plugin/input-context-plugin.pro
> +@@ -15,3 +15,5 @@ CONFIG += plugin
> +
> + INSTALLS    += target
> + target.path += $$QT_IM_PLUGIN_PATH
> ++
> ++LIBS += -L../../lib -l"maliit-1.0"
> +--
> +1.7.9.5
> +
> diff --git a/meta-oe/recipes-support/maliit/maliit-framework_git.bb b/meta-oe/recipes-support/maliit/maliit-framework_git.bb
> index a164e78..11d06aa 100644
> --- a/meta-oe/recipes-support/maliit/maliit-framework_git.bb
> +++ b/meta-oe/recipes-support/maliit/maliit-framework_git.bb
> @@ -10,6 +10,7 @@ inherit autotools qt4x11 gtk-immodules-cache
>  SRC_URI = "git://gitorious.org/maliit/maliit-framework.git;branch=master \
>      file://0001-Fix-MALIIT_INSTALL_PRF-to-allow-the-build-with-opene.patch \
>      file://0001-Fix-QT_IM_PLUGIN_PATH-to-allow-openembedded-to-build.patch \
> +    file://0001-Link-to-libmaliit-1-0-in-inputcontext-plugin.patch \
>      "
>
>  SRCREV = "750842dec74a9b17dca91ef779c4fc5a43c4d9dc"
> @@ -65,4 +66,16 @@ do_install_append() {
>      sed -i -e "s|/usr|${STAGING_DIR_TARGET}${prefix}|" ${D}/${datadir}/qt4/mkspecs/features/maliit-plugins.prf
>  }
>
> +pkg_postinst_${PN} () {
> +#!/bin/sh
> +#can run online and offline
> +echo "EXPORT QT_IM_MODULE=Maliit" >> $D/etc/profile
> +}
> +
> +pkg_postrm_${PN} () {
> +#!/bin/sh
> +#can run online and offline
> +sed -i "/EXPORT QT_IM_MODULE=Maliit/d" $D/etc/profile
^^^^^
This is a silly mistake, it should be export instead of EXPORT.
But more important it seems that no user is sourcing /etc/profile,
instead they only load their user profiles...

I'll send another patch after this is resolved.

> +}
> +
>  S= "${WORKDIR}/git"



-- 
Regards
Samuel




More information about the Openembedded-devel mailing list