blob: aa85facce7f8f7d8ba15927ea974abf8aea83e24 (
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
|
DEFAULT_PREFERENCE = "-1"
require qt4-embedded.inc
SRC_URI = "ftp://ftp.trolltech.com/qt/source/qt-everywhere-opensource-src-${PV}.tar.gz \
file://0001-cross-compile.patch;patch=1 \
file://0002-fix-resinit-declaration.patch;patch=1 \
file://0004-no-qmake.patch;patch=1 \
file://0006-freetype-host-includes.patch;patch=1 \
file://0008-qt-lib-infix.patch;patch=1 \
file://0009-support-2bpp.patch;patch=1 \
file://fix-config-tests.patch;patch=1 \
file://g++.conf \
file://linux.conf \
"
S = "${WORKDIR}/qt-everywhere-opensource-src-${PV}"
do_configure_prepend() {
sed -i \
-e /QMAKE_MOC\ /d \
-e /QMAKE_UIC\ /d \
-e /QMAKE_UIC3\ /d \
-e /QMAKE_RCC\ /d \
${S}/configure
# sed -i /tools.pro/d ${S}/src/src.pro
}
do_install_append() {
install -d ${D}${bindir}
for i in rcc uic moc ; do
install -m 0755 ${S}/bin/$i ${D}${bindir}/
done
}
LICENSE = "LGPLv2.1 GPLv3"
SRC_URI += " \
file://hack-out-pg_config.patch;patch=1"
|