summaryrefslogtreecommitdiffstats
path: root/recipes-qt/qt5/qt5-native.inc
blob: 76e2277dc95422345da3d431ee255b6b7ce95975 (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
43
44
45
46
47
48
49
50
51
52
53
DESCRIPTION = "Native version of Qt/[X11|Mac|Embedded]"
DEPENDS = "zlib-native dbus-native"
SECTION = "libs"
HOMEPAGE = "http://qt-project.org"
PROVIDES = "qt5-tools-native"

INC_PR = "r0"

inherit native

QT_MODULE = "qtbase"

EXTRA_OECONF = "-prefix ${prefix} \
                -L ${STAGING_LIBDIR_NATIVE} \
                -I ${STAGING_INCDIR_NATIVE} \
                -system-zlib \
                -no-libjpeg \
                -no-libpng \
                -no-gif \
                -no-accessibility \
                -no-cups \
                -no-nis \
                -no-gui \
                -no-qml-debug \
                -no-sql-mysql \
                -no-sql-sqlite \
                -no-opengl \
                -no-openssl \
                -verbose -release \
                -headerdir ${includedir}/qt5 \
                -no-glib \
                -no-iconv \
                -no-fast \
                -silent \
                -nomake examples \
                -nomake tests \
                -nomake demos \
                -no-rpath \
"

do_configure() {
	# Avoid setting QMAKE_LINK from LD (since we want the linker to be g++)
	unset LD

	(echo o; echo yes) | ./configure ${EXTRA_OECONF} || die "Configuring qt failed. EXTRA_OECONF was ${EXTRA_OECONF}"
}

do_install() {
	install -d ${D}${bindir}/
	for i in findtr fixqt4headers.pl moc qdoc qmake rcc qdbuscpp2xml qdbusxml2cpp syncqt; do
		install -v -m 0755 bin/${i} ${D}${bindir}/${i}
	done
}