Gentoo Archives: gentoo-commits

From: Ionen Wolkens <ionen@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: games-action/deathchase3d/
Date: Mon, 13 Sep 2021 08:07:40
Message-Id: 1631520428.035240349b99ae1206282fd3a7655adbb50f6e96.ionen@gentoo
1 commit: 035240349b99ae1206282fd3a7655adbb50f6e96
2 Author: Ionen Wolkens <ionen <AT> gentoo <DOT> org>
3 AuthorDate: Mon Sep 13 04:54:59 2021 +0000
4 Commit: Ionen Wolkens <ionen <AT> gentoo <DOT> org>
5 CommitDate: Mon Sep 13 08:07:08 2021 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=03524034
7
8 games-action/deathchase3d: EAPI6->8, remove homepage, add .desktop
9
10 HOMEPAGE does not seem to have a replacement
11
12 Closes: https://bugs.gentoo.org/680562
13 Signed-off-by: Ionen Wolkens <ionen <AT> gentoo.org>
14
15 .../deathchase3d/deathchase3d-0.9-r1.ebuild | 21 ++++++++++++---------
16 1 file changed, 12 insertions(+), 9 deletions(-)
17
18 diff --git a/games-action/deathchase3d/deathchase3d-0.9-r1.ebuild b/games-action/deathchase3d/deathchase3d-0.9-r1.ebuild
19 index 41a27eb9534..89616438bd2 100644
20 --- a/games-action/deathchase3d/deathchase3d-0.9-r1.ebuild
21 +++ b/games-action/deathchase3d/deathchase3d-0.9-r1.ebuild
22 @@ -1,25 +1,28 @@
23 # Copyright 1999-2021 Gentoo Authors
24 # Distributed under the terms of the GNU General Public License v2
25
26 -EAPI=6
27 +EAPI=8
28
29 -DESCRIPTION="A remake of the Sinclair Spectrum game of the same name"
30 -HOMEPAGE="http://www.autismuk.freeserve.co.uk/"
31 -SRC_URI="http://www.autismuk.freeserve.co.uk/${P}.tar.gz"
32 +inherit desktop
33
34 -LICENSE="GPL-2"
35 +DESCRIPTION="Remake of the Sinclair Spectrum game of the same name"
36 +HOMEPAGE="https://wiki.gentoo.org/wiki/No_homepage"
37 +SRC_URI="mirror://gentoo/${P}.tar.gz"
38 +
39 +LICENSE="GPL-2+"
40 SLOT="0"
41 KEYWORDS="~amd64 ~x86"
42 -IUSE=""
43
44 -DEPEND="media-libs/libsdl[video]"
45 -RDEPEND=${DEPEND}
46 +RDEPEND="media-libs/libsdl[video]"
47 +DEPEND="${DEPEND}"
48
49 PATCHES=(
50 "${FILESDIR}/${P}-underlink.patch"
51 )
52
53 src_install() {
54 - dobin "${PN}/${PN}"
55 + dobin ${PN}/${PN}
56 dodoc README ${PN}/docs/en/index.html
57 +
58 + make_desktop_entry ${PN} "Death Chase 3D" applications-games
59 }