Gentoo Archives: gentoo-commits

From: William Breathitt Gray <vilhelm.gray@×××××.com>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/proj/guru:dev commit in: games-fps/crispy-doom/
Date: Tue, 12 May 2020 14:09:03
Message-Id: 1589292509.58b6854ffb2895b07bf1e0824515fda30ae2131d.vilhelm.gray@gentoo
1 commit: 58b6854ffb2895b07bf1e0824515fda30ae2131d
2 Author: William Breathitt Gray <vilhelm.gray <AT> gmail <DOT> com>
3 AuthorDate: Tue May 12 14:04:16 2020 +0000
4 Commit: William Breathitt Gray <vilhelm.gray <AT> gmail <DOT> com>
5 CommitDate: Tue May 12 14:08:29 2020 +0000
6 URL: https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=58b6854f
7
8 games-fps/crispy-doom: Version bump to 5.8.0
9
10 The truecolor USE flag is introduced for experimental true-color
11 rendering.
12
13 Signed-off-by: William Breathitt Gray <vilhelm.gray <AT> gmail.com>
14
15 games-fps/crispy-doom/Manifest | 1 +
16 games-fps/crispy-doom/crispy-doom-5.8.0.ebuild | 43 ++++++++++++++++++++++++++
17 games-fps/crispy-doom/metadata.xml | 3 ++
18 3 files changed, 47 insertions(+)
19
20 diff --git a/games-fps/crispy-doom/Manifest b/games-fps/crispy-doom/Manifest
21 index 6f3e148..1e60c1e 100644
22 --- a/games-fps/crispy-doom/Manifest
23 +++ b/games-fps/crispy-doom/Manifest
24 @@ -1 +1,2 @@
25 DIST crispy-doom-5.7.2.tar.gz 2624917 BLAKE2B 2c381d234168c53fda79c17d5b3544dbb72131d591bc6161524cc16b2ef47fa1e93c80656c3c9629dd3193a78dedad8fd4bffa66a1816ad5eb63c9c06a928e39 SHA512 236826c98e2cd66edcc11336b9ab1e6942ec9db09b53cb9f23e472046222431c94dc597fa0768e006b0b1b32ab6a6073c715e0bd95effebde17ea70b8e5f11ad
26 +DIST crispy-doom-5.8.0.tar.gz 2627570 BLAKE2B f4495363216fe251566ffda6ff4dff0952661050ebb1221e536ab5a13f792b69ae4eb159f2a89b32843cc796cead43455216ddec8cc2047d44e565f0aaab302b SHA512 c6a4833c27b81e9808565b352214001a0d621f8bf6dbb7f4235d2bedaa35db68a1cf2567f77e7139da29df1d56a1097419e16791d1b49e5882674e33ce8c4649
27
28 diff --git a/games-fps/crispy-doom/crispy-doom-5.8.0.ebuild b/games-fps/crispy-doom/crispy-doom-5.8.0.ebuild
29 new file mode 100644
30 index 0000000..a2e79c4
31 --- /dev/null
32 +++ b/games-fps/crispy-doom/crispy-doom-5.8.0.ebuild
33 @@ -0,0 +1,43 @@
34 +# Copyright 1999-2020 Gentoo Authors
35 +# Distributed under the terms of the GNU General Public License v2
36 +
37 +EAPI=7
38 +
39 +PYTHON_COMPAT=( python3_{7,8} )
40 +
41 +inherit autotools python-any-r1 xdg
42 +
43 +DESCRIPTION="A limit-removing enhanced-resolution Doom source port based on Chocolate Doom"
44 +HOMEPAGE="https://github.com/fabiangreffrath/crispy-doom"
45 +SRC_URI="https://github.com/fabiangreffrath/${PN}/archive/${P}.tar.gz"
46 +
47 +LICENSE="BSD GPL-2+"
48 +SLOT="0"
49 +KEYWORDS="~amd64 ~x86"
50 +IUSE="libsamplerate png python timidity truecolor +vorbis zlib"
51 +
52 +DEPEND="
53 + media-libs/libsdl2
54 + media-libs/sdl2-mixer[timidity?,vorbis?]
55 + media-libs/sdl2-net
56 + libsamplerate? ( media-libs/libsamplerate )
57 + png? ( media-libs/libpng:= )
58 + zlib? ( sys-libs/zlib )"
59 +RDEPEND="${DEPEND}"
60 +BDEPEND="python? ( ${PYTHON_DEPS} )"
61 +
62 +S="${WORKDIR}"/${PN}-${P}
63 +
64 +src_prepare() {
65 + default
66 + eautoreconf
67 +}
68 +
69 +src_configure() {
70 + econf \
71 + --docdir="${EPREFIX}/usr/share/doc/${P}/docs" \
72 + $(use_with libsamplerate) \
73 + $(use_with png libpng) \
74 + $(use_enable truecolor) \
75 + $(use_with zlib)
76 +}
77
78 diff --git a/games-fps/crispy-doom/metadata.xml b/games-fps/crispy-doom/metadata.xml
79 index 5150d4b..a8959f1 100644
80 --- a/games-fps/crispy-doom/metadata.xml
81 +++ b/games-fps/crispy-doom/metadata.xml
82 @@ -8,6 +8,9 @@
83 <email>vilhelm.gray@×××××.com</email>
84 <name>William Breathitt Gray</name>
85 </maintainer>
86 + <use>
87 + <flag name="truecolor">Enable true-color rendering (experimental)</flag>
88 + </use>
89 <upstream>
90 <bugs-to>https://github.com/fabiangreffrath/crispy-doom/issues</bugs-to>
91 <doc lang="en">https://github.com/fabiangreffrath/crispy-doom</doc>