aboutsummaryrefslogtreecommitdiffstats
path: root/packages/uicmoc/uicmoc3-native_3.3.2.bb
blob: 3871c80c04253c577140ff60a56e52cd4add88d0 (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
39
40
41
42
DESCRIPTION = "User Interface Generator and Meta Object Compiler (moc) for Qt(E) 3.x"
SECTION = "devel"
PRIORITY = "optional"
LICENSE = "GPL/QPL"

SRC_URI = "ftp://ftp.trolltech.com/qt/source/qt-embedded-free-3.3.2.tar.bz2 \
	   file://no-examples.patch;patch=1"

S = "${WORKDIR}/qt-embedded-free-3.3.2"

inherit native qmake-base qt3e

export QTDIR = "${S}"
export OE_QMAKE_LINK="${CXX}"
CXXFLAGS += " -DQWS"

QT_CONFIG_FLAGS = "-release -static -depths 8,16 -qt-zlib -no-nas-sound \
                   -no-sm -qt-libpng -no-gif -no-xshape -no-xinerama \
                   -no-xcursor -no-xrandr -no-xrender -no-xft -no-tablet \
                   -no-xkb -no-dlopen-opengl -no-freetype -no-thread \
                   -no-nis -no-cups -prefix ${prefix} \
                   -xplatform ${OE_QMAKE_PLATFORM} \
                   -platform ${OE_QMAKE_PLATFORM}"

do_configure() {
    oe_qmake_mkspecs
    echo "yes" | ./configure ${QT_CONFIG_FLAGS}
}

do_stage() {
	install -d ${OE_QMAKE_INCDIR_QT}
	install -d ${OE_QMAKE_LIBDIR_QT}

	install -m 0755 bin/moc ${OE_QMAKE_UIC}
	install -m 0755 bin/uic ${OE_QMAKE_MOC}
	install -m 0655 lib/*.a ${OE_QMAKE_LIBDIR_QT}

	for f in include/*.h
	do
		install -m 0644 $f ${OE_QMAKE_INCDIR_QT}/
	done
}