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