diff options
author | Paul Eggleton <paul.eggleton@linux.intel.com> | 2011-01-21 15:38:29 +0000 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2011-02-01 15:57:26 +0000 |
commit | c5998e6def9b320eb50247765b096743f6efbfe8 (patch) | |
tree | fde827d88e0afb56b10a43ace0a24c7de1d40b26 /meta/recipes-qt/qt4/qt4-x11-free.inc | |
parent | 70ce04977c9d752430f9a01a01d6db5bf501ba42 (diff) | |
download | poky-c5998e6def9b320eb50247765b096743f6efbfe8.tar.gz |
qt4: Bring in improvements from meta-openembedded
Differences from meta-openembedded version:
* SRC_URI and S now come from qt-${PV}.inc since these are version specific
* Source checksums are also now in qt-${PV}.inc
* Remove do_compile as this is handled in qt-${PV}.inc
* Move contents of do_install_append from qt-${PV}.inc to do_install in
qt4.inc as this is the same for 4.6.3 and 4.7.1 and will get in the way of
do_install_append in qt-embedded.inc.
* Don't enable PostgreSQL, MySQL or SQLite 2.x plugins as we don't currently
have recipes for these DBMSs in Poky. These can be re-enabled easily when
or if we do.
* Use INC_PR in qt4-x11-free_4.6.3.bb
* Don't always specify -embedded config option in qt4.inc
* Don't add qte.sh to SRC_URI in qt-4.6.3.inc (this is embedded-specific)
Differences from what we have currently in Poky (plus the above):
* Set DESCRIPTION based on embedded/X11
* Move out arch-specific settings to qt4-arch.inc
* Add qt4x11.bbclass which can be inherited by application recipes to select
the X11 version (this makes more sense once the embedded version is added).
* Update HOMEPAGE
Signed-off-by: Paul Eggleton <paul.eggleton@linux.intel.com>
Diffstat (limited to 'meta/recipes-qt/qt4/qt4-x11-free.inc')
-rw-r--r-- | meta/recipes-qt/qt4/qt4-x11-free.inc | 9 |
1 files changed, 6 insertions, 3 deletions
diff --git a/meta/recipes-qt/qt4/qt4-x11-free.inc b/meta/recipes-qt/qt4/qt4-x11-free.inc index 22eef7c0eb..057a129ecf 100644 --- a/meta/recipes-qt/qt4/qt4-x11-free.inc +++ b/meta/recipes-qt/qt4/qt4-x11-free.inc | |||
@@ -1,9 +1,13 @@ | |||
1 | require qt4.inc | 1 | require qt4.inc |
2 | 2 | ||
3 | DESCRIPTION = "Qt is a versatile cross-platform application framework -- this is the X11 version." | ||
4 | HOMEPAGE = "http://qt.nokia.com" | ||
3 | SECTION = "x11/libs" | 5 | SECTION = "x11/libs" |
4 | PRIORITY = "optional" | 6 | PRIORITY = "optional" |
5 | DEPENDS += "virtual/libx11 fontconfig libxft libxext libxrender libxrandr libxcursor" | 7 | DEPENDS += "virtual/libx11 fontconfig libxft libxext libxrender libxrandr libxcursor" |
6 | 8 | ||
9 | INC_PR = "r21" | ||
10 | |||
7 | QT_GLFLAGS ?= "-no-opengl" | 11 | QT_GLFLAGS ?= "-no-opengl" |
8 | QT_GLFLAGS_qemux86 = "-opengl" | 12 | QT_GLFLAGS_qemux86 = "-opengl" |
9 | QT_GLFLAGS_emenlow = "-opengl" | 13 | QT_GLFLAGS_emenlow = "-opengl" |
@@ -11,7 +15,6 @@ QT_GLFLAGS_atom-pc = "-opengl" | |||
11 | QT_CONFIG_FLAGS += "-no-xinerama -no-xkb ${QT_GLFLAGS}" | 15 | QT_CONFIG_FLAGS += "-no-xinerama -no-xkb ${QT_GLFLAGS}" |
12 | QT_BASE_NAME ?= "qt4" | 16 | QT_BASE_NAME ?= "qt4" |
13 | QT_BASE_LIB ?= "libqt" | 17 | QT_BASE_LIB ?= "libqt" |
14 | QT_DIR_NAME = "qt4" | ||
15 | QT_LIBINFIX = "" | ||
16 | 18 | ||
17 | inherit qmake2 | 19 | inherit qt4x11 |
20 | |||