From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 9897C139086 for ; Mon, 26 Dec 2016 17:04:57 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id BB477E0C17; Mon, 26 Dec 2016 17:04:56 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 917B7E0C15 for ; Mon, 26 Dec 2016 17:04:56 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 8E341341142 for ; Mon, 26 Dec 2016 17:04:55 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 0585924EB for ; Mon, 26 Dec 2016 17:04:54 +0000 (UTC) From: "Lars Wendler" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Lars Wendler" Message-ID: <1482771887.166867ba72aded7a12c1b98fd263eac056d495c6.polynomial-c@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: games-misc/openmsx/ X-VCS-Repository: repo/gentoo X-VCS-Files: games-misc/openmsx/openmsx-0.3.1-r2.ebuild X-VCS-Directories: games-misc/openmsx/ X-VCS-Committer: polynomial-c X-VCS-Committer-Name: Lars Wendler X-VCS-Revision: 166867ba72aded7a12c1b98fd263eac056d495c6 X-VCS-Branch: master Date: Mon, 26 Dec 2016 17:04:54 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Archives-Salt: ff2e7dbb-7af5-497b-b8dc-0ba14c0527d8 X-Archives-Hash: 4ef2c3b442e1f4ce2f53b50990a6d6c3 commit: 166867ba72aded7a12c1b98fd263eac056d495c6 Author: Alexander Golubev gmail com> AuthorDate: Sun Dec 25 22:39:18 2016 +0000 Commit: Lars Wendler gentoo org> CommitDate: Mon Dec 26 17:04:47 2016 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=166867ba games-misc/openmsx: EAPI=6 Closes: https://github.com/gentoo/gentoo/pull/3242 games-misc/openmsx/openmsx-0.3.1-r2.ebuild | 34 ++++++++++++++++++++++++++++++ 1 file changed, 34 insertions(+) diff --git a/games-misc/openmsx/openmsx-0.3.1-r2.ebuild b/games-misc/openmsx/openmsx-0.3.1-r2.ebuild new file mode 100644 index 00000000..53582e3 --- /dev/null +++ b/games-misc/openmsx/openmsx-0.3.1-r2.ebuild @@ -0,0 +1,34 @@ +# Copyright 1999-2016 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Id$ + +EAPI=6 +PYTHON_COMPAT=( python2_7 ) +inherit python-any-r1 + +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 ~arm ppc ~ppc64 ~x86" +IUSE="" + +DEPEND="${PYTHON_DEPS}" + +S=${WORKDIR}/${P}-source + +pkg_setup() { + python-any-r1_pkg_setup +} + +src_compile() { + emake _V= bundle || die +} + +src_install() { + insinto "/usr/share/games/openttd/gm/${P}" + doins ${P}/{*.mid,openmsx.obm} || die + dodoc ${P}/{changelog.txt,readme.txt} || die +}