Openembedded Core Discussions
 help / color / mirror / Atom feed
From: Martin Jansa <martin.jansa@gmail.com>
To: Ross Burton <ross.burton@intel.com>
Cc: openembedded-core@lists.openembedded.org
Subject: Re: [PATCH 02/11] at-spi2: add -core and -atk, for GTK+ 3.8
Date: Tue, 4 Jun 2013 17:06:18 +0200	[thread overview]
Message-ID: <20130604150618.GB30727@jama> (raw)
In-Reply-To: <5bed792688d848b38d1565e2705b1f9dca7a17d5.1370012689.git.ross.burton@intel.com>

[-- Attachment #1: Type: text/plain, Size: 3352 bytes --]

On Fri, May 31, 2013 at 04:05:38PM +0100, Ross Burton wrote:
> Signed-off-by: Ross Burton <ross.burton@intel.com>
> ---
>  meta/recipes-support/atk/at-spi2-atk_2.8.1.bb  |   19 +++++++++++++++++++
>  meta/recipes-support/atk/at-spi2-core_2.8.0.bb |   17 +++++++++++++++++
>  2 files changed, 36 insertions(+)
>  create mode 100644 meta/recipes-support/atk/at-spi2-atk_2.8.1.bb
>  create mode 100644 meta/recipes-support/atk/at-spi2-core_2.8.0.bb
> 
> diff --git a/meta/recipes-support/atk/at-spi2-atk_2.8.1.bb b/meta/recipes-support/atk/at-spi2-atk_2.8.1.bb
> new file mode 100644
> index 0000000..32cbe3b
> --- /dev/null
> +++ b/meta/recipes-support/atk/at-spi2-atk_2.8.1.bb
> @@ -0,0 +1,19 @@
> +SUMMARY = "AT-SPI 2 Toolkit Bridge"
> +LICENSE = "LGPLv2"
> +LIC_FILES_CHKSUM = "file://COPYING;md5=e9f288ba982d60518f375b5898283886"
> +
> +MAJ_VER = "${@oe.utils.trim_version("${PV}", 2)}"
> +
> +SRC_URI = "${GNOME_MIRROR}/${BPN}/${MAJ_VER}/${BPN}-${PV}.tar.xz"
> +SRC_URI[md5sum] = "854e36a2538bea50bc08d33aa9499bb2"
> +SRC_URI[sha256sum] = "eb659b94fde6dc0a2f584c9121a5e6d39a4c8aa297d21d8f9032f7a8a775fd06"
> +
> +DEPENDS = "dbus glib-2.0 atk at-spi2-core"
> +
> +inherit autotools
> +
> +PACKAGES =+ "${PN}-gnome ${PN}-gtk2"
> +
> +FILES_${PN}-gnome = "${libdir}/gnome-settings-daemon-3.0/gtk-modules"
> +FILES_${PN}-gtk2 = "${libdir}/gtk-2.0/modules/libatk-bridge.*"
> +FILES_${PN}-dbg += "${libdir}/gtk-2.0/modules/.debug"
> diff --git a/meta/recipes-support/atk/at-spi2-core_2.8.0.bb b/meta/recipes-support/atk/at-spi2-core_2.8.0.bb
> new file mode 100644
> index 0000000..29851bb
> --- /dev/null
> +++ b/meta/recipes-support/atk/at-spi2-core_2.8.0.bb
> @@ -0,0 +1,17 @@
> +SUMMARY = "Assistive Technology Service Provider Interface (dbus core)"
> +LICENSE = "LGPLv2"
> +LIC_FILES_CHKSUM = "file://COPYING;md5=e9f288ba982d60518f375b5898283886"
> +
> +MAJ_VER = "${@oe.utils.trim_version("${PV}", 2)}"
> +
> +SRC_URI = "${GNOME_MIRROR}/${BPN}/${MAJ_VER}/${BPN}-${PV}.tar.xz"
> +SRC_URI[md5sum] = "93b57d5d56d15d1222ddf2386e2f869f"
> +SRC_URI[sha256sum] = "1861a30fc7f583d5a567a0ba547db67ce9bd294f0d1c9f7403c96a10a481c458"
> +
> +DEPENDS = "dbus glib-2.0 virtual/libx11 libxi"

libxtst is missing here

| configure:13325: checking for XTestFakeKeyEvent in -lXtst
| configure:13350: arm-oe-linux-gnueabi-gcc  -march=armv5te -mthumb -mthumb-interwork --sysroot=/OE/oe-core/tmp-eglibc/sysroots/qemuarm -o conftest -O2 -pipe -g -feliminate-unused-debug-types   -Wl,-O1 -Wl,--hash-style=gnu -Wl,--as-needed conftest.c -lXtst   -lSM -lICE -lX11   >&5
| /OE/oe-core/tmp-eglibc/sysroots/x86_64-linux/usr/libexec/armv5te-oe-linux-gnueabi/gcc/arm-oe-linux-gnueabi/4.8.0/ld: cannot find -lXtst
| collect2: error: ld returned 1 exit status
....
| configure:13359: result: no
| configure:13365: error: Couldn't find the Xtst library. Check config.log

> +
> +inherit autotools gtk-doc
> +
> +EXTRA_OECONF = "--disable-introspection --disable-xevie"
> +
> +FILES_${PN} += "${datadir}/dbus-1/services/*.service"
> -- 
> 1.7.10.4
> 
> _______________________________________________
> Openembedded-core mailing list
> Openembedded-core@lists.openembedded.org
> http://lists.openembedded.org/mailman/listinfo/openembedded-core

-- 
Martin 'JaMa' Jansa     jabber: Martin.Jansa@gmail.com

[-- Attachment #2: Digital signature --]
[-- Type: application/pgp-signature, Size: 205 bytes --]

  parent reply	other threads:[~2013-06-04 15:06 UTC|newest]

Thread overview: 17+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2013-05-31 15:05 [PATCH 00/11] GTK+ 3 updates Ross Burton
2013-05-31 15:05 ` [PATCH 01/11] gdk-pixbuf: upgrade to 2.28.1 Ross Burton
2013-05-31 15:05 ` [PATCH 02/11] at-spi2: add -core and -atk, for GTK+ 3.8 Ross Burton
2013-06-03 20:39   ` Saul Wold
2013-06-04 14:26     ` Martin Jansa
2013-06-04 21:38       ` Martin Jansa
2013-06-04 15:06   ` Martin Jansa [this message]
2013-05-31 15:05 ` [PATCH 03/11] gtk+3: update to 3.8.2 Ross Burton
2013-05-31 15:05 ` [PATCH 04/11] gtk+3: explicitly disable introspection Ross Burton
2013-05-31 15:05 ` [PATCH 05/11] gtk+3: respect x11 and wayland DISTRO_FEATURES Ross Burton
2013-05-31 15:05 ` [PATCH 06/11] gtk+3: add dependencies for gtk+3-demo Ross Burton
2013-05-31 15:05 ` [PATCH 07/11] gtk+: remove spurious libgcrypt dependency Ross Burton
2013-05-31 15:05 ` [PATCH 08/11] gtk+3: register GSetting schemas Ross Burton
2013-05-31 15:05 ` [PATCH 09/11] gtk+3: split into .bb/.inc Ross Burton
2013-05-31 15:05 ` [PATCH 10/11] gtk+3: clean up libtool link creation to avoid errors in configure log Ross Burton
2013-05-31 15:05 ` [PATCH 11/11] gtk+3: fix repainting under Weston 1.1 Ross Burton
2013-06-06 16:52 ` [PATCH 00/11] GTK+ 3 updates Saul Wold

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=20130604150618.GB30727@jama \
    --to=martin.jansa@gmail.com \
    --cc=openembedded-core@lists.openembedded.org \
    --cc=ross.burton@intel.com \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox