aboutsummaryrefslogtreecommitdiffstats
path: root/recipes-qt/qt5/qtjsbackend.inc
diff options
context:
space:
mode:
authorMikko Levonmaa <mikko.levonmaa@gmail.com>2012-12-04 12:06:06 -0800
committerMikko Levonmaa <mikko.levonmaa@gmail.com>2012-12-07 08:54:20 -0800
commita45a6a184fcacf3a6ba15f4b38e5988b83f4c30f (patch)
tree178d645d9c1075a7e81b03fdb752f0c4e87c2234 /recipes-qt/qt5/qtjsbackend.inc
parentb514c5d67a259457383db532151a4bf6f482d158 (diff)
qtjsbackend: Initial recipe
Signed-off-by: Mikko Levonmaa <mikko.levonmaa@gmail.com>
Diffstat (limited to 'recipes-qt/qt5/qtjsbackend.inc')
-rw-r--r--recipes-qt/qt5/qtjsbackend.inc40
1 files changed, 40 insertions, 0 deletions
diff --git a/recipes-qt/qt5/qtjsbackend.inc b/recipes-qt/qt5/qtjsbackend.inc
new file mode 100644
index 00000000..aebbc1f7
--- /dev/null
+++ b/recipes-qt/qt5/qtjsbackend.inc
@@ -0,0 +1,40 @@
+LICENSE = "LGPLv2.1"
+LIC_FILES_CHKSUM = "file://${COMMON_LICENSE_DIR}/LGPL-2.1;md5=1a6d268fd218675ffea8be556788b780"
+
+DEPENDS = "qtbase"
+
+INC_PR = "r0"
+
+inherit qmake5
+
+SRC_URI += " \
+ file://qmake.conf \
+ file://0002-Make-sure-that-we-pick-up-the-mkv8snapshot-tool.patch \
+ "
+
+# 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}/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 \
+"