diff options
author | Jens Pranaitis <jens@chaox.net> | 2010-07-13 20:11:01 +0200 |
---|---|---|
committer | Jens Pranaitis <jens@chaox.net> | 2010-07-13 20:11:01 +0200 |
commit | 6131b2baccedc8fb86fea3ee8ac439d5babb9eca (patch) | |
tree | 72348a1edfcb5c73892643720ee9ee2eb64d7782 | |
parent | added 0ad, ebuild by Philip Taylor (diff) | |
download | jensp-6131b2baccedc8fb86fea3ee8ac439d5babb9eca.tar.gz jensp-6131b2baccedc8fb86fea3ee8ac439d5babb9eca.tar.bz2 jensp-6131b2baccedc8fb86fea3ee8ac439d5babb9eca.zip |
added frogatto (proto ebuild, wip)
-rw-r--r-- | games-arcade/frogatto/Manifest | 2 | ||||
-rw-r--r-- | games-arcade/frogatto/frogatto-1.0.ebuild | 35 |
2 files changed, 37 insertions, 0 deletions
diff --git a/games-arcade/frogatto/Manifest b/games-arcade/frogatto/Manifest new file mode 100644 index 0000000..0575e14 --- /dev/null +++ b/games-arcade/frogatto/Manifest @@ -0,0 +1,2 @@ +DIST frogatto-1.0.tar.bz2 136213969 RMD160 7e4443d99f7fa8f5328ef07b01c4167874189dd7 SHA1 e277bf4ffb49dce7c9c25a242f0b9c5073f5fa3b SHA256 7a3dab049df8d4cd38a4fa0ab98ea001d5bae1d373d134fbd4e773132fb68c59 +EBUILD frogatto-1.0.ebuild 724 RMD160 f32fa87a5a329ded455fc064d064150b83d423fd SHA1 16be15944684cf99e6fb47c8d04d5565070ec58e SHA256 bcac5bd6039c5df4db63a9347dc7e3e0e2095f4f8c7dc1fb1726c68b11f23b84 diff --git a/games-arcade/frogatto/frogatto-1.0.ebuild b/games-arcade/frogatto/frogatto-1.0.ebuild new file mode 100644 index 0000000..2b91833 --- /dev/null +++ b/games-arcade/frogatto/frogatto-1.0.ebuild @@ -0,0 +1,35 @@ +# Copyright 1999-2010 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: $ + +EAPI=3 + +inherit games + +DESCRIPTION="a opensource cross platform jump and run game" +HOMEPAGE="http://www.frogatto.com" +SRC_URI="http://www.frogatto.com/files/${P}.tar.bz2" + +LICENSE="GPL-3 free-noncomm" +SLOT="0" +KEYWORDS="~amd64" +IUSE="" + +DEPEND="" +RDEPEND="${DEPEND}" + +src_compile() { + emake game server || die +} + +src_install() { + exeinto ${GAMES_PREFIX_OPT}/${PN}/ + doexe game || die + doexe server || die + games_make_wrapper ${PN} ./game ${GAMES_PREFIX_OPT}/${PN}/ || die + insinto ${GAMES_PREFIX_OPT}/${PN}/ + doins -r data || die + doins -r images || die + doins -r music || die + doins -r sounds || die +} |