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 C2F77139085 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 C9EB2E0C18; Mon, 26 Dec 2016 17:04:56 +0000 (UTC) Received: from smtp.gentoo.org (mail.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 AADA1E0C11 for ; Mon, 26 Dec 2016 17:04:56 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (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 B13743412CB 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 E84AC24DF for ; Mon, 26 Dec 2016 17:04:53 +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: <1482771884.54ccd93f6d01ee6bb5fa312b38d4127440ce9869.polynomial-c@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: games-misc/opengfx/ X-VCS-Repository: repo/gentoo X-VCS-Files: games-misc/opengfx/opengfx-0.5.4-r1.ebuild X-VCS-Directories: games-misc/opengfx/ X-VCS-Committer: polynomial-c X-VCS-Committer-Name: Lars Wendler X-VCS-Revision: 54ccd93f6d01ee6bb5fa312b38d4127440ce9869 X-VCS-Branch: master Date: Mon, 26 Dec 2016 17:04:53 +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: aa27d84f-39b0-4593-a40b-ce7f5d75c538 X-Archives-Hash: 188b699679537b3fa114875a34df7a77 commit: 54ccd93f6d01ee6bb5fa312b38d4127440ce9869 Author: Alexander Golubev gmail com> AuthorDate: Sun Dec 25 22:37:36 2016 +0000 Commit: Lars Wendler gentoo org> CommitDate: Mon Dec 26 17:04:44 2016 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=54ccd93f games-misc/opengfx: EAPI=6 Closes: https://github.com/gentoo/gentoo/pull/3242 games-misc/opengfx/opengfx-0.5.4-r1.ebuild | 37 ++++++++++++++++++++++++++++++ 1 file changed, 37 insertions(+) diff --git a/games-misc/opengfx/opengfx-0.5.4-r1.ebuild b/games-misc/opengfx/opengfx-0.5.4-r1.ebuild new file mode 100644 index 00000000..3589495 --- /dev/null +++ b/games-misc/opengfx/opengfx-0.5.4-r1.ebuild @@ -0,0 +1,37 @@ +# Copyright 1999-2016 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Id$ + +EAPI=6 +inherit eutils + +DESCRIPTION="OpenGFX data files for OpenTTD" +HOMEPAGE="http://bundles.openttdcoop.org/opengfx/" +SRC_URI="http://bundles.openttdcoop.org/opengfx/releases/${PV}/${P}-source.tar.xz" + +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="~amd64 ~arm ~ppc ~x86" +IUSE="" +RESTRICT="test" # nml version affects the checksums that the test uses (bug #451444) + +DEPEND=">=games-util/nml-0.4.0 + games-util/grfcodec" +RDEPEND="" + +S=${WORKDIR}/${P}-source + +PATCHES=( + "${FILESDIR}/${P}-Makefile.patch" +) + +src_compile() { + emake GIMP="" help # print out the env to make bug reports better + emake GIMP="" _V="" bundle_tar +} + +src_install() { + insinto "/usr/share/games/openttd/data/" + doins *.grf opengfx.obg + dodoc docs/{changelog.txt,readme.txt} +}