diff options
author | Michael Sterrett <mr_bones_@gentoo.org> | 2010-08-31 18:43:47 +0000 |
---|---|---|
committer | Michael Sterrett <mr_bones_@gentoo.org> | 2010-08-31 18:43:47 +0000 |
commit | 1c9dde59ded1f3f1bb879c49345ad4e29de10363 (patch) | |
tree | 5a11055893f48e22132d139a6ee3a32271946acb /games-misc/openmsx | |
parent | Version bump. (diff) | |
download | gentoo-2-1c9dde59ded1f3f1bb879c49345ad4e29de10363.tar.gz gentoo-2-1c9dde59ded1f3f1bb879c49345ad4e29de10363.tar.bz2 gentoo-2-1c9dde59ded1f3f1bb879c49345ad4e29de10363.zip |
version bump
(Portage version: 2.1.8.3/cvs/Linux i686)
Diffstat (limited to 'games-misc/openmsx')
-rw-r--r-- | games-misc/openmsx/ChangeLog | 8 | ||||
-rw-r--r-- | games-misc/openmsx/openmsx-0.3.1.ebuild | 34 |
2 files changed, 41 insertions, 1 deletions
diff --git a/games-misc/openmsx/ChangeLog b/games-misc/openmsx/ChangeLog index f29acf45aa91..da26b05db306 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.5 2010/08/01 15:46:35 mr_bones_ Exp $ +# $Header: /var/cvsroot/gentoo-x86/games-misc/openmsx/ChangeLog,v 1.6 2010/08/31 18:43:47 mr_bones_ Exp $ + +*openmsx-0.3.1 (31 Aug 2010) + + 31 Aug 2010; Michael Sterrett <mr_bones_@gentoo.org> + +openmsx-0.3.1.ebuild: + Version bump *openmsx-0.3.0 (01 Aug 2010) diff --git a/games-misc/openmsx/openmsx-0.3.1.ebuild b/games-misc/openmsx/openmsx-0.3.1.ebuild new file mode 100644 index 000000000000..3b44b6ac5c1a --- /dev/null +++ b/games-misc/openmsx/openmsx-0.3.1.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.1.ebuild,v 1.1 2010/08/31 18:43:47 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 +} |