kumquat-buildroot/package/vte/vte.mk
Fabrice Fontaine 53c0c7dd01 package/vte: bump to version 0.66.2
- 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>
2022-01-09 23:45:11 +01:00

51 lines
1.2 KiB
Makefile

################################################################################
#
# vte
#
################################################################################
VTE_VERSION_MAJOR = 0.66
VTE_VERSION = $(VTE_VERSION_MAJOR).2
VTE_SOURCE = vte-$(VTE_VERSION).tar.xz
VTE_SITE = http://ftp.gnome.org/pub/gnome/sources/vte/$(VTE_VERSION_MAJOR)
VTE_DEPENDENCIES = host-pkgconf libgtk3 pcre2 $(TARGET_NLS_DEPENDENCIES)
VTE_LICENSE = LGPL-3.0+
VTE_LICENSE_FILES = COPYING.LGPL3
ifeq ($(BR2_PACKAGE_ICU),y)
VTE_CONF_OPTS += -Dicu=true
VTE_DEPENDENCIES += icu
else
VTE_CONF_OPTS += -Dicu=false
endif
ifeq ($(BR2_PACKAGE_GOBJECT_INTROSPECTION),y)
VTE_CONF_OPTS += -Dgir=true -Dvapi=true
VTE_DEPENDENCIES += host-vala gobject-introspection
else
VTE_CONF_OPTS += -Dgir=false -Dvapi=false
endif
ifeq ($(BR2_PACKAGE_GNUTLS),y)
VTE_CONF_OPTS += -Dgnutls=true
VTE_DEPENDENCIES += gnutls
else
VTE_CONF_OPTS += -Dgnutls=false
endif
ifeq ($(BR2_PACKAGE_LIBFRIBIDI),y)
VTE_CONF_OPTS += -Dfribidi=true
VTE_DEPENDENCIES += libfribidi
else
VTE_CONF_OPTS += -Dfribidi=false
endif
ifeq ($(BR2_PACKAGE_SYSTEMD),y)
VTE_CONF_OPTS += -D_systemd=true
VTE_DEPENDENCIES += systemd
else
VTE_CONF_OPTS += -D_systemd=false
endif
$(eval $(meson-package))