All of lore.kernel.org
 help / color / mirror / Atom feed
From: Paul Eggleton <paul.eggleton@linux.intel.com>
To: poky@yoctoproject.org
Subject: [PATCH 0/8] Add meta-toolchain-qte from OE
Date: Mon, 17 Jan 2011 16:54:08 +0000	[thread overview]
Message-ID: <cover.1295282922.git.paul.eggleton@linux.intel.com> (raw)

These patches make the necessary changes to add meta-toolchain-qte from
OpenEmbedded (and make it build successfully). Amongst other things this 
required some tweaking of avahi to avoid dependency of avahi-dev / 
avahi-utils on gtk+, which in turn required the addition of a flag to 
control automatic RRECOMMENDS_ generation in package.bbclass.

Pull URL: git://git.pokylinux.org/poky-contrib.git
  Branch: paule/qt-fixes2
  Browse: http://git.pokylinux.org/cgit.cgi/poky-contrib/log/?h=paule/qt-fixes2

Thanks,
    Paul Eggleton <paul.eggleton@linux.intel.com>
---


Paul Eggleton (8):
  Add directfb 1.4.6 from OpenEmbedded
  qt4: add qt4-embedded 4.6.3 from OpenEmbedded
  glib-2.0: extend to nativesdk
  dbus: extend to nativesdk
  Add qt4-tools-nativesdk 4.6.3 based on qt4-tools-sdk from
    OpenEmbedded
  package.bbclass: add nodeprrecs flag to RRECOMMENDS_pkgname
  avahi: prevent unnecessary runtime dependency on gtk+
  Add meta-toolchain-qte and dependent tasks from OpenEmbedded

 meta/classes/package.bbclass                       |    2 +
 meta/classes/qt4e.bbclass                          |   17 +++
 meta/recipes-connectivity/avahi/avahi.inc          |    9 ++-
 meta/recipes-connectivity/avahi/avahi_0.6.28.bb    |    2 +-
 meta/recipes-core/dbus/dbus.inc                    |    3 +-
 meta/recipes-core/glib-2.0/glib-2.0_2.27.5.bb      |    2 +-
 meta/recipes-core/glib-2.0/glib.inc                |    1 +
 .../directfb/directfb-1.4.6/mkdfiff.patch          |   24 ++++
 meta/recipes-graphics/directfb/directfb.inc        |   71 ++++++++++++
 meta/recipes-graphics/directfb/directfb_1.4.6.bb   |   29 +++++
 .../directfb-1.2.x-fix-pkgconfig-cflags.patch      |   47 ++++++++
 .../directfb/files/dont-use-linux-config.patch     |   12 ++
 meta/recipes-qt/meta/meta-toolchain-qte.bb         |   32 ++++++
 .../recipes-qt/qt4/files/compile.test-lflags.patch |   13 +++
 meta/recipes-qt/qt4/files/configure-lflags.patch   |   13 +++
 meta/recipes-qt/qt4/files/configure-paths.patch    |   21 ++++
 meta/recipes-qt/qt4/files/qmake-exists-check.patch |   18 +++
 .../qt4/files/qthelp-lib-qtclucene.patch           |   86 +++++++++++++++
 meta/recipes-qt/qt4/qt4-embedded-4.6.3/qte.sh      |    7 ++
 meta/recipes-qt/qt4/qt4-embedded.inc               |   53 +++++++++
 meta/recipes-qt/qt4/qt4-embedded_4.6.3.bb          |    6 +
 meta/recipes-qt/qt4/qt4-tools-nativesdk_4.6.3.bb   |  112 ++++++++++++++++++++
 meta/recipes-qt/tasks/task-qte-toolchain-host.bb   |    7 ++
 meta/recipes-qt/tasks/task-qte-toolchain-target.bb |   39 +++++++
 24 files changed, 622 insertions(+), 4 deletions(-)
 create mode 100644 meta/classes/qt4e.bbclass
 create mode 100644 meta/recipes-graphics/directfb/directfb-1.4.6/mkdfiff.patch
 create mode 100644 meta/recipes-graphics/directfb/directfb.inc
 create mode 100644 meta/recipes-graphics/directfb/directfb_1.4.6.bb
 create mode 100644 meta/recipes-graphics/directfb/files/directfb-1.2.x-fix-pkgconfig-cflags.patch
 create mode 100644 meta/recipes-graphics/directfb/files/dont-use-linux-config.patch
 create mode 100644 meta/recipes-qt/meta/meta-toolchain-qte.bb
 create mode 100644 meta/recipes-qt/qt4/files/compile.test-lflags.patch
 create mode 100644 meta/recipes-qt/qt4/files/configure-lflags.patch
 create mode 100644 meta/recipes-qt/qt4/files/configure-paths.patch
 create mode 100644 meta/recipes-qt/qt4/files/qmake-exists-check.patch
 create mode 100644 meta/recipes-qt/qt4/files/qthelp-lib-qtclucene.patch
 create mode 100644 meta/recipes-qt/qt4/qt4-embedded-4.6.3/qte.sh
 create mode 100644 meta/recipes-qt/qt4/qt4-embedded.inc
 create mode 100644 meta/recipes-qt/qt4/qt4-embedded_4.6.3.bb
 create mode 100644 meta/recipes-qt/qt4/qt4-tools-nativesdk_4.6.3.bb
 create mode 100644 meta/recipes-qt/tasks/task-qte-toolchain-host.bb
 create mode 100644 meta/recipes-qt/tasks/task-qte-toolchain-target.bb



             reply	other threads:[~2011-01-17 16:54 UTC|newest]

Thread overview: 19+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2011-01-17 16:54 Paul Eggleton [this message]
2011-01-17 16:54 ` [PATCH 1/8] Add directfb 1.4.6 from OpenEmbedded Paul Eggleton
2011-01-17 16:54 ` [PATCH 2/8] qt4: add qt4-embedded 4.6.3 " Paul Eggleton
2011-01-17 16:54 ` [PATCH 3/8] glib-2.0: extend to nativesdk Paul Eggleton
2011-01-17 16:54 ` [PATCH 4/8] dbus: " Paul Eggleton
2011-01-17 16:54 ` [PATCH 5/8] Add qt4-tools-nativesdk 4.6.3 based on qt4-tools-sdk from OpenEmbedded Paul Eggleton
2011-01-17 16:54 ` [PATCH 6/8] package.bbclass: add nodeprrecs flag to RRECOMMENDS_pkgname Paul Eggleton
2011-01-17 16:54 ` [PATCH 7/8] avahi: prevent unnecessary runtime dependency on gtk+ Paul Eggleton
2011-01-17 16:54 ` [PATCH 8/8] Add meta-toolchain-qte and dependent tasks from OpenEmbedded Paul Eggleton
2011-01-17 17:14 ` [PATCH 0/8] Add meta-toolchain-qte from OE Koen Kooi
2011-01-17 17:39   ` Paul Eggleton
2011-01-17 17:49     ` Koen Kooi
2011-01-19 12:51   ` Paul Eggleton
2011-01-19 13:15     ` Koen Kooi
2011-01-20 12:06       ` Paul Eggleton
2011-01-20 12:17         ` Koen Kooi
2011-01-20 13:50           ` Paul Eggleton
2011-01-18 20:25 ` Saul Wold
2011-01-20 15:09   ` Paul Eggleton

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=cover.1295282922.git.paul.eggleton@linux.intel.com \
    --to=paul.eggleton@linux.intel.com \
    --cc=poky@yoctoproject.org \
    /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 an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.