qtdeclarative: Initial recipe

Signed-off-by: Mikko Levonmaa <mikko.levonmaa@gmail.com>
This commit is contained in:
Mikko Levonmaa 2012-12-07 08:57:03 -08:00
parent 18b6ac18c7
commit 16e4143ba5
3 changed files with 47 additions and 0 deletions

View File

@ -0,0 +1 @@
load(qt_build_config)

View File

@ -0,0 +1,39 @@
LICENSE = "LGPLv2.1"
LIC_FILES_CHKSUM = "file://${COMMON_LICENSE_DIR}/LGPL-2.1;md5=1a6d268fd218675ffea8be556788b780"
DEPENDS = "qtbase qtjsbackend"
INC_PR = "r0"
inherit qmake5
SRC_URI += " \
file://module_qmake.conf \
"
# Bitbake will not respect the make order set by qmake and at times it will try to compile
# parts of the source tree with out the 'mkv8snapshot' tool if it is enabled and that will fail
#PARALLEL_MAKE = ""
export QT_CONF_PATH="${WORKDIR}/qt.conf"
do_configure () {
# Avoid setting QMAKE_LINK from LD (since we want the linker to be g++)
unset LD
# This should not be needed. Perhaps the lack of this file is an indication
# of an error on the native recipe...
cp ${WORKDIR}/module_qmake.conf ${S}/.qmake.conf
${OE_QMAKE_QMAKE} -d
}
do_install() {
oe_runmake install INSTALL_ROOT=${D}
}
FILES_${PN}-dev += "\
${STAGING_INCDIR}/qt5 \
${STAGING_DATADIR}/qt5 \
${libdir}/*.prl \
"

View File

@ -0,0 +1,7 @@
SRCREV = "90ac5018823ab1109d084cbe0e9e63a4cd531faa"
SRC_URI += "git://gitorious.org/qt/qtdeclarative.git;protocol=git"
S = "${WORKDIR}/git"
require qtdeclarative.inc
PR = "${INC_PR}.0"