Gentoo Archives: gentoo-commits

From: Lars Wendler <polynomial-c@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: games-misc/openmsx/
Date: Mon, 26 Dec 2016 17:04:57
Message-Id: 1482771887.166867ba72aded7a12c1b98fd263eac056d495c6.polynomial-c@gentoo
1 commit: 166867ba72aded7a12c1b98fd263eac056d495c6
2 Author: Alexander Golubev <fatzer2 <AT> gmail <DOT> com>
3 AuthorDate: Sun Dec 25 22:39:18 2016 +0000
4 Commit: Lars Wendler <polynomial-c <AT> gentoo <DOT> org>
5 CommitDate: Mon Dec 26 17:04:47 2016 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=166867ba
7
8 games-misc/openmsx: EAPI=6
9
10 Closes: https://github.com/gentoo/gentoo/pull/3242
11
12 games-misc/openmsx/openmsx-0.3.1-r2.ebuild | 34 ++++++++++++++++++++++++++++++
13 1 file changed, 34 insertions(+)
14
15 diff --git a/games-misc/openmsx/openmsx-0.3.1-r2.ebuild b/games-misc/openmsx/openmsx-0.3.1-r2.ebuild
16 new file mode 100644
17 index 00000000..53582e3
18 --- /dev/null
19 +++ b/games-misc/openmsx/openmsx-0.3.1-r2.ebuild
20 @@ -0,0 +1,34 @@
21 +# Copyright 1999-2016 Gentoo Foundation
22 +# Distributed under the terms of the GNU General Public License v2
23 +# $Id$
24 +
25 +EAPI=6
26 +PYTHON_COMPAT=( python2_7 )
27 +inherit python-any-r1
28 +
29 +DESCRIPTION="An ambiguously named music replacement set for OpenTTD"
30 +HOMEPAGE="http://bundles.openttdcoop.org/openmsx/"
31 +SRC_URI="http://bundles.openttdcoop.org/openmsx/releases/${PV}/${P}-source.tar.gz"
32 +
33 +LICENSE="GPL-2"
34 +SLOT="0"
35 +KEYWORDS="~amd64 ~arm ppc ~ppc64 ~x86"
36 +IUSE=""
37 +
38 +DEPEND="${PYTHON_DEPS}"
39 +
40 +S=${WORKDIR}/${P}-source
41 +
42 +pkg_setup() {
43 + python-any-r1_pkg_setup
44 +}
45 +
46 +src_compile() {
47 + emake _V= bundle || die
48 +}
49 +
50 +src_install() {
51 + insinto "/usr/share/games/openttd/gm/${P}"
52 + doins ${P}/{*.mid,openmsx.obm} || die
53 + dodoc ${P}/{changelog.txt,readme.txt} || die
54 +}