diff options
author | Elijah El Lazkani <ThyArmageddon+GentooOverlay@Gmail.com> | 2013-07-03 22:50:55 -0400 |
---|---|---|
committer | Elijah El Lazkani <ThyArmageddon+GentooOverlay@Gmail.com> | 2013-07-03 22:50:55 -0400 |
commit | 7b94cc75cad209f9a984e8c22a20533348e9f7da (patch) | |
tree | 0b1471e1cd188ed4f9dbb496868a3b22cc589f2e /games-rpg | |
parent | Add Solarus engine, zsdx and some cleaning. (diff) | |
download | Armageddon-7b94cc75cad209f9a984e8c22a20533348e9f7da.tar.gz Armageddon-7b94cc75cad209f9a984e8c22a20533348e9f7da.tar.bz2 Armageddon-7b94cc75cad209f9a984e8c22a20533348e9f7da.zip |
Add zsxd parody game...
Diffstat (limited to 'games-rpg')
-rw-r--r-- | games-rpg/zsxd/Manifest | 1 | ||||
-rw-r--r-- | games-rpg/zsxd/metadata.xml | 9 | ||||
-rw-r--r-- | games-rpg/zsxd/zsxd-1.6.2.ebuild | 32 |
3 files changed, 42 insertions, 0 deletions
diff --git a/games-rpg/zsxd/Manifest b/games-rpg/zsxd/Manifest new file mode 100644 index 0000000..2f73f4f --- /dev/null +++ b/games-rpg/zsxd/Manifest @@ -0,0 +1 @@ +DIST zsxd-1.6.2.tar.gz 3799532 SHA256 2f47f3256773df62bb54ad01af2e155550771108a2cf55fd9c43fd0735af23e9 SHA512 705188a501339f36b5db8ea89b10f5475cdb6c5b41df2af83fa5d7a2622e28fb30b739755d7937dffbd5122037a5981f4eb9f97bb7ba8540f6ba26218a10ce16 WHIRLPOOL 4098650dde33c1c866b0b937574f2ddf2b177c4e59ac33ac78d60435eb7977841d01e53071a63318264c9f27b633be27b1b2d853f2344c21d5e1ea0d79813767 diff --git a/games-rpg/zsxd/metadata.xml b/games-rpg/zsxd/metadata.xml new file mode 100644 index 0000000..1af6019 --- /dev/null +++ b/games-rpg/zsxd/metadata.xml @@ -0,0 +1,9 @@ +<?xml version="1.0" encoding="UTF-8"?> +<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd"> +<pkgmetadata> + <maintainer> + <email>ThyArmageddon+Gentoo@Gmail.com</email> + <name>Elijah El Lazkani</name> + </maintainer> + <longdescription lang="en">Zelda Mystery of Solarus XD is one of our creations. It’s a game parody that we released on April 1st, 2011. Though it’s a big April 1st joke, it’s a real, full game with two huge dungeons and 5-10 hours of playing.</longdescription> +</pkgmetadata> diff --git a/games-rpg/zsxd/zsxd-1.6.2.ebuild b/games-rpg/zsxd/zsxd-1.6.2.ebuild new file mode 100644 index 0000000..35f0efa --- /dev/null +++ b/games-rpg/zsxd/zsxd-1.6.2.ebuild @@ -0,0 +1,32 @@ +# Copyright 1999-2013 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: $ + +EAPI=5 + +inherit games cmake-utils + +DESCRIPTION="A free 2D Zelda fangame parody" +HOMEPAGE="http://www.solarus-games.org/" +SRC_URI="http://www.zelda-solarus.com/downloads/${PN}/${P}.tar.gz" + +LICENSE="GPL-3" +SLOT="0" +KEYWORDS="~x86 ~amd64" +IUSE="" + +RDEPEND="=games-engines/solarus-1.0.4" +DEPEND="${RDEPEND}" + +src_configure() { + cmake-utils_src_configure +} + +src_compile() { + cmake-utils_src_compile +} + +src_install() { + cmake-utils_src_install + make_desktop_entry ${PN} "Zelda: Mystery of Solarus XD" +} |