diff options
Diffstat (limited to 'package/sdl_gfx')
-rw-r--r-- | package/sdl_gfx/Config.in | 10 | ||||
-rw-r--r-- | package/sdl_gfx/sdl_gfx.mk | 26 |
2 files changed, 36 insertions, 0 deletions
diff --git a/package/sdl_gfx/Config.in b/package/sdl_gfx/Config.in new file mode 100644 index 000000000..4910b2d64 --- /dev/null +++ b/package/sdl_gfx/Config.in @@ -0,0 +1,10 @@ +config BR2_PACKAGE_SDL_GFX + bool "SDL_gfx" + depends on BR2_PACKAGE_SDL + help + The SDL_gfx library is an extension to the SDL library which + provides basic antialiased drawing routines such as lines, + circles or polygons, an interpolating rotozoomer for SDL + surfaces, framerate control and MMX image filters. + + http://www.ferzkopp.net/joomla/content/view/19/14/ diff --git a/package/sdl_gfx/sdl_gfx.mk b/package/sdl_gfx/sdl_gfx.mk new file mode 100644 index 000000000..bd4e3f154 --- /dev/null +++ b/package/sdl_gfx/sdl_gfx.mk @@ -0,0 +1,26 @@ +############################################################# +# +# SDL_gfx addon for SDL +# +############################################################# +SDL_GFX_VERSION:=2.0.19 +SDL_GFX_SOURCE:=SDL_gfx-$(SDL_GFX_VERSION).tar.gz +SDL_GFX_SITE:=http://www.ferzkopp.net/Software/SDL_gfx-2.0/ +SDL_GFX_LIBTOOL_PATCH:=NO +SDL_GFX_INSTALL_STAGING:=YES +SDL_GFX_INSTALL_TARGET:=YES + +SDL_GFX_DEPENDENCIES:=sdl + +SDL_GFX_CONF_OPT:=--with-sdl-prefix=$(STAGING_DIR)/usr \ + --disable-sdltest \ + --enable-static + +# enable mmx for newer x86's +ifeq ($(BR2_i386)$(BR2_x86_i386)$(BR2_x86_i486)$(BR2_x86_i586)$(BR2_x86_pentiumpro)$(BR2_x86_geode),y) +SDL_GFX_CONF_OPT += --enable-mmx +else +SDL_GFX_CONF_OPT += --disable-mmx +endif + +$(eval $(call AUTOTARGETS,package,sdl_gfx)) |