Gentoo Archives: gentoo-commits

From: Austin English <wizardedit@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: games-misc/qlife/
Date: Tue, 11 Oct 2016 22:59:29
Message-Id: 1476226547.15c4c9bc738cb26b1f5c2e25cb0a0a16d53b5187.wizardedit@gentoo
1 commit: 15c4c9bc738cb26b1f5c2e25cb0a0a16d53b5187
2 Author: Austin English <wizardedit <AT> gentoo <DOT> org>
3 AuthorDate: Tue Oct 11 21:41:50 2016 +0000
4 Commit: Austin English <wizardedit <AT> gentoo <DOT> org>
5 CommitDate: Tue Oct 11 22:55:47 2016 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=15c4c9bc
7
8 games-misc/qlife: remove deprecated games eclass
9
10 Also update to EAPI 6
11
12 Gentoo-Bug: https://bugs.gentoo.org/574082
13
14 Package-Manager: portage-2.3.0
15
16 games-misc/qlife/qlife-1.1-r1.ebuild | 31 +++++++++++++++++++++++++++++++
17 1 file changed, 31 insertions(+)
18
19 diff --git a/games-misc/qlife/qlife-1.1-r1.ebuild b/games-misc/qlife/qlife-1.1-r1.ebuild
20 new file mode 100644
21 index 00000000..e56b0ae
22 --- /dev/null
23 +++ b/games-misc/qlife/qlife-1.1-r1.ebuild
24 @@ -0,0 +1,31 @@
25 +# Copyright 1999-2016 Gentoo Foundation
26 +# Distributed under the terms of the GNU General Public License v2
27 +# $Id$
28 +
29 +EAPI=6
30 +inherit eutils qmake-utils
31 +MY_PN=${PN/ql/QL}
32 +
33 +DESCRIPTION="Simulates the classical Game of Life invented by John Conway"
34 +HOMEPAGE="http://open-maker.tuxfamily.org/blog/index.php?post/2009/03/28/QLife"
35 +SRC_URI="http://open-maker.tuxfamily.org/blog/public/${PN}_linux.tar.gz"
36 +
37 +LICENSE="GPL-3"
38 +SLOT="0"
39 +KEYWORDS="~amd64 ~ppc ~x86"
40 +IUSE=""
41 +
42 +DEPEND="dev-qt/qtgui:4"
43 +RDEPEND="${DEPEND}"
44 +
45 +S=${WORKDIR}/${MY_PN}/sources
46 +
47 +src_configure() {
48 + eqmake4 ${MY_PN}.pro
49 +}
50 +
51 +src_install() {
52 + dobin ${MY_PN}
53 + newicon data/egg.png ${PN}.png
54 + make_desktop_entry ${MY_PN} ${MY_PN}
55 +}