diff options
author | Holger Schurig <schurig@mn-solutions.de> | 2004-09-29 09:53:00 +0000 |
---|---|---|
committer | Holger Schurig <schurig@mn-solutions.de> | 2004-09-29 09:53:00 +0000 |
commit | 8dd6328e322ee6690929a3df6b1d10336ce3f8c3 (patch) | |
tree | aab57f1bfae83c6e2b72a19862c56c9ea68ff5bf /uicmoc | |
parent | 3fa7b913efaddc2f7f26e8ab2f69049b4521b119 (diff) |
some lint fixes
BKrev: 415a85fcDRqfpbe9bFInrJY86xQj2g
Diffstat (limited to 'uicmoc')
-rw-r--r-- | uicmoc/uicmoc-native_2.3.7.oe | 2 | ||||
-rw-r--r-- | uicmoc/uicmoc3-native_3.3.2.oe | 38 |
2 files changed, 39 insertions, 1 deletions
diff --git a/uicmoc/uicmoc-native_2.3.7.oe b/uicmoc/uicmoc-native_2.3.7.oe index 332813983f..aea0c4e621 100644 --- a/uicmoc/uicmoc-native_2.3.7.oe +++ b/uicmoc/uicmoc-native_2.3.7.oe @@ -1,5 +1,5 @@ DESCRIPTION = "User Interface Generator and Meta Object Compiler (moc) for Qt(E) 2.x" -SECTION = "tools" +SECTION = "devel" PRIORITY = "optional" LICENSE = "GPL/QPL" PR = "r1" diff --git a/uicmoc/uicmoc3-native_3.3.2.oe b/uicmoc/uicmoc3-native_3.3.2.oe index e69de29bb2..98d8af763a 100644 --- a/uicmoc/uicmoc3-native_3.3.2.oe +++ b/uicmoc/uicmoc3-native_3.3.2.oe @@ -0,0 +1,38 @@ +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 + +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 -m 0755 bin/moc ${STAGING_BINDIR}/moc3 + install -m 0755 bin/uic ${STAGING_BINDIR}/uic3 + install -m 0655 lib/*.a ${STAGING_LIBDIR}/ + for f in include/*.h + do + install -m 0644 $f ${STAGING_INCDIR}/ + done +} |