Commit 9b8ffcd8 authored by Julien Boibessot's avatar Julien Boibessot Committed by Peter Korsgaard
Browse files

Add OpenTyrian package (SDL game)



[Peter: hide -data package if opentyrian isn't enabled]
Signed-off-by: default avatarJulien Boibessot <julien.boibessot@armadeus.com>
Acked-by: default avatarArnout Vandecappelle (Essensium/Mind) <arnout@mind.be>
Signed-off-by: default avatarPeter Korsgaard <peter@korsgaard.com>
parent 591b02ca
Loading
Loading
Loading
Loading
+2 −0
Original line number Diff line number Diff line
@@ -156,6 +156,8 @@ source "package/doom-wad/Config.in"
source "package/gnuchess/Config.in"
source "package/lbreakout2/Config.in"
source "package/ltris/Config.in"
source "package/opentyrian/Config.in"
source "package/opentyrian-data/Config.in"
source "package/prboom/Config.in"
source "package/rubix/Config.in"
endmenu
+9 −0
Original line number Diff line number Diff line
config BR2_PACKAGE_OPENTYRIAN_DATA
	bool "OpenTyrian data"
	depends on BR2_PACKAGE_OPENTYRIAN
	help
	  Data files to use with OpenTyrian game. Currently only the original
	  Tyrian 2.1 data files, that have been released as Freeware in 2004,
	  are compatible.

	  http://code.google.com/p/opentyrian/wiki/FAQ
+23 −0
Original line number Diff line number Diff line
###############################################################################
#
# opentyrian-data
#
###############################################################################

OPENTYRIAN_DATA_VERSION = 2.1
OPENTYRIAN_DATA_SITE = http://www.camanis.net/opentyrian/
OPENTYRIAN_DATA_SOURCE = tyrian21.zip
OPENTYRIAN_DATA_LICENSE = Freeware

define OPENTYRIAN_DATA_EXTRACT_CMDS
	unzip -d $(@D) $(DL_DIR)/$(OPENTYRIAN_DATA_SOURCE)
endef

define OPENTYRIAN_DATA_INSTALL_TARGET_CMDS
	mkdir -p $(TARGET_DIR)/usr/share/opentyrian/data/
	cp $(@D)/tyrian21/* $(TARGET_DIR)/usr/share/opentyrian/data/
	rm -f $(TARGET_DIR)/usr/share/opentyrian/data/*.doc
	rm -f $(TARGET_DIR)/usr/share/opentyrian/data/*.exe
endef

$(eval $(generic-package))
+24 −0
Original line number Diff line number Diff line
config BR2_PACKAGE_OPENTYRIAN
	bool "OpenTyrian"
	select BR2_PACKAGE_SDL
	select BR2_PACKAGE_OPENTYRIAN_DATA
	help
	  OpenTyrian is a port of the DOS shoot-em-up Tyrian. It uses SDL,
	  making it easily cross-platform.
	  It requires the original data files to run.
	  A display with minimum 640x480 resolution and a keyboard are needed
	  to play the game.
	  If you want some sound, activate ALSA with OSS emulation.

	  http://code.google.com/p/opentyrian/

if BR2_PACKAGE_OPENTYRIAN

config BR2_PACKAGE_OPENTYRIAN_NET
	bool "network support"
	default y
	select BR2_PACKAGE_SDL_NET
	help
	  Activates network support in OpenTyrian. Will add SDL_net.

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

OPENTYRIAN_VERSION = 2.1.20130907
OPENTYRIAN_SITE = http://www.camanis.net/opentyrian/releases/
OPENTYRIAN_SOURCE = opentyrian-$(OPENTYRIAN_VERSION)-src.tar.gz
OPENTYRIAN_LICENSE = GPLv2+
OPENTYRIAN_LICENSE_FILES = COPYING

OPENTYRIAN_DEPENDENCIES = sdl

ifeq ($(BR2_PACKAGE_OPENTYRIAN_NET),y)
OPENTYRIAN_DEPENDENCIES += sdl_net
OPENTYRIAN_NETWORK = true
else
OPENTYRIAN_NETWORK = false
endif

define OPENTYRIAN_BUILD_CMDS
        $(MAKE) PLATFORM=UNIX \
		CC="$(TARGET_CC)" \
		STRIP="/bin/true" \
		SDL_CONFIG="$(STAGING_DIR)/usr/bin/sdl-config" \
		LDFLAGS="-lm" \
		WITH_NETWORK="$(OPENTYRIAN_NETWORK)" \
		-C $(@D) release
endef

define OPENTYRIAN_INSTALL_TARGET_CMDS
	$(INSTALL) -D -m 0755 $(@D)/opentyrian $(TARGET_DIR)/usr/bin/opentyrian
endef

$(eval $(generic-package))