diff options
Diffstat (limited to 'meta/recipes-qt/qt4/qt4-4.8.4.inc')
-rw-r--r-- | meta/recipes-qt/qt4/qt4-4.8.4.inc | 58 |
1 files changed, 58 insertions, 0 deletions
diff --git a/meta/recipes-qt/qt4/qt4-4.8.4.inc b/meta/recipes-qt/qt4/qt4-4.8.4.inc new file mode 100644 index 0000000000..08173a1d14 --- /dev/null +++ b/meta/recipes-qt/qt4/qt4-4.8.4.inc | |||
@@ -0,0 +1,58 @@ | |||
1 | LICENSE = "LGPLv2.1 | GPLv3" | ||
2 | LIC_FILES_CHKSUM = "file://LICENSE.LGPL;md5=fbc093901857fcd118f065f900982c24 \ | ||
3 | file://LICENSE.GPL3;md5=6e1694ee338db410417517884918d4d2 \ | ||
4 | file://LGPL_EXCEPTION.txt;md5=0145c4d1b6f96a661c2c139dfb268fb6" | ||
5 | |||
6 | FILESEXTRAPATHS =. "${FILE_DIRNAME}/qt4-${PV}:" | ||
7 | |||
8 | SRC_URI = "http://releases.qt-project.org/qt4/source/qt-everywhere-opensource-src-${PV}.tar.gz \ | ||
9 | file://0003-webkit2-set-OUTPUT_DIR-value-if-empty.patch \ | ||
10 | file://0004-configure-qmake-is-already-built-in-qt4-tools-native.patch \ | ||
11 | file://0008-qmake.pro-Allow-building-a-separate-qmake-for-the-ta.patch \ | ||
12 | file://0009-qmake-fix-source-file-references-in-qmake.pri.patch \ | ||
13 | file://0010-configure-Hack-to-not-use-the-pg_config-of-the-host-.patch \ | ||
14 | file://0011-freetype-host-includes.patch \ | ||
15 | file://0012-Add-2bpp-support.patch \ | ||
16 | file://0013-configure-add-crossarch-option.patch \ | ||
17 | file://0014-translations-fix-phony-translation-linking-error.patch \ | ||
18 | file://0015-configure-add-nostrip-for-debug-packages.patch \ | ||
19 | file://0016-configure-eval-QMAKE_CXX.patch \ | ||
20 | file://0017-configure-ensure-we-identify-the-compiler-as-g-in-co.patch \ | ||
21 | file://0018-configure-make-pulseaudio-a-configurable-option.patch \ | ||
22 | file://0019-Fixes-for-gcc-4.7.0-particularly-on-qemux86.patch \ | ||
23 | file://0020-webkit-disable-the-fuse-ld-gold-flag.patch \ | ||
24 | file://g++.conf \ | ||
25 | file://linux.conf \ | ||
26 | " | ||
27 | |||
28 | SRC_URI[md5sum] = "89c5ecba180cae74c66260ac732dc5cb" | ||
29 | SRC_URI[sha256sum] = "33b0e38ba4c54a0cf8a4be8ca5a4584f1c2e0adfecb57b21d9d1d267b0093270" | ||
30 | |||
31 | S = "${WORKDIR}/qt-everywhere-opensource-src-${PV}" | ||
32 | |||
33 | FILES_${QT_BASE_NAME}-tools_append = " ${bindir}/qml ${bindir}/qmlplugindump" | ||
34 | FILES_${QT_BASE_NAME}-tools-dbg_append = " ${bindir}/.debug/qml ${bindir}/.debug/qmlplugindump" | ||
35 | |||
36 | PACKAGES_append = " ${QT_BASE_NAME}-tests-dbg ${QT_BASE_NAME}-tests" | ||
37 | FILES_${QT_BASE_NAME}-tests-dbg = "/usr/tests/qt4/*/.debug" | ||
38 | FILES_${QT_BASE_NAME}-tests = "/usr/tests/qt4/*" | ||
39 | |||
40 | do_configure_prepend() { | ||
41 | for pro in $(find ${S} -name "*.pro") ; do | ||
42 | sed -i \ | ||
43 | -e 's:$$QT_BUILD_TREE/bin/lrelease:${OE_QMAKE_LRELEASE}:g' \ | ||
44 | -e 's:qtPrepareTool(LRELEASE, lrelease):LRELEASE = ${OE_QMAKE_LRELEASE}:g' $pro | ||
45 | done | ||
46 | |||
47 | sed -i s:SEDME:${S}: ${WORKDIR}/linux.conf | ||
48 | sed -i \ | ||
49 | -e /QMAKE_MOC\ /d \ | ||
50 | -e /QMAKE_UIC\ /d \ | ||
51 | -e /QMAKE_UIC3\ /d \ | ||
52 | -e /QMAKE_RCC\ /d \ | ||
53 | ${S}/configure | ||
54 | |||
55 | # Avoid problems with Qt 4.8.0 configure setting QMAKE_LINK from LD (since we want the linker to be g++) | ||
56 | unset LD | ||
57 | } | ||
58 | |||