kumquat-buildroot/package/x11r7/xapp_xeyes/xapp_xeyes.mk
Fabrice Fontaine 2c5e13de7c package/x11r7/xapp_xeyes: add xlib_libXi mandatory dependency
Build fails since commit c47ebe7aeb
because xlib_libXi is a mandatory dependency since version 1.2.0 and
420c2d8517:

configure: error: Package requirements (xi >= 1.7 x11 xt xext xmu xproto >= 7.0.17) were not met:

Package 'xi', required by 'virtual:world', not found

Fixes:
 - http://autobuild.buildroot.org/results/896f45fb9eadcd235aeab096db479ee0aa5d0860

Signed-off-by: Fabrice Fontaine <fontaine.fabrice@gmail.com>
[yann.morin.1998@free.fr: split multi-line dependency]
Signed-off-by: Yann E. MORIN <yann.morin.1998@free.fr>
2021-09-14 21:51:17 +02:00

27 lines
699 B
Makefile

################################################################################
#
# xapp_xeyes
#
################################################################################
XAPP_XEYES_VERSION = 1.2.0
XAPP_XEYES_SOURCE = xeyes-$(XAPP_XEYES_VERSION).tar.bz2
XAPP_XEYES_SITE = https://xorg.freedesktop.org/archive/individual/app
XAPP_XEYES_LICENSE = MIT
XAPP_XEYES_LICENSE_FILES = COPYING
XAPP_XEYES_DEPENDENCIES = \
xlib_libX11 \
xlib_libXext \
xlib_libXi \
xlib_libXmu \
xlib_libXt
ifeq ($(BR2_PACKAGE_XLIB_LIBXRENDER),y)
XAPP_XEYES_DEPENDENCIES += xlib_libXrender
XAPP_XEYES_CONF_OPTS += --with-xrender
else
XAPP_XEYES_CONF_OPTS += --without-xrender
endif
$(eval $(autotools-package))