diff options
author | Michael Sterrett <mr_bones_@gentoo.org> | 2005-11-01 00:06:38 +0000 |
---|---|---|
committer | Michael Sterrett <mr_bones_@gentoo.org> | 2005-11-01 00:06:38 +0000 |
commit | 995b01f4788b6531e6cbf9dc05eb1c7e4d390fa9 (patch) | |
tree | dc6b77433c4822af54bec20d96abd9024b71c6a2 /games-rpg/bass/bass-0-r1.ebuild | |
parent | Fixed dodoc not to install COPYING and INSTALL. (diff) | |
download | gentoo-2-995b01f4788b6531e6cbf9dc05eb1c7e4d390fa9.tar.gz gentoo-2-995b01f4788b6531e6cbf9dc05eb1c7e4d390fa9.tar.bz2 gentoo-2-995b01f4788b6531e6cbf9dc05eb1c7e4d390fa9.zip |
add file needed by new scummvm version (bug #111063)
(Portage version: 2.0.51.22-r3)
Diffstat (limited to 'games-rpg/bass/bass-0-r1.ebuild')
-rw-r--r-- | games-rpg/bass/bass-0-r1.ebuild | 34 |
1 files changed, 34 insertions, 0 deletions
diff --git a/games-rpg/bass/bass-0-r1.ebuild b/games-rpg/bass/bass-0-r1.ebuild new file mode 100644 index 000000000000..99055c96f6cf --- /dev/null +++ b/games-rpg/bass/bass-0-r1.ebuild @@ -0,0 +1,34 @@ +# Copyright 1999-2005 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/games-rpg/bass/bass-0-r1.ebuild,v 1.1 2005/11/01 00:06:38 mr_bones_ Exp $ + +inherit games + +DESCRIPTION="Beneath a Steel Sky: a science fiction thriller set in a bleak vision of the future" +HOMEPAGE="http://www.revgames.com/" +SRC_URI="mirror://sourceforge/scummvm/BASS-CD.zip + http://www.scummvm.org/SKY.CPT" + +LICENSE="bass" +SLOT="0" +KEYWORDS="amd64 ppc ~sparc x86" +IUSE="" + +RDEPEND=">=games-engines/scummvm-0.5.0" +DEPEND="${RDEPEND} + app-arch/unzip" + +S=${WORKDIR}/sky-cd + +src_unpack() { + unpack BASS-CD.zip + cp "${DISTDIR}/SKY.CPT" "${S}/sky.cpt" || die "cp failed" +} + +src_install() { + games_make_wrapper bass "scummvm -f -p \"${GAMES_DATADIR}/${PN}\" sky" . + insinto "${GAMES_DATADIR}"/${PN} + doins sky.* || die "doins failed" + dodoc readme.txt + prepgamesdirs +} |