initial buildroot for linux 5.15
This commit is contained in:
@@ -0,0 +1,59 @@
|
||||
config BR2_PACKAGE_QT5VIRTUALKEYBOARD
|
||||
bool "qt5virtualkeyboard"
|
||||
depends on BR2_PACKAGE_QT5_JSCORE_AVAILABLE # qt5declarative
|
||||
select BR2_PACKAGE_QT5DECLARATIVE
|
||||
select BR2_PACKAGE_QT5DECLARATIVE_QUICK
|
||||
select BR2_PACKAGE_QT5SVG
|
||||
help
|
||||
Qt Virtual Keyboard is a virtual keyboard framework that
|
||||
consists of a C++ backend supporting custom input methods as
|
||||
well as a UI frontend implemented in QML.
|
||||
|
||||
https://doc.qt.io/qt-5/qtvirtualkeyboard-index.html
|
||||
|
||||
if BR2_PACKAGE_QT5VIRTUALKEYBOARD
|
||||
|
||||
config BR2_PACKAGE_QT5VIRTUALKEYBOARD_LANGUAGE_LAYOUTS
|
||||
string "language layouts"
|
||||
default "en_GB"
|
||||
help
|
||||
The Virtual Keyboard supports the following languages:
|
||||
- Arabic (ar_AR)
|
||||
- Danish (da_DK)
|
||||
- English (en_GB)
|
||||
- Finnish (fi_FI)
|
||||
- French (fr_FR)
|
||||
- German (de_DE)
|
||||
- Hindi (hi_IN)
|
||||
- Italian (it_IT)
|
||||
- Japanese (ja_JP)
|
||||
- Korean (ko_KR)
|
||||
- Norwegian (nb_NO)
|
||||
- Persian/Farsi (fa_FA)
|
||||
- Polish (pl_PL)
|
||||
- Portugese (pt_PT)
|
||||
- Romanian (ro_RO)
|
||||
- Russian (ru_RU)
|
||||
- Simplified Chinese (zh_CN)
|
||||
- Traditional Chinese (zh_TW)
|
||||
- Spanish (es_ES)
|
||||
- Swedish (sv_SE)
|
||||
|
||||
Note: the special value "all" can be used to install support
|
||||
for all supported languages.
|
||||
|
||||
config BR2_PACKAGE_QT5VIRTUALKEYBOARD_HANDWRITING
|
||||
bool "handwriting"
|
||||
help
|
||||
Handwriting support, with gestures for fullscreen input.
|
||||
|
||||
Lipi Toolkit (LipiTk) is an open source toolkit for online
|
||||
Handwriting Recognition.
|
||||
|
||||
config BR2_PACKAGE_QT5VIRTUALKEYBOARD_ARROW_KEY_NAVIGATION
|
||||
bool "Arrow key navigation"
|
||||
help
|
||||
Allows controlling the keyboard using the arrow and return
|
||||
keys.
|
||||
|
||||
endif
|
||||
@@ -0,0 +1,9 @@
|
||||
# Hash from: https://download.qt.io/official_releases/qt/5.15/5.15.2/submodules/qtvirtualkeyboard-everywhere-src-5.15.2.tar.xz.sha256
|
||||
sha256 9a3193913be30f09a896e3b8c2f9696d2e9b3f88a63ae9ca8c97a2786b68cf55 qtvirtualkeyboard-everywhere-src-5.15.2.tar.xz
|
||||
|
||||
# Hashes for license files:
|
||||
sha256 8ceb4b9ee5adedde47b31e975c1d90c73ad27b6b165a1dcd80c7c545eb65b903 LICENSE.GPL3
|
||||
sha256 7a45a9769d19545480a241230e6ea520b5156fac00930dcd69b6886749743d10 src/plugins/lipi-toolkit/3rdparty/lipi-toolkit/MIT_LICENSE.txt
|
||||
sha256 05cc719deafd0ab083b03296bb2911de10d116953b626a7629b9ca59938038b1 src/plugins/openwnn/3rdparty/openwnn/NOTICE
|
||||
sha256 b5830d96fb5a7e7e7ebcc295f352846b4b998e78fdc8f9aa68e134d2e4b39986 src/plugins/pinyin/3rdparty/pinyin/NOTICE
|
||||
sha256 9400a6128693d2f25653698e695f554660c71efccc8c21af28bf143e35199db6 src/plugins/tcime/3rdparty/tcime/COPYING
|
||||
@@ -0,0 +1,46 @@
|
||||
################################################################################
|
||||
#
|
||||
# qt5virtualkeyboard
|
||||
#
|
||||
################################################################################
|
||||
|
||||
QT5VIRTUALKEYBOARD_VERSION = $(QT5_VERSION)
|
||||
QT5VIRTUALKEYBOARD_SITE = $(QT5_SITE)
|
||||
QT5VIRTUALKEYBOARD_SOURCE = qtvirtualkeyboard-$(QT5_SOURCE_TARBALL_PREFIX)-$(QT5VIRTUALKEYBOARD_VERSION).tar.xz
|
||||
QT5VIRTUALKEYBOARD_DEPENDENCIES = qt5declarative qt5svg
|
||||
QT5VIRTUALKEYBOARD_INSTALL_STAGING = YES
|
||||
|
||||
QT5VIRTUALKEYBOARD_LICENSE = GPL-3.0
|
||||
QT5VIRTUALKEYBOARD_LICENSE_FILES = LICENSE.GPL3
|
||||
|
||||
QT5VIRTUALKEYBOARD_LANGUAGE_LAYOUTS = $(call qstrip,$(BR2_PACKAGE_QT5VIRTUALKEYBOARD_LANGUAGE_LAYOUTS))
|
||||
ifneq ($(strip $(QT5VIRTUALKEYBOARD_LANGUAGE_LAYOUTS)),)
|
||||
QT5VIRTUALKEYBOARD_QMAKEFLAGS += CONFIG+="$(foreach lang,$(QT5VIRTUALKEYBOARD_LANGUAGE_LAYOUTS),lang-$(lang))"
|
||||
|
||||
ifneq ($(filter ja_JP all,$(QT5VIRTUALKEYBOARD_LANGUAGE_LAYOUTS)),)
|
||||
QT5VIRTUALKEYBOARD_LICENSE += , Apache-2.0 (openwnn)
|
||||
QT5VIRTUALKEYBOARD_LICENSE_FILES += src/plugins/openwnn/3rdparty/openwnn/NOTICE
|
||||
endif
|
||||
|
||||
ifneq ($(filter zh_CN all,$(QT5VIRTUALKEYBOARD_LANGUAGE_LAYOUTS)),)
|
||||
QT5VIRTUALKEYBOARD_LICENSE += , Apache-2.0 (pinyin)
|
||||
QT5VIRTUALKEYBOARD_LICENSE_FILES += src/plugins/pinyin/3rdparty/pinyin/NOTICE
|
||||
endif
|
||||
|
||||
ifneq ($(filter zh_TW all,$(QT5VIRTUALKEYBOARD_LANGUAGE_LAYOUTS)),)
|
||||
QT5VIRTUALKEYBOARD_LICENSE += , Apache-2.0 (tcime), BSD-3-Clause (tcime)
|
||||
QT5VIRTUALKEYBOARD_LICENSE_FILES += src/plugins/tcime/3rdparty/tcime/COPYING
|
||||
endif
|
||||
endif
|
||||
|
||||
ifeq ($(BR2_PACKAGE_QT5VIRTUALKEYBOARD_HANDWRITING),y)
|
||||
QT5VIRTUALKEYBOARD_CONF_OPTS += CONFIG+=handwriting
|
||||
QT5VIRTUALKEYBOARD_LICENSE += , MIT (lipi-toolkit)
|
||||
QT5VIRTUALKEYBOARD_LICENSE_FILES += src/plugins/lipi-toolkit/3rdparty/lipi-toolkit/MIT_LICENSE.txt
|
||||
endif
|
||||
|
||||
ifeq ($(BR2_PACKAGE_QT5VIRTUALKEYBOARD_ARROW_KEY_NAVIGATION),y)
|
||||
QT5VIRTUALKEYBOARD_CONF_OPTS += CONFIG+=arrow-key-navigation
|
||||
endif
|
||||
|
||||
$(eval $(qmake-package))
|
||||
Reference in New Issue
Block a user