summaryrefslogtreecommitdiff
path: root/uicmoc
diff options
context:
space:
mode:
Diffstat (limited to 'uicmoc')
-rw-r--r--uicmoc/uicmoc-native_2.3.7.bb0
-rw-r--r--uicmoc/uicmoc-native_2.3.7.oe46
-rw-r--r--uicmoc/uicmoc3-native_3.3.2.bb0
-rw-r--r--uicmoc/uicmoc3-native_3.3.2.oe38
4 files changed, 0 insertions, 84 deletions
diff --git a/uicmoc/uicmoc-native_2.3.7.bb b/uicmoc/uicmoc-native_2.3.7.bb
new file mode 100644
index 0000000000..e69de29bb2
--- /dev/null
+++ b/uicmoc/uicmoc-native_2.3.7.bb
diff --git a/uicmoc/uicmoc-native_2.3.7.oe b/uicmoc/uicmoc-native_2.3.7.oe
deleted file mode 100644
index aea0c4e621..0000000000
--- a/uicmoc/uicmoc-native_2.3.7.oe
+++ /dev/null
@@ -1,46 +0,0 @@
-DESCRIPTION = "User Interface Generator and Meta Object Compiler (moc) for Qt(E) 2.x"
-SECTION = "devel"
-PRIORITY = "optional"
-LICENSE = "GPL/QPL"
-PR = "r1"
-
-SRC_URI = "ftp://ftp.trolltech.com/pub/qt/source/qt-embedded-${PV}.tar.gz \
- file://fix-makefile.patch;patch=1 \
- file://gcc3_4.patch;patch=1"
-
-S = "${WORKDIR}/qt-${PV}"
-
-inherit native qmake-base
-
-export QTDIR = "${S}"
-EXTRA_OEMAKE = 'SYSCONF_CXX="${CXX}" SYSCONF_LINK="${CXX}"'
-CXXFLAGS += " -DQWS"
-
-QT_CONFIG_FLAGS = "-depths 8,16 -no-qvfb -no-g++-exceptions -no-jpeg -no-mng \
- -qt-zlib -qt-libpng -no-xft -no-xkb -no-vnc -no-sm \
- -no-opengl -static -qconfig oe"
-
-do_configure() {
- touch src/tools/qconfig-oe.h
- echo "#define QT_NO_FREETYPE" >> src/tools/qconfig-oe.h
- echo yes | ./configure ${QT_CONFIG_FLAGS} || die "Configuring qt failed"
-}
-
-do_compile() {
- oe_runmake symlinks || die "Can't symlink include files"
- oe_runmake -C src/moc || die "Building moc failed"
-
- cp src/moc/moc bin/
-
- oe_runmake -C src || die "Building libqt.a failed"
- oe_runmake -C tools/designer/util || die "Building libqutil.a failed"
- oe_runmake -C tools/designer/uic || die "Building uic failed"
- oe_runmake -C tools/qvfb || die "Building qvfb failed"
- oe_runmake -C tools/makeqpf || die "Building makeqpf failed"
-}
-
-do_stage() {
- install -m 0755 bin/moc ${STAGING_BINDIR}
- install -m 0755 bin/uic ${STAGING_BINDIR}
- install -m 0755 tools/makeqpf/makeqpf ${STAGING_BINDIR}
-}
diff --git a/uicmoc/uicmoc3-native_3.3.2.bb b/uicmoc/uicmoc3-native_3.3.2.bb
new file mode 100644
index 0000000000..e69de29bb2
--- /dev/null
+++ b/uicmoc/uicmoc3-native_3.3.2.bb
diff --git a/uicmoc/uicmoc3-native_3.3.2.oe b/uicmoc/uicmoc3-native_3.3.2.oe
deleted file mode 100644
index 98d8af763a..0000000000
--- a/uicmoc/uicmoc3-native_3.3.2.oe
+++ /dev/null
@@ -1,38 +0,0 @@
-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
-}