The cirros image was rebuilt against the 3.13.0-83 kernel, drivers e1000e, igbvf...
[packages/trusty/cirros-testvm.git] / cirros-testvm / src-cirros / buildroot-2015.05 / package / sdl_gfx / sdl_gfx.mk
1 ################################################################################
2 #
3 # sdl_gfx
4 #
5 ################################################################################
6
7 SDL_GFX_VERSION_MAJOR = 2.0
8 SDL_GFX_VERSION = $(SDL_GFX_VERSION_MAJOR).23
9 SDL_GFX_SOURCE = SDL_gfx-$(SDL_GFX_VERSION).tar.gz
10 SDL_GFX_SITE = http://www.ferzkopp.net/Software/SDL_gfx-$(SDL_GFX_VERSION_MAJOR)
11 SDL_GFX_LICENSE = zlib
12 SDL_GFX_LICENSE_FILES = COPYING LICENSE
13 SDL_GFX_INSTALL_STAGING = YES
14 SDL_GFX_DEPENDENCIES = sdl
15 SDL_GFX_CONF_OPTS = \
16         --with-sdl-prefix=$(STAGING_DIR)/usr \
17         --disable-sdltest \
18         --enable-static
19
20 # Even though x86_64 processors support MMX, the MMX-specific assembly
21 # code in sdl_gfx is IA32 specific, and does not build for x86_64.
22 ifeq ($(BR2_i386)$(BR2_X86_CPU_HAS_MMX),yy)
23 SDL_GFX_CONF_OPTS += --enable-mmx
24 else
25 SDL_GFX_CONF_OPTS += --disable-mmx
26 endif
27
28 $(eval $(autotools-package))