[Thomas: - add license information, even if there's unfortunately no license file - rename patches to use the correct convention.] Signed-off-by: Spenser Gilliland <spenser@gillilanding.com> Signed-off-by: Bernd Kuhls <bernd.kuhls@t-online.de> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
64 lines
1.7 KiB
Makefile
64 lines
1.7 KiB
Makefile
################################################################################
|
|
#
|
|
# mesa3d-demos
|
|
#
|
|
################################################################################
|
|
|
|
MESA3D_DEMOS_VERSION = 8.2.0
|
|
MESA3D_DEMOS_SOURCE = mesa-demos-$(MESA3D_DEMOS_VERSION).tar.bz2
|
|
MESA3D_DEMOS_SITE = ftp://ftp.freedesktop.org/pub/mesa/demos/$(MESA3D_DEMOS_VERSION)
|
|
MESA3D_DEMOS_AUTORECONF = YES
|
|
MESA3D_DEMOS_DEPENDENCIES = host-pkgconf
|
|
MESA3D_DEMOS_LICENSE = MIT
|
|
|
|
ifeq ($(BR2_PACKAGE_HAS_LIBGL),y)
|
|
MESA3D_DEMOS_DEPENDENCIES += libgl libglew libglu
|
|
MESA3D_DEMOS_CONF_OPTS += --enable-gl
|
|
else
|
|
MESA3D_DEMOS_CONF_OPTS += --disable-gl
|
|
endif
|
|
|
|
ifeq ($(BR2_PACKAGE_HAS_LIBEGL),y)
|
|
MESA3D_DEMOS_DEPENDENCIES += libegl
|
|
MESA3D_DEMOS_CONF_OPTS += --enable-egl
|
|
else
|
|
MESA3D_DEMOS_CONF_OPTS += --disable-egl
|
|
endif
|
|
|
|
ifeq ($(BR2_PACKAGE_HAS_LIBGLES),y)
|
|
MESA3D_DEMOS_DEPENDENCIES += libgles
|
|
MESA3D_DEMOS_CONF_OPTS += --enable-gles1 --enable-gles2
|
|
else
|
|
MESA3D_DEMOS_CONF_OPTS += --disable-gles1 --disable-gles2
|
|
endif
|
|
|
|
ifeq ($(BR2_PACKAGE_HAS_LIBOPENVG),y)
|
|
MESA3D_DEMOS_DEPENDENCIES += libopenvg
|
|
MESA3D_DEMOS_CONF_OPTS += --enable-vg
|
|
else
|
|
MESA3D_DEMOS_CONF_OPTS += --disable-vg
|
|
endif
|
|
|
|
ifeq ($(BR2_PACKAGE_MESA3D_OPENGL_EGL),y)
|
|
MESA3D_DEMOS_DEPENDENCIES += mesa3d
|
|
MESA3D_DEMOS_CONF_OPTS += --enable-gbm
|
|
else
|
|
MESA3D_DEMOS_CONF_OPTS += --disable-gbm
|
|
endif
|
|
|
|
ifeq ($(BR2_PACKAGE_FREETYPE),y)
|
|
MESA3D_DEMOS_DEPENDENCIES += freetype
|
|
MESA3D_DEMOS_CONF_OPTS += --enable-freetype2
|
|
else
|
|
MESA3D_DEMOS_CONF_OPTS += --disable-freetype2
|
|
endif
|
|
|
|
ifeq ($(BR2_PACKAGE_WAYLAND),y)
|
|
MESA3D_DEMOS_DEPENDENCIES += wayland
|
|
MESA3D_DEMOS_CONF_OPTS += --enable-wayland
|
|
else
|
|
MESA3D_DEMOS_CONF_OPTS += --disable-wayland
|
|
endif
|
|
|
|
$(eval $(autotools-package))
|