diff options
author | Michael Sterrett <mr_bones_@gentoo.org> | 2006-04-25 17:12:33 +0000 |
---|---|---|
committer | Michael Sterrett <mr_bones_@gentoo.org> | 2006-04-25 17:12:33 +0000 |
commit | 0731c67aa9fe6d07c0654c5d147c0c94874ff4f8 (patch) | |
tree | 0408ff7211f8cd00f6c17516f7f1c9626a795c2a /games-arcade | |
parent | Update to Linux 2.6.16.11. Fix boot when CONFIG_TIPAR=y (#128852). Add IPW220... (diff) | |
download | gentoo-2-0731c67aa9fe6d07c0654c5d147c0c94874ff4f8.tar.gz gentoo-2-0731c67aa9fe6d07c0654c5d147c0c94874ff4f8.tar.bz2 gentoo-2-0731c67aa9fe6d07c0654c5d147c0c94874ff4f8.zip |
touchups
(Portage version: 2.1_pre9-r3)
Diffstat (limited to 'games-arcade')
-rw-r--r-- | games-arcade/funnyboat/funnyboat-1.1.ebuild | 17 |
1 files changed, 3 insertions, 14 deletions
diff --git a/games-arcade/funnyboat/funnyboat-1.1.ebuild b/games-arcade/funnyboat/funnyboat-1.1.ebuild index ca13839950bf..97530815ebe6 100644 --- a/games-arcade/funnyboat/funnyboat-1.1.ebuild +++ b/games-arcade/funnyboat/funnyboat-1.1.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2006 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/games-arcade/funnyboat/funnyboat-1.1.ebuild,v 1.1 2006/04/24 22:44:55 mr_bones_ Exp $ +# $Header: /var/cvsroot/gentoo-x86/games-arcade/funnyboat/funnyboat-1.1.ebuild,v 1.2 2006/04/25 17:12:33 mr_bones_ Exp $ inherit eutils games @@ -13,27 +13,16 @@ SLOT="0" KEYWORDS="x86" IUSE="" -RDEPEND="dev-python/pygame - dev-python/numeric" +RDEPEND="dev-python/pygame" S=${WORKDIR}/${PN} -src_unpack() { - unpack ${A} - cd "${S}" - cat > ${PN} <<-EOF - #!/bin/bash - cd "${GAMES_DATADIR}"/${PN} - exec python main.py - EOF -} - src_install() { - dogamesbin "${PN}" || die "dogamesbin failed" insinto "${GAMES_DATADIR}/${PN}" doins -r data *.py || die "doins failed" dodoc README newicon data/merkkari.png "${PN}.png" + games_make_wrapper ${PN} "python main.py" "${GAMES_DATADIR}"/${PN} make_desktop_entry "${PN}" "Trip on the Funny Boat" prepgamesdirs } |