From 95461df035e3867364495f065e5e805bf629b2d7 Mon Sep 17 00:00:00 2001 From: V3n3RiX Date: Tue, 26 Oct 2021 00:10:07 +0100 Subject: gentoo resync : 25.10.2021 --- games-misc/opengfx/opengfx-7.1.ebuild | 64 +++++++++++++++++++++++++++++++++++ 1 file changed, 64 insertions(+) create mode 100644 games-misc/opengfx/opengfx-7.1.ebuild (limited to 'games-misc/opengfx/opengfx-7.1.ebuild') diff --git a/games-misc/opengfx/opengfx-7.1.ebuild b/games-misc/opengfx/opengfx-7.1.ebuild new file mode 100644 index 000000000000..937e35cb1573 --- /dev/null +++ b/games-misc/opengfx/opengfx-7.1.ebuild @@ -0,0 +1,64 @@ +# Copyright 1999-2021 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +PYTHON_COMPAT=( python3_{8..10} ) + +inherit python-any-r1 + +DESCRIPTION="OpenGFX data files for OpenTTD" +HOMEPAGE="https://wiki.openttd.org/en/Basesets/OpenGFX https://github.com/OpenTTD/OpenGFX" +SRC_URI="https://cdn.openttd.org/${PN}-releases/${PV}/${P}-source.tar.xz" +S="${WORKDIR}/${P}-source" + +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="~amd64 ~arm ~arm64 ~x86" + +DEPEND=" + games-util/grfcodec + games-util/nml + ${PYTHON_DEPS} +" + +DOCS=( "README.md" "changelog.txt" ) + +src_prepare() { + default + + python-any-r1_pkg_setup +} + +src_compile() { + local myemakeargs=( + GIMP="" + PYTHON="${EPYTHON}" + ) + + emake "${myemakeargs[@]}" all +} + +src_test() { + local myemakeargs=( + GIMP="" + PYTHON="${EPYTHON}" + ) + + emake "${myemakeargs[@]}" check +} + +src_install() { + local myemakeargs=( + DO_NOT_INSTALL_README="true" + DO_NOT_INSTALL_LICENSE="true" + DO_NOT_INSTALL_CHANGELOG="true" + GIMP="" + INSTALL_DIR="${ED}/usr/share/openttd/baseset/" + PYTHON="${EPYTHON}" + ) + + emake "${myemakeargs[@]}" install + + einstalldocs +} -- cgit v1.2.3