Move all to deprecated folder.
This commit is contained in:
15
deprecated/firmware/buildroot/package/wayland/Config.in
Normal file
15
deprecated/firmware/buildroot/package/wayland/Config.in
Normal file
@@ -0,0 +1,15 @@
|
||||
config BR2_PACKAGE_WAYLAND
|
||||
bool "wayland"
|
||||
depends on !BR2_STATIC_LIBS # dlfcn.h
|
||||
depends on BR2_TOOLCHAIN_HAS_THREADS
|
||||
select BR2_PACKAGE_LIBFFI
|
||||
select BR2_PACKAGE_EXPAT
|
||||
help
|
||||
Wayland is a project to define a protocol for a compositor
|
||||
to talk to its clients as well as a library implementation
|
||||
of the protocol.
|
||||
|
||||
http://wayland.freedesktop.org/
|
||||
|
||||
comment "wayland needs a toolchain w/ threads, dynamic library"
|
||||
depends on !BR2_TOOLCHAIN_HAS_THREADS || BR2_STATIC_LIBS
|
||||
@@ -0,0 +1,2 @@
|
||||
# From: http://lists.freedesktop.org/archives/wayland-devel/2015-June/022630.html
|
||||
sha256 f17c938d1c24fd0a10f650a623a2775d329db3168b5732e498b08388ec776fc8 wayland-1.8.1.tar.xz
|
||||
37
deprecated/firmware/buildroot/package/wayland/wayland.mk
Normal file
37
deprecated/firmware/buildroot/package/wayland/wayland.mk
Normal file
@@ -0,0 +1,37 @@
|
||||
################################################################################
|
||||
#
|
||||
# wayland
|
||||
#
|
||||
################################################################################
|
||||
|
||||
WAYLAND_VERSION = 1.8.1
|
||||
WAYLAND_SITE = http://wayland.freedesktop.org/releases
|
||||
WAYLAND_SOURCE = wayland-$(WAYLAND_VERSION).tar.xz
|
||||
WAYLAND_LICENSE = MIT
|
||||
WAYLAND_LICENSE_FILES = COPYING
|
||||
|
||||
WAYLAND_INSTALL_STAGING = YES
|
||||
WAYLAND_DEPENDENCIES = libffi host-pkgconf host-wayland expat
|
||||
|
||||
# wayland-scanner is only needed for building, not on the target
|
||||
WAYLAND_CONF_OPTS = --disable-scanner
|
||||
|
||||
# We must provide a specialy-crafted wayland-scanner .pc file
|
||||
# which we vampirise and adapt from the host-wayland copy
|
||||
define WAYLAND_SCANNER_PC
|
||||
$(INSTALL) -m 0644 -D $(HOST_DIR)/usr/lib/pkgconfig/wayland-scanner.pc \
|
||||
$(STAGING_DIR)/usr/lib/pkgconfig/wayland-scanner.pc
|
||||
$(SED) 's:^prefix=.*:prefix=/usr:' \
|
||||
-e 's:^wayland_scanner=.*:wayland_scanner=$(HOST_DIR)/usr/bin/wayland-scanner:' \
|
||||
$(STAGING_DIR)/usr/lib/pkgconfig/wayland-scanner.pc
|
||||
endef
|
||||
WAYLAND_POST_INSTALL_STAGING_HOOKS += WAYLAND_SCANNER_PC
|
||||
|
||||
# Remove the DTD from the target, it's not needed at runtime
|
||||
define WAYLAND_TARGET_CLEANUP
|
||||
rm -rf $(TARGET_DIR)/usr/share/wayland
|
||||
endef
|
||||
WAYLAND_POST_INSTALL_TARGET_HOOKS += WAYLAND_TARGET_CLEANUP
|
||||
|
||||
$(eval $(autotools-package))
|
||||
$(eval $(host-autotools-package))
|
||||
Reference in New Issue
Block a user