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-board/qcheckers/
Date: Tue, 02 Aug 2016 17:00:00
Message-Id: 1470157186.bd1b38ce1ae733b50c20634d635add083ff5d58e.wizardedit@gentoo
1 commit: bd1b38ce1ae733b50c20634d635add083ff5d58e
2 Author: Austin English <wizardedit <AT> gentoo <DOT> org>
3 AuthorDate: Tue Aug 2 16:29:13 2016 +0000
4 Commit: Austin English <wizardedit <AT> gentoo <DOT> org>
5 CommitDate: Tue Aug 2 16:59:46 2016 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=bd1b38ce
7
8 games-board/qcheckers: 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-board/qcheckers/qcheckers-20091230-r1.ebuild | 33 ++++++++++++++++++++++
17 1 file changed, 33 insertions(+)
18
19 diff --git a/games-board/qcheckers/qcheckers-20091230-r1.ebuild b/games-board/qcheckers/qcheckers-20091230-r1.ebuild
20 new file mode 100644
21 index 0000000..df73d29
22 --- /dev/null
23 +++ b/games-board/qcheckers/qcheckers-20091230-r1.ebuild
24 @@ -0,0 +1,33 @@
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 +
32 +MY_PN=${PN/qc/QC}
33 +
34 +DESCRIPTION="Qt4 based checkers game"
35 +HOMEPAGE="https://code.google.com/p/qcheckers/"
36 +SRC_URI="https://qcheckers.googlecode.com/files/${MY_PN}-${PV}.tar.gz"
37 +
38 +LICENSE="GPL-3"
39 +SLOT="0"
40 +KEYWORDS="~amd64 ~x86"
41 +IUSE=""
42 +
43 +DEPEND="dev-qt/qtgui:4"
44 +RDEPEND=${DEPEND}
45 +
46 +S=${WORKDIR}/${MY_PN}
47 +
48 +src_configure() {
49 + eqmake4 ${MY_PN}.pro
50 +}
51 +
52 +src_install() {
53 + dobin ${MY_PN}
54 + newicon icons/help-about.png ${PN}.png
55 + make_desktop_entry ${MY_PN} ${MY_PN}
56 + dodoc README
57 +}