package/wpebackend-fdo: new package

Signed-off-by: Francois Perrad <francois.perrad@gadz.org>
Reviewed-by: Adrian Perez de Castro <aperez@igalia.com>
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@bootlin.com>
This commit is contained in:
Francois Perrad 2019-02-05 21:41:50 +01:00 committed by Thomas Petazzoni
parent 7d0203387e
commit 82f1c43aa4
5 changed files with 44 additions and 0 deletions

View file

@ -71,6 +71,7 @@ F: package/libepoxy/
F: package/libwpe/
F: package/webkitgtk/
F: package/woff2/
F: package/wpebackend-fdo/
N: Adrien Gallouët <adrien@gallouet.fr>
F: package/bird/
@ -847,6 +848,7 @@ F: package/qemu/
F: package/sdl2_mixer/
F: package/sdl2_net/
F: package/tekui/
F: package/wpebackend-fdo/
F: package/wsapi-fcgi/
F: package/wsapi-xavante/
F: utils/scancpan

View file

@ -1321,6 +1321,7 @@ menu "Graphics"
source "package/webkitgtk/Config.in"
source "package/webp/Config.in"
source "package/woff2/Config.in"
source "package/wpebackend-fdo/Config.in"
source "package/zbar/Config.in"
source "package/zxing-cpp/Config.in"
endmenu

View file

@ -0,0 +1,19 @@
comment "wpebackend-fdo needs a toolchain w/ C++, wchar, threads, dynamic library and an OpenEGL-capable backend"
depends on !BR2_PACKAGE_HAS_LIBEGL || !BR2_INSTALL_LIBSTDCPP || !BR2_USE_WCHAR \
|| !BR2_TOOLCHAIN_HAS_THREADS || BR2_STATIC_LIBS
config BR2_PACKAGE_WPEBACKEND_FDO
bool "wpebackend-fdo"
depends on !BR2_STATIC_LIBS # wayland
depends on BR2_INSTALL_LIBSTDCPP
depends on BR2_TOOLCHAIN_HAS_THREADS # wayland, libglib2
depends on BR2_USE_WCHAR # libglib2
depends on BR2_USE_MMU # libglib2
depends on BR2_PACKAGE_HAS_LIBEGL
select BR2_PACKAGE_LIBGLIB2
select BR2_PACKAGE_LIBWPE
select BR2_PACKAGE_WAYLAND
help
WPEBackend interface using freedesktop.org API.
https://wpewebkit.org/

View file

@ -0,0 +1,7 @@
# From https://wpewebkit.org/releases/wpebackend-fdo-1.0.0.tar.xz.sums
md5 5318728afb3bf7417293af67ce427963 wpebackend-fdo-1.0.0.tar.xz
sha1 7ee22bc1d585616f4ad2047d8be54ec396486211 wpebackend-fdo-1.0.0.tar.xz
sha256 7a747f87a1ae46d30144369050e3ce348b58986d04e1a139ba75c198fa636729 wpebackend-fdo-1.0.0.tar.xz
# Hashes for license files:
sha256 c9f6803371047fad3e72200ec6cd226329a5ee08ac61104c8211c2761fb46825 COPYING

View file

@ -0,0 +1,15 @@
################################################################################
#
# wpebackend-fdo
#
################################################################################
WPEBACKEND_FDO_VERSION = 1.0.0
WPEBACKEND_FDO_SITE = https://wpewebkit.org/releases
WPEBACKEND_FDO_SOURCE = wpebackend-fdo-$(WPEBACKEND_FDO_VERSION).tar.xz
WPEBACKEND_FDO_INSTALL_STAGING = YES
WPEBACKEND_FDO_LICENSE = BSD-2-Clause
WPEBACKEND_FDO_LICENSE_FILES = COPYING
WPEBACKEND_FDO_DEPENDENCIES = libglib2 libwpe wayland
$(eval $(cmake-package))