diff options
author | Holger Freyther <zecke@selfish.org> | 2005-09-10 15:17:53 +0000 |
---|---|---|
committer | OpenEmbedded Project <openembedded-devel@lists.openembedded.org> | 2005-09-10 15:17:53 +0000 |
commit | 9337de0503a8541762f6110e1244f0d7f2b9a2b4 (patch) | |
tree | 547dfa7b8109b86712bbd6d78425988ce1b1c761 /packages/uicmoc/uicmoc3-native_3.3.2.bb | |
parent | 1aa1ee28fe85e7afb540c137b1edc6db720e6113 (diff) |
Update Qt3 from Qt3.3.x to Qt3.3.5
packages/qt/qt-x11-free-native:
-update from 3.3.2 to 3.3.5
packages/qt/qt-x11-free:
-update from 3.3.3 to 3.3.5
packages/qte-fonts-common/qte-fonts-common:
-update from 3.3.3 to 3.3.5
packages/uicmoc/uicmoc3-native:
-update from 3.3.2 to 3.3.5
-build not the complete Qt3 but only most parts
-use ${PV} instead of hardcondig version
packages/qmake/qmake-native_1.07:
-update from 3.3.3 to 3.3.5
Diffstat (limited to 'packages/uicmoc/uicmoc3-native_3.3.2.bb')
-rw-r--r-- | packages/uicmoc/uicmoc3-native_3.3.2.bb | 43 |
1 files changed, 0 insertions, 43 deletions
diff --git a/packages/uicmoc/uicmoc3-native_3.3.2.bb b/packages/uicmoc/uicmoc3-native_3.3.2.bb deleted file mode 100644 index f7024f90ba..0000000000 --- a/packages/uicmoc/uicmoc3-native_3.3.2.bb +++ /dev/null @@ -1,43 +0,0 @@ -DESCRIPTION = "User Interface Generator and Meta Object Compiler (moc) for Qt(E) 3.x" -SECTION = "devel" -PRIORITY = "optional" -LICENSE = "GPL QPL" -PR = "r1" - -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 qt3e - -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 -d ${OE_QMAKE_INCDIR_QT} - install -d ${OE_QMAKE_LIBDIR_QT} - - install -m 0755 bin/moc ${OE_QMAKE_MOC} - install -m 0755 bin/uic ${OE_QMAKE_UIC} - install -m 0655 lib/*.a ${OE_QMAKE_LIBDIR_QT} - - for f in include/*.h - do - install -m 0644 $f ${OE_QMAKE_INCDIR_QT}/ - done -} |