SDL_net: add new package SDL_net

This patch adds a new package SDL_net. SDL_net is a small, low-level,
cross-platform network library, that can be used with the Simple DirectMedia
Layer library (SDL).

http://www.libsdl.org/projects/SDL_net/

Signed-off-by: Hans-Christian Egtvedt <hans-christian.egtvedt@atmel.com>
This commit is contained in:
Hans-Christian Egtvedt 2008-09-24 12:06:59 +00:00
parent 1a66c6c547
commit e40448aa34
3 changed files with 29 additions and 0 deletions

View file

@ -320,6 +320,7 @@ source "package/pixman/Config.in"
source "package/sdl/Config.in"
source "package/sdl_image/Config.in"
source "package/sdl_mixer/Config.in"
source "package/sdl_net/Config.in"
source "package/sdl_ttf/Config.in"
source "package/tiff/Config.in"

View file

@ -0,0 +1,8 @@
config BR2_PACKAGE_SDL_NET
bool "SDL_net"
depends on BR2_PACKAGE_SDL
help
SDL_net is a small, low-level, cross-platform network library, that
can be used with the Simple DirectMedia Layer library (SDL).
http://www.libsdl.org/projects/SDL_net/

View file

@ -0,0 +1,20 @@
#############################################################
#
# SDL_net: network addon for SDL
#
#############################################################
SDL_NET_VERSION:=1.2.7
SDL_NET_SITE:=http://www.libsdl.org/projects/SDL_net/release
SDL_NET_CONF_OPT = --localstatedir=/var \
--with-sdl-prefix=$(STAGING_DIR)/usr \
--with-sdl-exec-prefix=$(STAGING_DIR)/usr
SDL_NET_INSTALL_STAGING = YES
SDL_NET_INSTALL_STAGING_OPT = DESTDIR=$(STAGING_DIR) install
SDL_NET_INSTALL_TARGET_OPT = DESTDIR=$(TARGET_DIR) install
SDL_NET_DEPENDENCIES = sdl
$(eval $(call AUTOTARGETS,package,SDL_net))