diff options
author | Michael Sterrett <mr_bones_@gentoo.org> | 2010-08-01 15:46:35 +0000 |
---|---|---|
committer | Michael Sterrett <mr_bones_@gentoo.org> | 2010-08-01 15:46:35 +0000 |
commit | 9cf328b3178dac855e9ec5d3f28915daceea6e46 (patch) | |
tree | ab9b5ee4688652f42aacd32154a7eca86bd2b335 /games-misc | |
parent | Add missing dependency over activerecord for testing purposes. (diff) | |
download | gentoo-2-9cf328b3178dac855e9ec5d3f28915daceea6e46.tar.gz gentoo-2-9cf328b3178dac855e9ec5d3f28915daceea6e46.tar.bz2 gentoo-2-9cf328b3178dac855e9ec5d3f28915daceea6e46.zip |
version bump
(Portage version: 2.1.8.3/cvs/Linux i686)
Diffstat (limited to 'games-misc')
-rw-r--r-- | games-misc/openmsx/ChangeLog | 8 | ||||
-rw-r--r-- | games-misc/openmsx/openmsx-0.3.0.ebuild | 34 |
2 files changed, 41 insertions, 1 deletions
diff --git a/games-misc/openmsx/ChangeLog b/games-misc/openmsx/ChangeLog index d0e940243bab..f29acf45aa91 100644 --- a/games-misc/openmsx/ChangeLog +++ b/games-misc/openmsx/ChangeLog @@ -1,6 +1,12 @@ # ChangeLog for games-misc/openmsx # Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/games-misc/openmsx/ChangeLog,v 1.4 2010/05/28 18:19:40 josejx Exp $ +# $Header: /var/cvsroot/gentoo-x86/games-misc/openmsx/ChangeLog,v 1.5 2010/08/01 15:46:35 mr_bones_ Exp $ + +*openmsx-0.3.0 (01 Aug 2010) + + 01 Aug 2010; Michael Sterrett <mr_bones_@gentoo.org> + +openmsx-0.3.0.ebuild: + version bump 28 May 2010; Joseph Jezak <josejx@gentoo.org> openmsx-0.2.1.ebuild: Marked ppc/ppc64 stable. diff --git a/games-misc/openmsx/openmsx-0.3.0.ebuild b/games-misc/openmsx/openmsx-0.3.0.ebuild new file mode 100644 index 000000000000..416bcce4881d --- /dev/null +++ b/games-misc/openmsx/openmsx-0.3.0.ebuild @@ -0,0 +1,34 @@ +# Copyright 1999-2010 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/games-misc/openmsx/openmsx-0.3.0.ebuild,v 1.1 2010/08/01 15:46:35 mr_bones_ Exp $ + +EAPI=2 +PYTHON_DEPEND="2:2.6" +inherit python games + +DESCRIPTION="An ambiguously named music replacement set for OpenTTD" +HOMEPAGE="http://bundles.openttdcoop.org/openmsx/" +SRC_URI="http://bundles.openttdcoop.org/openmsx/releases/${PV}/${P}-source.tar.gz" + +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="~amd64 ~ppc ~ppc64 ~x86" +IUSE="" + +S=${WORKDIR}/${P}-source + +pkg_setup() { + python_set_active_version 2 + games_pkg_setup +} + +src_compile() { + emake bundle || die +} + +src_install() { + insinto "${GAMES_DATADIR}"/openttd/gm/${P} + doins ${P}/{*.mid,openmsx.obm} || die + dodoc ${P}/{changelog.txt,readme.txt} || die + prepgamesdirs +} |