diff options
author | Paul Eggleton <paul.eggleton@linux.intel.com> | 2011-01-28 16:47:17 +0000 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2011-02-01 17:46:32 +0000 |
commit | 4c8f498624c81d6f9f5361975c9c1250fb2fc477 (patch) | |
tree | 019c74c4026ac8af9b4a60fc84d8ab6412a3b95c /meta/recipes-qt | |
parent | 19e1f4f672806c8a45847ce5c2adac6da663ff69 (diff) | |
download | openembedded-core-4c8f498624c81d6f9f5361975c9c1250fb2fc477.tar.gz openembedded-core-4c8f498624c81d6f9f5361975c9c1250fb2fc477.tar.bz2 openembedded-core-4c8f498624c81d6f9f5361975c9c1250fb2fc477.zip |
qt4: set RRECOMMENDS correctly for qt4 demos and examples packages
The demos and examples require a few optional plugins to operate correctly
(e.g. SQLite and JPEG support). The demos package requires the documentation
package to show descriptions for each demo/example, and assistant to show
the documentation.
Fixes [BUGID #492] and [BUGID #452].
Signed-off-by: Paul Eggleton <paul.eggleton@linux.intel.com>
Diffstat (limited to 'meta/recipes-qt')
-rw-r--r-- | meta/recipes-qt/qt4/qt4.inc | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/meta/recipes-qt/qt4/qt4.inc b/meta/recipes-qt/qt4/qt4.inc index 4dcf7a3210..de8cb691e3 100644 --- a/meta/recipes-qt/qt4/qt4.inc +++ b/meta/recipes-qt/qt4/qt4.inc @@ -113,6 +113,16 @@ RRECOMMENDS_${QT_BASE_NAME}-fonts = " \ ${QT_BASE_NAME}-fonts-pfa \ ${QT_BASE_NAME}-fonts-pfb \ ${QT_BASE_NAME}-fonts-qpf" +RRECOMMENDS_${QT_BASE_NAME}-demos += " \ + ${QT_BASE_NAME}-fonts \ + ${QT_BASE_NAME}-examples \ + ${QT_BASE_NAME}-plugin-sqldriver-sqlite \ + ${QT_BASE_NAME}-plugin-imageformat-jpeg \ + ${QT_BASE_NAME}-assistant \ + ${PN}-doc" +RRECOMMENDS_${QT_BASE_NAME}-examples += " \ + ${QT_BASE_NAME}-plugin-sqldriver-sqlite \ + ${QT_BASE_NAME}-plugin-imageformat-jpeg" FILES_${QT_BASE_NAME}-tools = "${bindir}/uic* ${bindir}/moc ${bindir}/rcc ${bindir}/qttracereplay ${bindir}/qdoc*" FILES_${QT_BASE_NAME}-tools-dbg = "${bindir}/.debug/uic* ${bindir}/.debug/moc ${bindir}/.debug/rcc ${bindir}/.debug/qttracereplay ${bindir}/.debug/qdoc*" |