diff options
author | Holger Freyther <zecke@selfish.org> | 2005-08-19 21:11:29 +0000 |
---|---|---|
committer | OpenEmbedded Project <openembedded-devel@lists.openembedded.org> | 2005-08-19 21:11:29 +0000 |
commit | 990ca5f8332f58064c81b018b5afa754000f571d (patch) | |
tree | 8feb580fc3ca9c736cac4c589e88c03169c0a3f4 /packages/uicmoc/uicmoc4-native_4.0.1.bb | |
parent | b46b6be6cdd16878476e47ec26d6b9af57498f62 (diff) |
openembedded/packages/uicmoc/uicmoc4-native:
-Update to Qt4.0.1
-Only the name of the downloadable archive needed updating
Diffstat (limited to 'packages/uicmoc/uicmoc4-native_4.0.1.bb')
-rw-r--r-- | packages/uicmoc/uicmoc4-native_4.0.1.bb | 42 |
1 files changed, 42 insertions, 0 deletions
diff --git a/packages/uicmoc/uicmoc4-native_4.0.1.bb b/packages/uicmoc/uicmoc4-native_4.0.1.bb new file mode 100644 index 0000000000..399215c0eb --- /dev/null +++ b/packages/uicmoc/uicmoc4-native_4.0.1.bb @@ -0,0 +1,42 @@ +DESCRIPTION = "User-Interface-, Meta-Object-, and Resource Compiler for Qt/[X11|Mac|Embedded] version 4.x" +SECTION = "libs" +PRIORITY = "optional" +LICENSE = "GPL QPL" +PR = "r1" + +SRC_URI = "ftp://ftp.trolltech.com/qt/source/qt-x11-opensource-src-${PV}.tar.gz \ + file://fix-mkspecs.patch;patch=1 " +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 +} |