summaryrefslogtreecommitdiffstats
path: root/meta/recipes-qt
diff options
context:
space:
mode:
authorSimon Busch <morphis@gravedo.de>2011-09-25 14:57:44 +0200
committerRichard Purdie <richard.purdie@linuxfoundation.org>2011-09-28 14:58:51 +0100
commit19a7e6c63b14e8c63ff0aadd9b068869230d514f (patch)
treef45f4ca2d259654b205f0cdb05302d238b95437c /meta/recipes-qt
parenta459ac71603d959b65964610e7819d29e24cc7f8 (diff)
downloadpoky-19a7e6c63b14e8c63ff0aadd9b068869230d514f.tar.gz
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. (From OE-Core rev: bed68b561056e0f454c0bf527997f82b63122773) Signed-off-by: Simon Busch <morphis@gravedo.de> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/recipes-qt')
-rw-r--r--meta/recipes-qt/qt4/qt4-embedded.inc8
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"
3LICENSE = "LGPLv2.1 | GPLv3" 3LICENSE = "LGPLv2.1 | GPLv3"
4HOMEPAGE = "http://qt.nokia.com" 4HOMEPAGE = "http://qt.nokia.com"
5DEPENDS += "directfb tslib" 5DEPENDS += "directfb tslib"
6INC_PR = "r31" 6INC_PR = "r32"
7 7
8QT_BASE_NAME ?= "qt4-embedded" 8QT_BASE_NAME ?= "qt4-embedded"
9QT_BASE_LIB ?= "libqt-embedded" 9QT_BASE_LIB ?= "libqt-embedded"
@@ -27,7 +27,11 @@ do_install_append() {
27 install -m 0755 ${WORKDIR}/qte.sh ${D}${sysconfdir}/profile.d/ 27 install -m 0755 ${WORKDIR}/qte.sh ${D}${sysconfdir}/profile.d/
28} 28}
29 29
30FILES_${PN} += " ${sysconfdir}/profile.d/qte.sh" 30# We put the qte profile into it's own package as we don't want to install all qt stuff
31# with depending on the global package qt4-embedded
32PACKAGES += " ${PN}-conf"
33FILES_${PN}-conf += " ${sysconfdir}/profile.d/qte.sh"
34RDEPENDS_${PN} += " ${PN}-conf"
31 35
32inherit qt4e 36inherit qt4e
33 37