diff options
author | Holger Freyther <zecke@selfish.org> | 2007-05-10 15:34:14 +0000 |
---|---|---|
committer | Holger Freyther <zecke@selfish.org> | 2007-05-10 15:34:14 +0000 |
commit | 3675b6af66fdab4701b21adca8ee18d4ed4f5a1d (patch) | |
tree | 103dc5c0f12a5310781409d712842c4263355f1f /packages/uicmoc/uicmoc4-native_4.2.3.bb | |
parent | 5ed78a09980a1623ef94809196614ddf6a1db748 (diff) |
packages/{qmake,uicmoc}: Update qmake and uic/moc from Qt4.1.2 to 4.2.3
Version 4.2 is needed to compile the WebKit/Gdk port. Update the checksums.ini
containing the md5/shasum of my download.
Install qmake as qmake2 and qmake-qt4 to follow the debian naming of this
binary.
Diffstat (limited to 'packages/uicmoc/uicmoc4-native_4.2.3.bb')
-rw-r--r-- | packages/uicmoc/uicmoc4-native_4.2.3.bb | 41 |
1 files changed, 41 insertions, 0 deletions
diff --git a/packages/uicmoc/uicmoc4-native_4.2.3.bb b/packages/uicmoc/uicmoc4-native_4.2.3.bb new file mode 100644 index 0000000000..341b092e29 --- /dev/null +++ b/packages/uicmoc/uicmoc4-native_4.2.3.bb @@ -0,0 +1,41 @@ +DESCRIPTION = "User-Interface-, Meta-Object-, and Resource Compiler for Qt/[X11|Mac|Embedded] version 4.x" +SECTION = "libs" +PRIORITY = "optional" +LICENSE = "GPL QPL" + +SRC_URI = "ftp://ftp.trolltech.com/qt/source/qt-x11-opensource-src-${PV}.tar.gz" + +S = "${WORKDIR}/qt-x11-opensource-src-${PV}" + +inherit native + +EXTRA_OECONF = "-qt-libjpeg -qt-gif -system-zlib \ + -no-nis -no-cups -no-exceptions \ + -no-accessibility -no-libjpeg \ + -no-nas-sound -no-sm \ + -no-xshape -no-xinerama \ + -no-xcursor -no-xrandr \ + -no-xrender -no-fontconfig \ + -no-tablet -no-xkb \ + -no-libpng \ + -verbose -release -fast -static " +EXTRA_OEMAKE = " " + +do_configure() { + echo yes | ./configure ${EXTRA_OECONF} || die "Configuring qt failed. EXTRA_OECONF was ${EXTRA_OECONF}" +} + +do_compile() { + unset CC CXX CFLAGS LFLAGS CXXFLAGS CPPFLAGS + cd ${S}/src/tools/moc && oe_runmake CC="${CC}" CXX="${CXX}" + cd ${S}/src/corelib && oe_runmake CC="${CC}" CXX="${CXX}" + cd ${S}/src/xml && oe_runmake CC="${CC}" CXX="${CXX}" + cd ${S}/src/tools/uic && oe_runmake CC="${CC}" CXX="${CXX}" + cd ${S}/src/tools/rcc && oe_runmake CC="${CC}" CXX="${CXX}" +} + +do_stage() { + install -m 0755 bin/moc ${STAGING_BINDIR}/moc4 + install -m 0755 bin/uic ${STAGING_BINDIR}/uic4 + install -m 0755 bin/rcc ${STAGING_BINDIR}/rcc4 +} |