Move all to deprecated folder.
This commit is contained in:
61
deprecated/firmware/buildroot/package/sdl_image/Config.in
Normal file
61
deprecated/firmware/buildroot/package/sdl_image/Config.in
Normal file
@@ -0,0 +1,61 @@
|
||||
config BR2_PACKAGE_SDL_IMAGE
|
||||
bool "SDL_image"
|
||||
depends on BR2_PACKAGE_SDL
|
||||
help
|
||||
SDL_image is an image file loading library. It loads images
|
||||
as SDL surfaces, and supports the following formats:
|
||||
BMP, GIF, JPEG, LBM, PCX, PNG, PNM, TGA, TIFF, XCF, XPM, XV.
|
||||
|
||||
http://www.libsdl.org/projects/SDL_image/
|
||||
|
||||
if BR2_PACKAGE_SDL_IMAGE
|
||||
|
||||
menu "SDL_image file format support"
|
||||
|
||||
config BR2_PACKAGE_SDL_IMAGE_BMP
|
||||
bool "enable BMP file format support"
|
||||
default y
|
||||
|
||||
config BR2_PACKAGE_SDL_IMAGE_GIF
|
||||
bool "enable GIF file format support"
|
||||
|
||||
config BR2_PACKAGE_SDL_IMAGE_JPEG
|
||||
bool "enable JPEG file format support"
|
||||
select BR2_PACKAGE_JPEG
|
||||
|
||||
config BR2_PACKAGE_SDL_IMAGE_LBM
|
||||
bool "enable LBM file format support"
|
||||
|
||||
config BR2_PACKAGE_SDL_IMAGE_PCX
|
||||
bool "enable PCX file format support"
|
||||
|
||||
config BR2_PACKAGE_SDL_IMAGE_PNG
|
||||
bool "enable PNG file format support"
|
||||
select BR2_PACKAGE_LIBPNG
|
||||
|
||||
config BR2_PACKAGE_SDL_IMAGE_PNM
|
||||
bool "enable PNM file format support"
|
||||
|
||||
config BR2_PACKAGE_SDL_IMAGE_TARGA
|
||||
bool "enable TARGA format support"
|
||||
|
||||
config BR2_PACKAGE_SDL_IMAGE_TIFF
|
||||
bool "enable TIFF file format support"
|
||||
select BR2_PACKAGE_TIFF
|
||||
|
||||
config BR2_PACKAGE_SDL_IMAGE_WEBP
|
||||
bool "enable WEBP file format support"
|
||||
select BR2_PACKAGE_WEBP
|
||||
|
||||
config BR2_PACKAGE_SDL_IMAGE_XCF
|
||||
bool "enable XCF file format support"
|
||||
|
||||
config BR2_PACKAGE_SDL_IMAGE_XPM
|
||||
bool "enable XPM format support"
|
||||
|
||||
config BR2_PACKAGE_SDL_IMAGE_XV
|
||||
bool "enable XV file format support"
|
||||
|
||||
endmenu
|
||||
|
||||
endif
|
||||
@@ -0,0 +1,2 @@
|
||||
# Locally calculated
|
||||
sha256 0b90722984561004de84847744d566809dbb9daf732a9e503b91a1b5a84e5699 SDL_image-1.2.12.tar.gz
|
||||
51
deprecated/firmware/buildroot/package/sdl_image/sdl_image.mk
Normal file
51
deprecated/firmware/buildroot/package/sdl_image/sdl_image.mk
Normal file
@@ -0,0 +1,51 @@
|
||||
################################################################################
|
||||
#
|
||||
# sdl_image
|
||||
#
|
||||
################################################################################
|
||||
|
||||
SDL_IMAGE_VERSION = 1.2.12
|
||||
SDL_IMAGE_SOURCE = SDL_image-$(SDL_IMAGE_VERSION).tar.gz
|
||||
SDL_IMAGE_SITE = http://www.libsdl.org/projects/SDL_image/release
|
||||
SDL_IMAGE_INSTALL_STAGING = YES
|
||||
SDL_IMAGE_LICENSE = zlib
|
||||
SDL_IMAGE_LICENSE_FILES = COPYING
|
||||
|
||||
SDL_IMAGE_CONF_OPTS = \
|
||||
--with-sdl-prefix=$(STAGING_DIR)/usr \
|
||||
--with-sdl-exec-prefix=$(STAGING_DIR)/usr \
|
||||
--disable-sdltest \
|
||||
--disable-static \
|
||||
--enable-bmp=$(if $(BR2_PACKAGE_SDL_IMAGE_BMP),yes,no) \
|
||||
--enable-gif=$(if $(BR2_PACKAGE_SDL_IMAGE_GIF),yes,no) \
|
||||
--enable-jpg=$(if $(BR2_PACKAGE_SDL_IMAGE_JPEG),yes,no) \
|
||||
--enable-lbm=$(if $(BR2_PACKAGE_SDL_IMAGE_LBM),yes,no) \
|
||||
--enable-pcx=$(if $(BR2_PACKAGE_SDL_IMAGE_PCX),yes,no) \
|
||||
--enable-png=$(if $(BR2_PACKAGE_SDL_IMAGE_PNG),yes,no) \
|
||||
--enable-pnm=$(if $(BR2_PACKAGE_SDL_IMAGE_PNM),yes,no) \
|
||||
--enable-tga=$(if $(BR2_PACKAGE_SDL_IMAGE_TARGA),yes,no) \
|
||||
--enable-tif=$(if $(BR2_PACKAGE_SDL_IMAGE_TIFF),yes,no) \
|
||||
--enable-webp=$(if $(BR2_PACKAGE_SDL_IMAGE_WEBP),yes,no) \
|
||||
--enable-xcf=$(if $(BR2_PACKAGE_SDL_IMAGE_XCF),yes,no) \
|
||||
--enable-xpm=$(if $(BR2_PACKAGE_SDL_IMAGE_XPM),yes,no) \
|
||||
--enable-xv=$(if $(BR2_PACKAGE_SDL_IMAGE_XV),yes,no) \
|
||||
|
||||
SDL_IMAGE_DEPENDENCIES = sdl \
|
||||
$(if $(BR2_PACKAGE_SDL_IMAGE_JPEG),jpeg) \
|
||||
$(if $(BR2_PACKAGE_SDL_IMAGE_PNG),libpng) \
|
||||
$(if $(BR2_PACKAGE_SDL_IMAGE_TIFF),tiff) \
|
||||
$(if $(BR2_PACKAGE_SDL_IMAGE_WEBP),webp)
|
||||
|
||||
HOST_SDL_IMAGE_CONF_OPTS = \
|
||||
--with-sdl-prefix=$(HOST_DIR)/usr \
|
||||
--with-sdl-exec-prefix=$(HOST_DIR)/usr \
|
||||
--disable-sdltest \
|
||||
--disable-static \
|
||||
--disable-jpg-shared \
|
||||
--disable-png-shared \
|
||||
--disable-tif-shared \
|
||||
|
||||
HOST_SDL_IMAGE_DEPENDENCIES = host-libjpeg host-libpng host-sdl
|
||||
|
||||
$(eval $(autotools-package))
|
||||
$(eval $(host-autotools-package))
|
||||
Reference in New Issue
Block a user