Gentoo Archives: gentoo-commits

From: Andreas Sturmlechner <asturm@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: games-puzzle/hexalate/
Date: Thu, 21 May 2020 09:52:41
Message-Id: 1590054482.6c0df93ad2c6f43f7e85df94a3ace12a19b04b48.asturm@gentoo
1 commit: 6c0df93ad2c6f43f7e85df94a3ace12a19b04b48
2 Author: Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
3 AuthorDate: Thu May 21 09:48:02 2020 +0000
4 Commit: Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
5 CommitDate: Thu May 21 09:48:02 2020 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=6c0df93a
7
8 games-puzzle/hexalate: 1.1.6 version bump
9
10 Package-Manager: Portage-2.3.99, Repoman-2.3.22
11 Signed-off-by: Andreas Sturmlechner <asturm <AT> gentoo.org>
12
13 games-puzzle/hexalate/Manifest | 1 +
14 games-puzzle/hexalate/hexalate-1.1.6.ebuild | 41 +++++++++++++++++++++++++++++
15 2 files changed, 42 insertions(+)
16
17 diff --git a/games-puzzle/hexalate/Manifest b/games-puzzle/hexalate/Manifest
18 index 67aaaa49596..0295e578376 100644
19 --- a/games-puzzle/hexalate/Manifest
20 +++ b/games-puzzle/hexalate/Manifest
21 @@ -1 +1,2 @@
22 DIST hexalate-1.1.3-src.tar.bz2 798580 BLAKE2B 685a5fb106b9e4e33d63651059bc63b155c4b1afc1426506f8535b93c54bda1cbf8705244790fe130fe92e82bb6b7d9710c3aa8f245f0d578ddf09fa1e51551d SHA512 037dec9bb7b9dbc3cf3659e765c6e333dbbd0a94426e0b79c20695cf402cffb141c28c9ece4405281617dace7510b982180475c129648a871036be226e868bd6
23 +DIST hexalate-1.1.6-src.tar.bz2 794729 BLAKE2B bfa0a0483d58ba13764e778965fedf078af22394c2270119675d1ecd35c2fefc20cfc559f60cb58d7ce21d19be887ba4307d2bf0822aa2166a2d708e937466c5 SHA512 d34c1be6fb0950178a5c424f2461297b7086e4fd59209e009532cfd3bb5b0469f42c404dc244d69601dde7734174de6744aecda0297f66f6582cdbdee83fc13c
24
25 diff --git a/games-puzzle/hexalate/hexalate-1.1.6.ebuild b/games-puzzle/hexalate/hexalate-1.1.6.ebuild
26 new file mode 100644
27 index 00000000000..30006721ad4
28 --- /dev/null
29 +++ b/games-puzzle/hexalate/hexalate-1.1.6.ebuild
30 @@ -0,0 +1,41 @@
31 +# Copyright 1999-2020 Gentoo Authors
32 +# Distributed under the terms of the GNU General Public License v2
33 +
34 +EAPI=7
35 +
36 +inherit qmake-utils xdg-utils
37 +
38 +DESCRIPTION="A color matching game"
39 +HOMEPAGE="https://gottcode.org/hexalate/"
40 +SRC_URI="https://gottcode.org/${PN}/${P}-src.tar.bz2"
41 +
42 +LICENSE="GPL-3+"
43 +SLOT="0"
44 +KEYWORDS="~amd64 ~x86"
45 +IUSE=""
46 +
47 +BDEPEND="
48 + dev-qt/linguist-tools:5
49 +"
50 +RDEPEND="
51 + dev-qt/qtcore:5
52 + dev-qt/qtgui:5
53 + dev-qt/qtwidgets:5
54 +"
55 +DEPEND="${RDEPEND}"
56 +
57 +src_configure() {
58 + eqmake5 PREFIX="/usr"
59 +}
60 +
61 +src_install() {
62 + emake INSTALL_ROOT="${D}" install
63 +}
64 +
65 +pkg_postinst() {
66 + xdg_icon_cache_update
67 +}
68 +
69 +pkg_postrm() {
70 + xdg_icon_cache_update
71 +}