summaryrefslogtreecommitdiff
path: root/qmake/qmake-native_3.2.3.oe
blob: 692537cc81f6062052577a91e1b06917c834e04e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
DESCRIPTION = "Qt(E) Makefile Generator"
PRIORITY = "optional"
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() {
        oenote ./configure ${EXTRA_OECONF}
        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
}