blob: 47869893826ebfff6242428d1edae7ad484a6640 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
|
# Copyright 1999-2008 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/games-arcade/funnyboat/funnyboat-1.5.ebuild,v 1.5 2008/03/29 21:37:05 coldwind Exp $
inherit eutils games
DESCRIPTION="A side scrolling shooter game starring a steamboat on the sea"
HOMEPAGE="http://funnyboat.sourceforge.net/"
SRC_URI="mirror://sourceforge/${PN}/${P}-src.zip"
LICENSE="GPL-2 MIT"
SLOT="0"
KEYWORDS="amd64 ~ppc x86 ~x86-fbsd"
IUSE=""
RDEPEND=">=dev-python/pygame-1.6.2"
DEPEND="app-arch/unzip"
S=${WORKDIR}/${PN}
src_install() {
insinto "${GAMES_DATADIR}"/${PN}
doins -r data *.py || die "doins failed"
dodoc *.txt
games_make_wrapper ${PN} "python main.py" "${GAMES_DATADIR}"/${PN}
newicon data/kuvake.png ${PN}.png
make_desktop_entry ${PN} "Trip on the Funny Boat"
prepgamesdirs
}
|