aboutsummaryrefslogtreecommitdiffstats
path: root/qmake
diff options
context:
space:
mode:
authorMichael Lauer <mickey@vanille-media.de>2004-01-14 17:49:57 +0000
committerMichael Lauer <mickey@vanille-media.de>2004-01-14 17:49:57 +0000
commit5cd6f5021a4ad3df5c02e266b524f47003b47486 (patch)
treecc50c19b0640a11e603765e6c49befa6aff01ab1 /qmake
parent4c045ac32d6a7b4e52719d68ccf5034563428d91 (diff)
downloadopenembedded-5cd6f5021a4ad3df5c02e266b524f47003b47486.tar.gz
install qmake spec files into staging
BKrev: 400581457Sj9CglWfRLtfT8OSZUcKA
Diffstat (limited to 'qmake')
-rw-r--r--qmake/qmake-native_3.2.3.oe42
1 files changed, 42 insertions, 0 deletions
diff --git a/qmake/qmake-native_3.2.3.oe b/qmake/qmake-native_3.2.3.oe
index e69de29bb2..8aebcd4c31 100644
--- a/qmake/qmake-native_3.2.3.oe
+++ b/qmake/qmake-native_3.2.3.oe
@@ -0,0 +1,42 @@
+DESCRIPTION=Qt(E) Makefile Generator
+PRIORITY="optional"
+RDEPENDS=libc6
+DEPENDS=virtual/libc
+LICENSE="GPL/QPL"
+
+SRC_URI="ftp://ftp.trolltech.com/pub/qt/source/qt-embedded-free-${PV}.tar.bz2"
+S="${WORKDIR}/qt-embedded-free-${PV}"
+
+inherit autotools native
+
+export QTDIR=${S}
+
+ARCH_i686=x86
+
+EXTRA_OECONF = -static -no-gif -no-sm -system-zlib -system-libjpeg -system-libpng -no-thread -no-nis -no-cups -no-stl \
+ -disable-styles -disable-tools -disable-kernel -disable-widgets -disable-dialogs -disable-iconview \
+ -disable-workspace -disable-network -disable-canvas -disable-table -disable-xml -disable-opengl -disable-sql
+EXTRA_OEMAKE=-e
+
+do_configure() {
+ if [ "$BUILD_ARCH" = "i686" ]; then
+ BUILD_ARCH=x86
+ fi
+ echo yes | ./configure $EXTRA_OECONF || die "Configuring qt failed"
+
+}
+
+do_compile() {
+ sleep 1
+}
+
+do_stage() {
+ install -m 0755 bin/qmake ${STAGING_BINDIR}
+ install -d ${QMAKE_MKSPEC_PATH}
+ cp -dfR mkspecs/* ${QMAKE_MKSPEC_PATH}
+}
+
+do_install() {
+ sleep 1
+}
+