53c0c7dd01
- Switch to meson-package and so replace host-intltool dependency by TARGET_NLS_DEPENDENCIES: https://gitlab.gnome.org/GNOME/vte/-/issues/87 - Retrieve upstream hash - Switch license file to LGPL-3.0+:5e14529d42
- Drop libxml2 dependency (not needed with meson) - Add uclibc or glibc dependency, upstream doesn't want to support musl: https://gitlab.gnome.org/GNOME/vte/-/issues/72 https://gitlab.gnome.org/GNOME/vte/-/issues/247 - Add optional icu dependency:9e4fbae2ca
- Add optional libfribidi dependency:7d3704f1c5
- Add optional systemd dependency:81bd158c24
- Update indentation in hash file (two spaces) Signed-off-by: Fabrice Fontaine <fontaine.fabrice@gmail.com> Signed-off-by: Arnout Vandecappelle (Essensium/Mind) <arnout@mind.be>
40 lines
1.4 KiB
Plaintext
40 lines
1.4 KiB
Plaintext
config BR2_PACKAGE_VTE
|
|
bool "vte"
|
|
depends on BR2_PACKAGE_HOST_RUSTC_ARCH_SUPPORTS # libgtk3 -> host-libgtk3 -> host-librsvg
|
|
depends on BR2_USE_WCHAR
|
|
depends on BR2_TOOLCHAIN_HAS_THREADS
|
|
depends on BR2_USE_MMU
|
|
depends on BR2_INSTALL_LIBSTDCPP
|
|
depends on BR2_TOOLCHAIN_GCC_AT_LEAST_4_8 # C++11
|
|
depends on BR2_TOOLCHAIN_HAS_SYNC_4
|
|
depends on !BR2_TOOLCHAIN_USES_MUSL
|
|
depends on BR2_PACKAGE_HAS_LIBEGL_WAYLAND || \
|
|
BR2_PACKAGE_HAS_LIBGL
|
|
depends on BR2_PACKAGE_XORG7
|
|
select BR2_PACKAGE_LIBGTK3
|
|
select BR2_PACKAGE_PCRE2
|
|
help
|
|
VTE is a library (libvte) implementing a terminal emulator
|
|
widget for GTK+, and a minimal sample application (vte)
|
|
using that. Vte is mainly used in gnome-terminal, but
|
|
can also be used to embed a console/terminal in games,
|
|
editors, IDEs, etc.
|
|
|
|
http://github.com/GNOME/vte
|
|
|
|
comment "vte needs a uClibc or glibc toolchain w/ wchar, threads, C++, gcc >= 4.8"
|
|
depends on BR2_PACKAGE_HOST_RUSTC_ARCH_SUPPORTS
|
|
depends on BR2_USE_MMU
|
|
depends on BR2_TOOLCHAIN_HAS_SYNC_4
|
|
depends on !BR2_USE_WCHAR || !BR2_INSTALL_LIBSTDCPP || \
|
|
!BR2_TOOLCHAIN_HAS_THREADS || \
|
|
!BR2_TOOLCHAIN_GCC_AT_LEAST_4_8 || \
|
|
BR2_TOOLCHAIN_USES_MUSL
|
|
|
|
comment "vte needs an OpenGL or an OpenGL-EGL/wayland backend"
|
|
depends on BR2_PACKAGE_HOST_RUSTC_ARCH_SUPPORTS
|
|
depends on BR2_USE_MMU
|
|
depends on BR2_TOOLCHAIN_HAS_SYNC_4
|
|
depends on !BR2_PACKAGE_HAS_LIBEGL_WAYLAND && \
|
|
!BR2_PACKAGE_HAS_LIBGL
|