Message ID | 1388999577-9681-1-git-send-email-julien.boibessot@free.fr |
---|---|
State | Superseded |
Headers | show |
Julien, Thanks for contributing this patch! On Mon, 6 Jan 2014 10:12:57 +0100, julien.boibessot@free.fr wrote: > --- /dev/null > +++ b/package/lbreakout2/lbreakout2.mk > @@ -0,0 +1,30 @@ > +############################################################# > +# > +# LBreakout2 This should be all lower case. > +# > +############################################################# > + > +LBREAKOUT2_SITE = http://sourceforge.net/projects/lgames/files/lbreakout2/2.6/ This should use a downloads.sourceforge.net URL, like all other sourceforge packages in BR. > +LBREAKOUT2_VERSION = 2.6.3 There is a newer 2.6.4 version. > +LBREAKOUT2_LICENSE = GPLv2 License is GPLv2+ > +LBREAKOUT2_LICENSE_FILES = COPYING > + > +LBREAKOUT2_DEPENDENCIES = sdl libpng > +LBREAKOUT2_CONF_OPT = --disable-nls Passing this option is not needed. It is automatically passed by the autotools infrastructure we needed. > + > +ifeq ($(BR2_PACKAGE_LBREAKOUT2_AUDIO),y) > +LBREAKOUT2_DEPENDENCIES += sdl_mixer Maybe pass --enable-audio here. > +else > +LBREAKOUT2_CONF_OPT += --disable-audio > +endif > + > +ifeq ($(BR2_PACKAGE_LBREAKOUT2_NET),y) > +LBREAKOUT2_DEPENDENCIES += sdl_net And --enable-network here. > +else > +LBREAKOUT2_CONF_OPT += --disable-network > +endif > + > +LBREAKOUT2_CONF_ENV = \ > + SDL_CONFIG="$(STAGING_DIR)/usr/bin/sdl-config" > + > +$(eval $(autotools-package)) Thomas
diff --git a/package/Config.in b/package/Config.in index c4b6ec1..00ead97 100644 --- a/package/Config.in +++ b/package/Config.in @@ -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 diff --git a/package/lbreakout2/Config.in b/package/lbreakout2/Config.in new file mode 100644 index 0000000..6788aca --- /dev/null +++ b/package/lbreakout2/Config.in @@ -0,0 +1,30 @@ +config BR2_PACKAGE_LBREAKOUT2 + bool "LBreakout2" + select BR2_PACKAGE_SDL + select BR2_PACKAGE_LIBPNG + 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 diff --git a/package/lbreakout2/lbreakout2.mk b/package/lbreakout2/lbreakout2.mk new file mode 100644 index 0000000..66ef013 --- /dev/null +++ b/package/lbreakout2/lbreakout2.mk @@ -0,0 +1,30 @@ +############################################################# +# +# LBreakout2 +# +############################################################# + +LBREAKOUT2_SITE = http://sourceforge.net/projects/lgames/files/lbreakout2/2.6/ +LBREAKOUT2_VERSION = 2.6.3 +LBREAKOUT2_LICENSE = GPLv2 +LBREAKOUT2_LICENSE_FILES = COPYING + +LBREAKOUT2_DEPENDENCIES = sdl libpng +LBREAKOUT2_CONF_OPT = --disable-nls + +ifeq ($(BR2_PACKAGE_LBREAKOUT2_AUDIO),y) +LBREAKOUT2_DEPENDENCIES += sdl_mixer +else +LBREAKOUT2_CONF_OPT += --disable-audio +endif + +ifeq ($(BR2_PACKAGE_LBREAKOUT2_NET),y) +LBREAKOUT2_DEPENDENCIES += sdl_net +else +LBREAKOUT2_CONF_OPT += --disable-network +endif + +LBREAKOUT2_CONF_ENV = \ + SDL_CONFIG="$(STAGING_DIR)/usr/bin/sdl-config" + +$(eval $(autotools-package))