diff options
Diffstat (limited to 'meta/recipes-qt/qt4/qt4-4.8.1.inc')
-rw-r--r-- | meta/recipes-qt/qt4/qt4-4.8.1.inc | 60 |
1 files changed, 0 insertions, 60 deletions
diff --git a/meta/recipes-qt/qt4/qt4-4.8.1.inc b/meta/recipes-qt/qt4/qt4-4.8.1.inc deleted file mode 100644 index 4cf1222e0e..0000000000 --- a/meta/recipes-qt/qt4/qt4-4.8.1.inc +++ /dev/null @@ -1,60 +0,0 @@ -LICENSE = "LGPLv2.1 | GPLv3" -LIC_FILES_CHKSUM = "file://LICENSE.LGPL;md5=fbc093901857fcd118f065f900982c24 \ - file://LICENSE.GPL3;md5=babc5b6b77441da277f5c06b2e547720 \ - file://LGPL_EXCEPTION.txt;md5=411080a56ff917a5a1aa08c98acae354" - -FILESEXTRAPATHS =. "${FILE_DIRNAME}/qt4-${PV}:" - -SRC_URI = "http://releases.qt-project.org/qt4/source/qt-everywhere-opensource-src-${PV}.tar.gz \ - file://0003-webkit2-set-OUTPUT_DIR-value-if-empty.patch \ - file://0004-configure-qmake-is-already-built-in-qt4-tools-native.patch \ - file://0008-qmake.pro-Allow-building-a-separate-qmake-for-the-ta.patch \ - file://0009-qmake-fix-source-file-references-in-qmake.pri.patch \ - file://0010-configure-Hack-to-not-use-the-pg_config-of-the-host-.patch \ - file://0011-freetype-host-includes.patch \ - file://0012-Add-2bpp-support.patch \ - file://0013-configure-add-crossarch-option.patch \ - file://0014-translations-fix-phony-translation-linking-error.patch \ - file://0015-configure-add-nostrip-for-debug-packages.patch \ - file://0016-configure-eval-QMAKE_CXX.patch \ - file://0017-configure-ensure-we-identify-the-compiler-as-g-in-co.patch \ - file://0018-configure-make-pulseaudio-a-configurable-option.patch \ - file://0019-javascriptcore-Fix-compile-error-when-using-toolchai.patch \ - file://0020-Fixes-for-gcc-4.7.0-particularly-on-qemux86.patch \ - file://0021-webkit-disable-the-fuse-ld-gold-flag.patch \ - file://0022-webkit-fix-conflicting-types.patch \ - file://g++.conf \ - file://linux.conf \ - " - -SRC_URI[md5sum] = "7960ba8e18ca31f0c6e4895a312f92ff" -SRC_URI[sha256sum] = "ef851a36aa41b4ad7a3e4c96ca27eaed2a629a6d2fa06c20f072118caed87ae8" - -S = "${WORKDIR}/qt-everywhere-opensource-src-${PV}" - -FILES_${QT_BASE_NAME}-tools_append = " ${bindir}/qml ${bindir}/qmlplugindump" -FILES_${QT_BASE_NAME}-tools-dbg_append = " ${bindir}/.debug/qml ${bindir}/.debug/qmlplugindump" - -PACKAGES_append = " ${QT_BASE_NAME}-tests-dbg ${QT_BASE_NAME}-tests" -FILES_${QT_BASE_NAME}-tests-dbg = "/usr/tests/qt4/*/.debug" -FILES_${QT_BASE_NAME}-tests = "/usr/tests/qt4/*" - -do_configure_prepend() { - for pro in $(find ${S} -name "*.pro") ; do - sed -i \ - -e 's:$$QT_BUILD_TREE/bin/lrelease:${OE_QMAKE_LRELEASE}:g' \ - -e 's:qtPrepareTool(LRELEASE, lrelease):LRELEASE = ${OE_QMAKE_LRELEASE}:g' $pro - done - - sed -i s:SEDME:${S}: ${WORKDIR}/linux.conf - sed -i \ - -e /QMAKE_MOC\ /d \ - -e /QMAKE_UIC\ /d \ - -e /QMAKE_UIC3\ /d \ - -e /QMAKE_RCC\ /d \ - ${S}/configure - - # Avoid problems with Qt 4.8.0 configure setting QMAKE_LINK from LD (since we want the linker to be g++) - unset LD -} - |