diff options
author | Alexander Kanavin <alexander.kanavin@linux.intel.com> | 2015-11-27 15:48:20 +0200 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2016-01-07 13:33:59 +0000 |
commit | cb89d2b25b4edb1241bc5426a69a6bc44df9be2c (patch) | |
tree | 778d1166be782fff08ccef8c2eca505aaa49d4f4 /meta/recipes-qt/qt4/qt4-embedded.inc | |
parent | 95fced137a46dc98863fe5af7be5cbce708602f2 (diff) | |
download | openembedded-core-cb89d2b25b4edb1241bc5426a69a6bc44df9be2c.tar.gz openembedded-core-cb89d2b25b4edb1241bc5426a69a6bc44df9be2c.tar.bz2 openembedded-core-cb89d2b25b4edb1241bc5426a69a6bc44df9be2c.zip |
qt4: remove recipes and classes
Qt4 is no longer supportd upstream, but it is still needed for LSB compliancy.
Qt4 recipes have been moved to a separate meta-qt4 layer to be consistent with
meta-qt3 and meta-qt5.
Signed-off-by: Alexander Kanavin <alexander.kanavin@linux.intel.com>
Signed-off-by: Ross Burton <ross.burton@intel.com>
Diffstat (limited to 'meta/recipes-qt/qt4/qt4-embedded.inc')
-rw-r--r-- | meta/recipes-qt/qt4/qt4-embedded.inc | 74 |
1 files changed, 0 insertions, 74 deletions
diff --git a/meta/recipes-qt/qt4/qt4-embedded.inc b/meta/recipes-qt/qt4/qt4-embedded.inc deleted file mode 100644 index a769065792..0000000000 --- a/meta/recipes-qt/qt4/qt4-embedded.inc +++ /dev/null @@ -1,74 +0,0 @@ -SUMMARY = "Cross-platform UI toolkit and application framework (framebuffer version)" -DESCRIPTION = "Qt is a versatile cross-platform application framework -- this is the embedded (framebuffer) version." -SECTION = "libs" -HOMEPAGE = "http://qt-project.org/" -DEPENDS += "directfb tslib" - -QT4EDEPENDS = "" -QT_BASE_LIB ?= "libqt-embedded" - -# Set necessary variables in the profile -SRC_URI += "file://qte.sh \ - file://0033-configure-support-c-0x-standard-for-directfd.patch \ -" - -QT_EMBEDDED_FLAGS ?= " \ - -embedded $QT_ARCH \ - -qtlibinfix ${QT_LIBINFIX} \ -" -QT_EMBEDDED_EXTRA_FLAGS ?= " \ - -plugin-gfx-transformed -plugin-gfx-qvfb -plugin-gfx-vnc -plugin-gfx-directfb \ - -plugin-mouse-tslib -qt-mouse-pc -qt-mouse-qvfb -qt-mouse-linuxinput \ - -qt-kbd-tty -qt-kbd-linuxinput \ -" -QT_EMBEDDED_KEYPAD_FLAGS ?= " \ - -DQT_KEYPAD_NAVIGATION \ -" - -QT_CONFIG_FLAGS += "${QT_EMBEDDED_FLAGS} ${QT_EMBEDDED_EXTRA_FLAGS} ${QT_EMBEDDED_KEYPAD_FLAGS}" - -require qt4.inc - -do_install_append() { - install -d ${D}/${libdir}/fonts - touch ${D}/${libdir}/fonts/fontdir - - install -d ${D}${sysconfdir}/profile.d/ - install -m 0755 ${WORKDIR}/qte.sh ${D}${sysconfdir}/profile.d/ -} - -# We put the qte profile into it's own package as we don't want to install all qt stuff -# with depending on the global package qt4-embedded -PACKAGES += " ${PN}-conf" -FILES_${PN}-conf += " ${sysconfdir}/profile.d/qte.sh" -RRECOMMENDS_${PN} += " ${PN}-conf" - -OTHER_PACKAGES += "\ - ${QT_BASE_NAME}-fonts \ - ${QT_BASE_NAME}-fonts-ttf-vera \ - ${QT_BASE_NAME}-fonts-ttf-dejavu \ - ${QT_BASE_NAME}-fonts-pfa \ - ${QT_BASE_NAME}-fonts-pfb \ - ${QT_BASE_NAME}-fonts-qpf" - -RRECOMMENDS_${QT_BASE_NAME}-fonts = " \ - ${QT_BASE_NAME}-fonts-ttf-vera \ - ${QT_BASE_NAME}-fonts-ttf-dejavu \ - ${QT_BASE_NAME}-fonts-pfa \ - ${QT_BASE_NAME}-fonts-pfb \ - ${QT_BASE_NAME}-fonts-qpf" -RRECOMMENDS_${QT_BASE_NAME}-demos += " \ - ${QT_BASE_NAME}-fonts" - -ALLOW_EMPTY_${QT_BASE_NAME}-fonts = "1" -PACKAGES_DYNAMIC += "^${QT_BASE_NAME}-fonts-.*" - -FILES_${QT_BASE_NAME}-fonts-ttf-vera = "${libdir}/fonts/Vera*.ttf" -FILES_${QT_BASE_NAME}-fonts-ttf-dejavu = "${libdir}/fonts/DejaVu*.ttf" -FILES_${QT_BASE_NAME}-fonts-pfa = "${libdir}/fonts/*.pfa" -FILES_${QT_BASE_NAME}-fonts-pfb = "${libdir}/fonts/*.pfb" -FILES_${QT_BASE_NAME}-fonts-qpf = "${libdir}/fonts/*.qpf*" -FILES_${QT_BASE_NAME}-fonts = "${libdir}/fonts/README ${libdir}/fonts/fontdir" - -inherit qt4e - |