Commit 8238e419 authored by Julien Boibessot's avatar Julien Boibessot Committed by Peter Korsgaard
Browse files

Add LBreakout2 package (SDL game)



[Peter: needs gettext with uClibc+locale]
Signed-off-by: default avatarJulien Boibessot <julien.boibessot@armadeus.com>
Signed-off-by: default avatarPeter Korsgaard <peter@korsgaard.com>
parent c991fabf
Loading
Loading
Loading
Loading
+1 −0
Original line number Diff line number Diff line
@@ -157,6 +157,7 @@ endmenu
menu "Games"
source "package/doom-wad/Config.in"
source "package/gnuchess/Config.in"
source "package/lbreakout2/Config.in"
source "package/prboom/Config.in"
source "package/rubix/Config.in"
endmenu
+31 −0
Original line number Diff line number Diff line
config BR2_PACKAGE_LBREAKOUT2
	bool "LBreakout2"
	select BR2_PACKAGE_SDL
	select BR2_PACKAGE_LIBPNG
	select BR2_PACKAGE_GETTEXT if BR2_NEEDS_GETTEXT_IF_LOCALE
	help
	  LBreakout2 is the successor to LBreakout, a breakout-style arcade
	  game in the manner of Arkanoid. Requires SDL, libpng, and
	  optionnally SDL_mixer/SDL_net.
	  A display with minimum 640x480 resolution, a keyboard and a mouse
	  are recommanded.

	  http://lgames.sourceforge.net/index.php?project=LBreakout2

if BR2_PACKAGE_LBREAKOUT2

config BR2_PACKAGE_LBREAKOUT2_AUDIO
	bool "audio support"
	default y
	select BR2_PACKAGE_SDL_MIXER
	help
	  Activates audio support in LBreakout2. Will add SDL_mixer.

config BR2_PACKAGE_LBREAKOUT2_NET
	bool "network support"
	default y
	select BR2_PACKAGE_SDL_NET
	help
	  Activates network support LBreakout2. Will add SDL_net.

endif
+36 −0
Original line number Diff line number Diff line
#############################################################
#
# lbreakout2
#
#############################################################

LBREAKOUT2_SITE = http://downloads.sourceforge.net/lgames/lbreakout2/2.6/
LBREAKOUT2_VERSION = 2.6.4
LBREAKOUT2_LICENSE = GPLv2+
LBREAKOUT2_LICENSE_FILES = COPYING

LBREAKOUT2_DEPENDENCIES = sdl libpng

LBREAKOUT2_CONF_ENV = \
	SDL_CONFIG="$(STAGING_DIR)/usr/bin/sdl-config"

ifeq ($(BR2_PACKAGE_GETTEXT),y)
LBREAKOUT2_DEPENDENCIES += gettext
LBREAKOUT2_CONF_ENV += LIBS=-lintl
endif

ifeq ($(BR2_PACKAGE_LBREAKOUT2_AUDIO),y)
LBREAKOUT2_DEPENDENCIES += sdl_mixer
LBREAKOUT2_CONF_OPT += --enable-audio=yes
else
LBREAKOUT2_CONF_OPT += --disable-audio
endif

ifeq ($(BR2_PACKAGE_LBREAKOUT2_NET),y)
LBREAKOUT2_DEPENDENCIES += sdl_net
LBREAKOUT2_CONF_OPT += --enable-network=yes
else
LBREAKOUT2_CONF_OPT += --disable-network
endif

$(eval $(autotools-package))