diff options
author | Simon Busch <morphis@gravedo.de> | 2011-09-25 14:57:44 +0200 |
---|---|---|
committer | Saul Wold <sgw@linux.intel.com> | 2011-09-27 23:54:28 -0700 |
commit | bed68b561056e0f454c0bf527997f82b63122773 (patch) | |
tree | ccff119a3874fdd52e543c56aaaed48ab8c1f59a /meta/recipes-qt/qt4/qt4-embedded.inc | |
parent | b40b9c024be5e1ec81a31961158b3e6b529acfe0 (diff) | |
download | openembedded-core-bed68b561056e0f454c0bf527997f82b63122773.tar.gz openembedded-core-bed68b561056e0f454c0bf527997f82b63122773.tar.bz2 openembedded-core-bed68b561056e0f454c0bf527997f82b63122773.zip |
qt4-embedded: move qte.sh profile script into own package
We don't want to pull the whole qt suite in our images when only installing a tiny setup
which needs the profile script for several configuration issues. This moves the qte.sh
profile script into a qt4-embedded-conf package which is automatically installed when an
image depends on qt4-embedded.
Signed-off-by: Simon Busch <morphis@gravedo.de>
Diffstat (limited to 'meta/recipes-qt/qt4/qt4-embedded.inc')
-rw-r--r-- | meta/recipes-qt/qt4/qt4-embedded.inc | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/meta/recipes-qt/qt4/qt4-embedded.inc b/meta/recipes-qt/qt4/qt4-embedded.inc index 1ede922e68..ed872b0f9d 100644 --- a/meta/recipes-qt/qt4/qt4-embedded.inc +++ b/meta/recipes-qt/qt4/qt4-embedded.inc @@ -3,7 +3,7 @@ SECTION = "libs" LICENSE = "LGPLv2.1 | GPLv3" HOMEPAGE = "http://qt.nokia.com" DEPENDS += "directfb tslib" -INC_PR = "r31" +INC_PR = "r32" QT_BASE_NAME ?= "qt4-embedded" QT_BASE_LIB ?= "libqt-embedded" @@ -27,7 +27,11 @@ do_install_append() { install -m 0755 ${WORKDIR}/qte.sh ${D}${sysconfdir}/profile.d/ } -FILES_${PN} += " ${sysconfdir}/profile.d/qte.sh" +# We put the qte profile into it's own package as we don't want to install all qt stuff +# with depending on the global package qt4-embedded +PACKAGES += " ${PN}-conf" +FILES_${PN}-conf += " ${sysconfdir}/profile.d/qte.sh" +RDEPENDS_${PN} += " ${PN}-conf" inherit qt4e |