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 69355158086 for ; Sun, 24 Oct 2021 05:40:30 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id C07C5E085B; Sun, 24 Oct 2021 05:40:29 +0000 (UTC) Received: from smtp.gentoo.org (woodpecker.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher ECDHE-RSA-CHACHA20-POLY1305 (256/256 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id A9B9AE085B for ; Sun, 24 Oct 2021 05:40:29 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (using TLSv1.2 with cipher ECDHE-RSA-CHACHA20-POLY1305 (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 928C4343005 for ; Sun, 24 Oct 2021 05:40:28 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 275B815A for ; Sun, 24 Oct 2021 05:40:27 +0000 (UTC) From: "Sam James" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Sam James" Message-ID: <1635054018.a239a0c77b0a610fafdf1fdea9f953fed4cd809d.sam@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: games-misc/opensfx/ X-VCS-Repository: repo/gentoo X-VCS-Files: games-misc/opensfx/Manifest games-misc/opensfx/opensfx-1.0.2.ebuild X-VCS-Directories: games-misc/opensfx/ X-VCS-Committer: sam X-VCS-Committer-Name: Sam James X-VCS-Revision: a239a0c77b0a610fafdf1fdea9f953fed4cd809d X-VCS-Branch: master Date: Sun, 24 Oct 2021 05:40:27 +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-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply X-Archives-Salt: 88acda3c-a50c-401b-b870-81bf4b2cad4f X-Archives-Hash: 4478f97e3bc7cd4720c8c7d9ece63146 commit: a239a0c77b0a610fafdf1fdea9f953fed4cd809d Author: Sam James gentoo org> AuthorDate: Sun Oct 24 05:39:08 2021 +0000 Commit: Sam James gentoo org> CommitDate: Sun Oct 24 05:40:18 2021 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a239a0c7 games-misc/opensfx: add 1.0.2 Signed-off-by: Sam James gentoo.org> games-misc/opensfx/Manifest | 1 + games-misc/opensfx/opensfx-1.0.2.ebuild | 20 ++++++++++++++++++++ 2 files changed, 21 insertions(+) diff --git a/games-misc/opensfx/Manifest b/games-misc/opensfx/Manifest index f73e263ed1d..309f1428a36 100644 --- a/games-misc/opensfx/Manifest +++ b/games-misc/opensfx/Manifest @@ -1 +1,2 @@ DIST opensfx-1.0.1-source.tar.xz 9872728 BLAKE2B 34880f4713b37d8f720e5b68e5c3f821c52a4dd44f6171fe31df3e3b63e5e333ce415074c1ee204555261cded4d0180618e6d478e95f842a361f43572f379e87 SHA512 1c908b932db7a47b607882e51d34bff090b712182a2b2955e6c82b6b7e657a7cb7bda93d1dac19b057c38d671d185687a0b1a26ddb93b5670329b3806aaef654 +DIST opensfx-1.0.2-source.tar.xz 9947284 BLAKE2B c7b545bb23454fd16829c54cdb038d4c26c437e6239307cea93315af77f6c9570ac9b0869013549216817d4084bfb4116a7ad2bc5f1da1fc369d8bc80f016d9e SHA512 a4e37ff262bee827b8c86679bc52041ab83f629f482a34a3fc09bd7687b83e468f66f9144fceade9b5bf581a72cad04b4f13ad479f76b35ba53d019538b94225 diff --git a/games-misc/opensfx/opensfx-1.0.2.ebuild b/games-misc/opensfx/opensfx-1.0.2.ebuild new file mode 100644 index 00000000000..54876177298 --- /dev/null +++ b/games-misc/opensfx/opensfx-1.0.2.ebuild @@ -0,0 +1,20 @@ +# Copyright 1999-2021 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 + +DESCRIPTION="OpenSFX data files for OpenTTD" +HOMEPAGE="https://wiki.openttd.org/en/Basesets/OpenSFX https://github.com/OpenTTD/OpenSFX" +SRC_URI="https://cdn.openttd.org/opensfx-releases/${PV}/${P}-source.tar.xz" +S="${WORKDIR}"/${P}-source + +LICENSE="CC-BY-SA-3.0 CDDL-1.1 GPL-2+" +SLOT="0" +KEYWORDS="~amd64 ~arm ~arm64 ~ppc64 ~x86" + +DEPEND="games-util/catcodec" + +src_install() { + emake INSTALL_DIR="${ED}/usr/share/openttd/baseset/" install + dodoc docs/{changelog.txt,readme.ptxt} +}