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 717A4139085 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 B194FE0C15; Mon, 26 Dec 2016 17:04:56 +0000 (UTC) Received: from smtp.gentoo.org (dev.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (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 8ECB6E0C11 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 AA37B3412C1 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 1731724EC 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: <1482771890.de5bec6fe9cc0de9bacfa3178a0f35e013c20c6d.polynomial-c@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: games-misc/opensfx/ X-VCS-Repository: repo/gentoo X-VCS-Files: games-misc/opensfx/opensfx-0.2.3-r1.ebuild X-VCS-Directories: games-misc/opensfx/ X-VCS-Committer: polynomial-c X-VCS-Committer-Name: Lars Wendler X-VCS-Revision: de5bec6fe9cc0de9bacfa3178a0f35e013c20c6d 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: 657b554a-7dcd-49d7-9a12-4d05a96e2157 X-Archives-Hash: b25a11bf298ea17afbda18a8b219470a commit: de5bec6fe9cc0de9bacfa3178a0f35e013c20c6d Author: Alexander Golubev gmail com> AuthorDate: Sun Dec 25 22:39:34 2016 +0000 Commit: Lars Wendler gentoo org> CommitDate: Mon Dec 26 17:04:50 2016 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=de5bec6f games-misc/opensfx: EAPI=6 Closes: https://github.com/gentoo/gentoo/pull/3242 games-misc/opensfx/opensfx-0.2.3-r1.ebuild | 25 +++++++++++++++++++++++++ 1 file changed, 25 insertions(+) diff --git a/games-misc/opensfx/opensfx-0.2.3-r1.ebuild b/games-misc/opensfx/opensfx-0.2.3-r1.ebuild new file mode 100644 index 00000000..a7ec47c --- /dev/null +++ b/games-misc/opensfx/opensfx-0.2.3-r1.ebuild @@ -0,0 +1,25 @@ +# Copyright 1999-2016 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Id$ + +EAPI=6 + +DESCRIPTION="OpenSFX data files for OpenTTD" +HOMEPAGE="http://bundles.openttdcoop.org/opensfx/" +SRC_URI="http://bundles.openttdcoop.org/${PN}/releases/${P}-source.tar.gz" + +LICENSE="CC-Sampling-Plus-1.0" +SLOT="0" +KEYWORDS="~amd64 ~arm ~ppc ~ppc64 ~x86" +IUSE="" + +DEPEND="games-util/catcodec" +RDEPEND="" + +S=${WORKDIR}/${P}-source + +src_install() { + insinto "/usr/share/games/openttd/data/" + doins opensfx.cat opensfx.obs + dodoc docs/{changelog.txt,readme.ptxt} +}