Gentoo Archives: gentoo-commits

From: Sergei Trofimovich <slyfox@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: games-util/grfcodec/
Date: Tue, 04 May 2021 07:19:44
Message-Id: 1620112777.172484738977669f94baf90e9f09f2917cccfb3b.slyfox@gentoo
1 commit: 172484738977669f94baf90e9f09f2917cccfb3b
2 Author: Sergei Trofimovich <slyfox <AT> gentoo <DOT> org>
3 AuthorDate: Tue May 4 07:19:25 2021 +0000
4 Commit: Sergei Trofimovich <slyfox <AT> gentoo <DOT> org>
5 CommitDate: Tue May 4 07:19:37 2021 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=17248473
7
8 games-util/grfcodec: bump up to latest 20210310 snapshot
9
10 Reported-by: Toralf Förster
11 Closes: https://bugs.gentoo.org/786528
12 Package-Manager: Portage-3.0.18, Repoman-3.0.3
13 Signed-off-by: Sergei Trofimovich <slyfox <AT> gentoo.org>
14
15 games-util/grfcodec/Manifest | 1 +
16 .../grfcodec/grfcodec-6.0.6_p20210310.ebuild | 32 ++++++++++++++++++++++
17 2 files changed, 33 insertions(+)
18
19 diff --git a/games-util/grfcodec/Manifest b/games-util/grfcodec/Manifest
20 index 94bff3af1d2..972ea1e8461 100644
21 --- a/games-util/grfcodec/Manifest
22 +++ b/games-util/grfcodec/Manifest
23 @@ -1 +1,2 @@
24 DIST grfcodec-6.0.6-source.tar.xz 166820 BLAKE2B ba81e31477fb15bb5273add4d993ee7de88cfd47fd8300743e97c4abd19b0daf736d78b5bafc82569ff110757131501c07d7365a4e7ffde8d3a7fcc2e277bada SHA512 543123c794bfdb5b6556f7a897bcd2f3bdd09be8ad6a4ff07b138e0cac62621a4801c732bb20099c1bb383ad5822fc4ade276d49acf2744c811edd10d7699480
25 +DIST grfcodec-6.0.6_p20210310.tar.gz 205795 BLAKE2B 24d803e208b2fc465ae71611c0c0fb2737bfa8c5a28375bc08a6220581d7b07bb2f2a390e2ddb7f4beb8a80951862473919d41bce83364af70b6dc646f0f3f8e SHA512 10f4ec28c69d87e397f0fb5b497dbefce8fcd826731d3a0a864cbbd333b7df188ab0087445644ad245aeff65a8b6563dfdfa657ac1a2248e56e296c01f7d58a8
26
27 diff --git a/games-util/grfcodec/grfcodec-6.0.6_p20210310.ebuild b/games-util/grfcodec/grfcodec-6.0.6_p20210310.ebuild
28 new file mode 100644
29 index 00000000000..d4fd24bff44
30 --- /dev/null
31 +++ b/games-util/grfcodec/grfcodec-6.0.6_p20210310.ebuild
32 @@ -0,0 +1,32 @@
33 +# Copyright 1999-2021 Gentoo Authors
34 +# Distributed under the terms of the GNU General Public License v2
35 +
36 +EAPI=7
37 +
38 +inherit cmake
39 +
40 +COMMIT=045774dee7cab1a618a3e0d9b39bff78a12b6efa
41 +
42 +DESCRIPTION="A suite of programs to modify openttd/Transport Tycoon Deluxe's GRF files"
43 +HOMEPAGE="https://dev.openttdcoop.org/projects/grfcodec"
44 +SRC_URI="https://github.com/OpenTTD/grfcodec/archive/${COMMIT}.tar.gz -> ${P}.tar.gz"
45 +
46 +LICENSE="GPL-2+"
47 +SLOT="0"
48 +KEYWORDS="~amd64 ~arm ~arm64 ~ppc ~ppc64 ~x86"
49 +IUSE=""
50 +
51 +RDEPEND="media-libs/libpng:0"
52 +DEPEND="
53 + ${RDEPEND}
54 + dev-lang/perl
55 + dev-libs/boost
56 +"
57 +
58 +S="${WORKDIR}/grfcodec-${COMMIT}"
59 +
60 +src_install() {
61 + dobin "${BUILD_DIR}"/{grfcodec,grfid,grfstrip,nforenum}
62 + doman docs/*.1
63 + dodoc changelog.txt docs/*.txt
64 +}