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-puzzle/concentration/
Date: Mon, 04 Oct 2021 17:27:02
Message-Id: 1633366361.c922d6c4e438afa4681c3999301035b78c736455.ionen@gentoo
1 commit: c922d6c4e438afa4681c3999301035b78c736455
2 Author: Michael Mair-Keimberger <mmk <AT> levelnine <DOT> at>
3 AuthorDate: Mon Oct 4 05:14:18 2021 +0000
4 Commit: Ionen Wolkens <ionen <AT> gentoo <DOT> org>
5 CommitDate: Mon Oct 4 16:52:41 2021 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c922d6c4
7
8 games-puzzle/concentration: EAPI8, minor improvements
9
10 Package-Manager: Portage-3.0.26, Repoman-3.0.3
11 Signed-off-by: Michael Mair-Keimberger <mmk <AT> levelnine.at>
12 Closes: https://bugs.gentoo.org/657602
13 Signed-off-by: Ionen Wolkens <ionen <AT> gentoo.org>
14
15 .../concentration/concentration-1.2-r3.ebuild | 31 ++++++++++++++++++++++
16 1 file changed, 31 insertions(+)
17
18 diff --git a/games-puzzle/concentration/concentration-1.2-r3.ebuild b/games-puzzle/concentration/concentration-1.2-r3.ebuild
19 new file mode 100644
20 index 00000000000..eb664032ce8
21 --- /dev/null
22 +++ b/games-puzzle/concentration/concentration-1.2-r3.ebuild
23 @@ -0,0 +1,31 @@
24 +# Copyright 1999-2021 Gentoo Authors
25 +# Distributed under the terms of the GNU General Public License v2
26 +
27 +EAPI=8
28 +
29 +inherit desktop
30 +
31 +DESCRIPTION="The classic memory game with some new life"
32 +HOMEPAGE="https://wiki.gentoo.org/wiki/No_homepage"
33 +SRC_URI="mirror://gentoo/${P}.tar.gz"
34 +
35 +LICENSE="GPL-2+"
36 +SLOT="0"
37 +KEYWORDS="~amd64 ~x86"
38 +
39 +DEPEND="
40 + media-libs/libsdl[sound,video]
41 + media-libs/sdl-mixer[vorbis]
42 + media-libs/sdl-image[jpeg,png]
43 + media-libs/sdl-ttf"
44 +RDEPEND="${DEPEND}
45 + !sci-biology/unafold"
46 +
47 +PATCHES=( "${FILESDIR}"/${P}-gentoo.patch )
48 +
49 +src_install() {
50 + default
51 +
52 + newicon pics/set1/19.png ${PN}.png
53 + make_desktop_entry ${PN} ${PN^}
54 +}