diff options
author | Paul Eggleton <paul.eggleton@linux.intel.com> | 2011-05-17 11:53:22 +0100 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2011-05-18 14:32:47 +0100 |
commit | 0f574ccf07fd35fb3a8a9ddf01b5fd1ce6865cad (patch) | |
tree | 07358c94e34a81ed31fbe5701512f687ece3d98a /meta/recipes-qt/qt4/qt-4.6.3.inc | |
parent | 000368f1e78ad0dd68ebbf7e3d4135ca6bfad777 (diff) | |
download | poky-0f574ccf07fd35fb3a8a9ddf01b5fd1ce6865cad.tar.gz |
qt4: remove Qt 4.6.3
We should only have one version of Qt4 supported in oe-core.
(From OE-Core rev: 95f348d81353ea105493d0cc360d63b6b7264ce5)
Signed-off-by: Paul Eggleton <paul.eggleton@linux.intel.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/recipes-qt/qt4/qt-4.6.3.inc')
-rw-r--r-- | meta/recipes-qt/qt4/qt-4.6.3.inc | 57 |
1 files changed, 0 insertions, 57 deletions
diff --git a/meta/recipes-qt/qt4/qt-4.6.3.inc b/meta/recipes-qt/qt4/qt-4.6.3.inc deleted file mode 100644 index 37a15f1c1e..0000000000 --- a/meta/recipes-qt/qt4/qt-4.6.3.inc +++ /dev/null | |||
@@ -1,57 +0,0 @@ | |||
1 | LICENSE = "LGPLv2.1 | GPLv3" | ||
2 | LIC_FILES_CHKSUM = "file://LICENSE.LGPL;md5=fbc093901857fcd118f065f900982c24 \ | ||
3 | file://LICENSE.GPL3;md5=babc5b6b77441da277f5c06b2e547720 \ | ||
4 | file://LGPL_EXCEPTION.txt;md5=411080a56ff917a5a1aa08c98acae354" | ||
5 | |||
6 | SRC_URI = "http://get.qt.nokia.com/qt/source/qt-everywhere-opensource-src-${PV}.tar.gz \ | ||
7 | file://blacklist-fraudulent-comodo-certificates-patch.diff \ | ||
8 | file://0001-cross-compile.patch \ | ||
9 | file://0002-fix-resinit-declaration.patch \ | ||
10 | file://0004-no-qmake.patch \ | ||
11 | file://0006-freetype-host-includes.patch \ | ||
12 | file://0008-qt-lib-infix.patch \ | ||
13 | file://0009-support-2bpp.patch \ | ||
14 | file://0010-no-simpledecoration-example.patch \ | ||
15 | file://fix-config-tests.patch \ | ||
16 | file://qt-config.patch \ | ||
17 | file://g++.conf \ | ||
18 | file://linux.conf \ | ||
19 | file://hack-out-pg_config.patch \ | ||
20 | file://mips-relocate.patch \ | ||
21 | " | ||
22 | |||
23 | SRC_URI[md5sum] = "5c69f16d452b0bb3d44bc3c10556c072" | ||
24 | SRC_URI[sha256sum] = "f4e0ada8d4d516bbb8600a3ee7d9046c9c79e38cd781df9ffc46d8f16acd1768" | ||
25 | |||
26 | S = "${WORKDIR}/qt-everywhere-opensource-src-${PV}" | ||
27 | |||
28 | do_configure_prepend() { | ||
29 | for pro in $(find ${S} -name "*.pro") ; do | ||
30 | sed -i 's:$$QT_BUILD_TREE/bin/lrelease:${OE_QMAKE_LRELEASE}:g' $pro | ||
31 | done | ||
32 | |||
33 | sed -i s:SEDME:${S}: ${WORKDIR}/linux.conf | ||
34 | sed -i \ | ||
35 | -e /QMAKE_MOC\ /d \ | ||
36 | -e /QMAKE_UIC\ /d \ | ||
37 | -e /QMAKE_UIC3\ /d \ | ||
38 | -e /QMAKE_RCC\ /d \ | ||
39 | ${S}/configure | ||
40 | } | ||
41 | |||
42 | do_configure_append() { | ||
43 | sed -e '/QMAKE_TARGET /d' -e '/TARGET /d' -i ${S}/translations/Makefile | ||
44 | } | ||
45 | |||
46 | QT_GLFLAGS ?= "" | ||
47 | QT_CONFIG_FLAGS += " -no-rpath -qt3support -reduce-relocations -silent ${QT_GLFLAGS}" | ||
48 | |||
49 | do_compile() { | ||
50 | # Fixup missing wsegl header in some SGX SDKs | ||
51 | if ! [ -e ${STAGING_INCDIR}/wsegl.h ] ; then | ||
52 | cp src/3rdparty/powervr/wsegl.h src/plugins/gfxdrivers/powervr/QWSWSEGL/ | ||
53 | fi | ||
54 | |||
55 | unset CFLAGS CXXFLAGS | ||
56 | oe_runmake ${EXTRA_ENV} | ||
57 | } | ||