Gentoo Archives: gentoo-commits

From: Sam James <sam@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: games-puzzle/lmarbles/
Date: Thu, 08 Oct 2020 13:15:02
Message-Id: 1602162893.71226ff0e9abfedcb00d5adfe87fb22bf55f4b46.sam@gentoo
1 commit: 71226ff0e9abfedcb00d5adfe87fb22bf55f4b46
2 Author: Azamat H. Hackimov <azamat.hackimov <AT> gmail <DOT> com>
3 AuthorDate: Mon Jul 6 23:14:08 2020 +0000
4 Commit: Sam James <sam <AT> gentoo <DOT> org>
5 CommitDate: Thu Oct 8 13:14:53 2020 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=71226ff0
7
8 games-puzzle/lmarbles: migrate to EAPI7
9
10 Migrated from deprecated eclass.
11 Closes: https://bugs.gentoo.org/731128
12 Package-Manager: Portage-2.3.99, Repoman-2.3.23
13 Signed-off-by: Azamat H. Hackimov <azamat.hackimov <AT> gmail.com>
14 Signed-off-by: Sam James <sam <AT> gentoo.org>
15
16 games-puzzle/lmarbles/lmarbles-1.0.8-r1.ebuild | 29 ++++++++++++++++++++++++++
17 1 file changed, 29 insertions(+)
18
19 diff --git a/games-puzzle/lmarbles/lmarbles-1.0.8-r1.ebuild b/games-puzzle/lmarbles/lmarbles-1.0.8-r1.ebuild
20 new file mode 100644
21 index 00000000000..53b5aa2c7c5
22 --- /dev/null
23 +++ b/games-puzzle/lmarbles/lmarbles-1.0.8-r1.ebuild
24 @@ -0,0 +1,29 @@
25 +# Copyright 1999-2020 Gentoo Authors
26 +# Distributed under the terms of the GNU General Public License v2
27 +
28 +EAPI=7
29 +inherit autotools
30 +
31 +DESCRIPTION="puzzle game inspired by Atomix and written in SDL"
32 +HOMEPAGE="http://lgames.sourceforge.net/LMarbles/"
33 +SRC_URI="https://download.sourceforge.net/lgames/${P}.tar.gz"
34 +
35 +LICENSE="GPL-2"
36 +SLOT="0"
37 +KEYWORDS="~amd64 ~x86"
38 +
39 +DEPEND="media-libs/libsdl[video]
40 + media-libs/sdl-mixer"
41 +RDEPEND="${DEPEND}"
42 +
43 +src_prepare() {
44 + default
45 + mv configure.{in,ac}
46 + rm *.m4
47 + eautoreconf
48 +}
49 +
50 +src_install() {
51 + default
52 + dodoc src/manual/*
53 +}