summaryrefslogtreecommitdiffstats
path: root/meta-oe/recipes-qt/qt4/qmake2.inc
diff options
context:
space:
mode:
authorKoen Kooi <koen@dominion.thruhere.net>2011-06-19 20:40:34 +0200
committerKoen Kooi <koen@dominion.thruhere.net>2011-06-19 20:41:25 +0200
commitbf206c9185c84b52af3f281588d850d555950473 (patch)
treeeaee6f1525902b6e0a2e6d4b6b9d4bfb14f7ad8b /meta-oe/recipes-qt/qt4/qmake2.inc
parent1583b2362494cc5b876700f1ddd5a4ab1a0f161e (diff)
downloadmeta-openembedded-bf206c9185c84b52af3f281588d850d555950473.tar.gz
qmake2: update qt from 4.4.3 to 4.7.3
Signed-off-by: Koen Kooi <koen@dominion.thruhere.net>
Diffstat (limited to 'meta-oe/recipes-qt/qt4/qmake2.inc')
-rw-r--r--meta-oe/recipes-qt/qt4/qmake2.inc14
1 files changed, 9 insertions, 5 deletions
diff --git a/meta-oe/recipes-qt/qt4/qmake2.inc b/meta-oe/recipes-qt/qt4/qmake2.inc
index f2631b5f7..d38e83ef2 100644
--- a/meta-oe/recipes-qt/qt4/qmake2.inc
+++ b/meta-oe/recipes-qt/qt4/qmake2.inc
@@ -2,15 +2,18 @@ DESCRIPTION = "TrollTech Makefile Generator"
2PRIORITY = "optional" 2PRIORITY = "optional"
3HOMEPAGE = "http://www.trolltech.com" 3HOMEPAGE = "http://www.trolltech.com"
4SECTION = "devel" 4SECTION = "devel"
5LICENSE = "GPL" 5LICENSE = "LGPLv2.1 | GPLv3"
6LIC_FILES_CHKSUM = "file://LICENSE.LGPL;md5=fbc093901857fcd118f065f900982c24 \
7 file://LICENSE.GPL3;md5=babc5b6b77441da277f5c06b2e547720 \
8 file://LGPL_EXCEPTION.txt;md5=411080a56ff917a5a1aa08c98acae354"
6PR = "r12" 9PR = "r12"
7 10
8# We call 'moc' during the build 11# We call 'moc' during the build
9DEPENDS = "qt4-tools-native" 12DEPENDS = "qt4-tools-native"
10 13
11QTVER = "qt-embedded-linux-opensource-src-${QTVERSION}" 14QTVER = "qt-everywhere-opensource-src-${QTVERSION}"
12 15
13SRC_URI = "ftp://ftp.trolltech.com/qt/source/${QTVER}.tar.bz2 \ 16SRC_URI = "http://get.qt.nokia.com/qt/source/${QTVER}.tar.gz \
14 file://0001-fix-mkspecs.patch \ 17 file://0001-fix-mkspecs.patch \
15 file://qt-config.patch \ 18 file://qt-config.patch \
16 file://use-lflags-last.patch \ 19 file://use-lflags-last.patch \
@@ -34,9 +37,10 @@ do_configure() {
34 # Make sure we regenerate all Makefiles 37 # Make sure we regenerate all Makefiles
35 find ${S} -name "Makefile" | xargs rm 38 find ${S} -name "Makefile" | xargs rm
36 # Install the OE build templates 39 # Install the OE build templates
37 for template in linux-oe-g++ linux-uclibc-oe-g++ linux-gnueabi-oe-g++ linux-uclibceabi-oe-g++ 40 for template in linux-oe-g++ linux-uclibc-oe-g++ linux-gnueabi-oe-g++ linux-uclibceabi-oe-g++ default
38 do 41 do
39 install -d ${S}/mkspecs/$template 42 install -d ${S}/mkspecs/$template
43 rm -f ${S}/mkspecs/$template/qmake.conf
40 install -m 0644 ${WORKDIR}/linux-oe-qmake.conf ${S}/mkspecs/$template/qmake.conf 44 install -m 0644 ${WORKDIR}/linux-oe-qmake.conf ${S}/mkspecs/$template/qmake.conf
41 ln -sf ../linux-g++/qplatformdefs.h ${S}/mkspecs/$template/qplatformdefs.h 45 ln -sf ../linux-g++/qplatformdefs.h ${S}/mkspecs/$template/qplatformdefs.h
42 done 46 done
@@ -59,7 +63,7 @@ do_configure() {
59 export QMAKE_RCC="${STAGING_BINDIR_NATIVE}/rcc4" 63 export QMAKE_RCC="${STAGING_BINDIR_NATIVE}/rcc4"
60 export OE_QMAKE_QMAKE="${STAGING_BINDIR_NATIVE}/qmake" 64 export OE_QMAKE_QMAKE="${STAGING_BINDIR_NATIVE}/qmake"
61 export OE_QMAKE_RPATH="-Wl,-rpath-link," 65 export OE_QMAKE_RPATH="-Wl,-rpath-link,"
62 echo yes | ./configure -prefix ${STAGING_DIR_NATIVE}/qt4 ${EXTRA_OECONF} || die "Configuring qt failed" 66 (echo o; echo yes) | ./configure -prefix ${STAGING_DIR_NATIVE}/qt4 ${EXTRA_OECONF} || die "Configuring qt failed"
63} 67}
64 68
65do_compile() { 69do_compile() {