initial buildroot for linux 5.15

This commit is contained in:
Huan.Feng
2021-12-06 14:12:13 +08:00
parent d7767d594e
commit 7b6fc358fa
12736 changed files with 508822 additions and 0 deletions
+10
View File
@@ -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://cms.ferzkopp.net/index.php/software/13-sdl-gfx
+6
View File
@@ -0,0 +1,6 @@
# From http://sourceforge.net/projects/sdlgfx/files/
md5 fcc3c4f2d1b4943409bf7e67dd65d03a SDL_gfx-2.0.23.tar.gz
sha1 aae60e7fed539f3f8a0a0bd6da3bbcf625642596 SDL_gfx-2.0.23.tar.gz
# Locally computed
sha256 4f5df842266c59b2d7e6ef35b53d7f37b13795d93baf3ed211f502c216f7bc89 COPYING
sha256 5f3bc98e0bd2de83279bd62868d4bc0c2b4f811ab828b036d36a4a6d1cd5672d LICENSE
+28
View File
@@ -0,0 +1,28 @@
################################################################################
#
# sdl_gfx
#
################################################################################
SDL_GFX_VERSION_MAJOR = 2.0
SDL_GFX_VERSION = $(SDL_GFX_VERSION_MAJOR).23
SDL_GFX_SOURCE = SDL_gfx-$(SDL_GFX_VERSION).tar.gz
SDL_GFX_SITE = http://www.ferzkopp.net/Software/SDL_gfx-$(SDL_GFX_VERSION_MAJOR)
SDL_GFX_LICENSE = Zlib
SDL_GFX_LICENSE_FILES = COPYING LICENSE
SDL_GFX_INSTALL_STAGING = YES
SDL_GFX_DEPENDENCIES = sdl
SDL_GFX_CONF_OPTS = \
--with-sdl-prefix=$(STAGING_DIR)/usr \
--disable-sdltest \
--enable-static
# Even though x86_64 processors support MMX, the MMX-specific assembly
# code in sdl_gfx is IA32 specific, and does not build for x86_64.
ifeq ($(BR2_i386)$(BR2_X86_CPU_HAS_MMX),yy)
SDL_GFX_CONF_OPTS += --enable-mmx
else
SDL_GFX_CONF_OPTS += --disable-mmx
endif
$(eval $(autotools-package))