Gentoo Archives: gentoo-commits

From: Michael Palimaka <kensington@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: games-puzzle/hexalate/
Date: Thu, 03 Nov 2016 09:45:32
Message-Id: 1478166315.c3b5fdbac3576d4006528b98d327a9b1aff2db60.kensington@gentoo
1 commit: c3b5fdbac3576d4006528b98d327a9b1aff2db60
2 Author: Michael Palimaka <kensington <AT> gentoo <DOT> org>
3 AuthorDate: Thu Nov 3 09:45:05 2016 +0000
4 Commit: Michael Palimaka <kensington <AT> gentoo <DOT> org>
5 CommitDate: Thu Nov 3 09:45:15 2016 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c3b5fdba
7
8 games-puzzle/hexalate: version bump
9
10 Package-Manager: portage-2.3.2
11
12 games-puzzle/hexalate/Manifest | 1 +
13 games-puzzle/hexalate/hexalate-1.1.0.ebuild | 45 +++++++++++++++++++++++++++++
14 2 files changed, 46 insertions(+)
15
16 diff --git a/games-puzzle/hexalate/Manifest b/games-puzzle/hexalate/Manifest
17 index aa93bbb..2291644 100644
18 --- a/games-puzzle/hexalate/Manifest
19 +++ b/games-puzzle/hexalate/Manifest
20 @@ -1 +1,2 @@
21 DIST hexalate-1.0.3-src.tar.bz2 336589 SHA256 a391ba44aa0f5bd618385dbe17e059947b829b85315aecb19edd1c863b3ebe3c SHA512 582e41ef298788e73e4f39976dbf334fdb514518e53556b77bd2a7f49d82f66617e21ab5ff24a298313e529aa147e80703fe9eb40318d9b74673dd6fcf32d909 WHIRLPOOL 4ce78bf4cb37346b4722f647e4dbda4fe3c88138264b8ad758302152cc199d7374f0cfadb8497ad767aae678345910701bc30f12ef7eb1b0e691a1df73fc40bf
22 +DIST hexalate-1.1.0-src.tar.bz2 662438 SHA256 74a8f23b7164981dbe968daa004781646c9063f1e80b234b19166570da22349c SHA512 2f8775c9cb85ff78fb84109f78079013fa172a6b37b309e1cac033be4eb1c248a005a2e899eb785fbe1f89fd87a2035dae3e7016a26af6f3e82a7174dc010a64 WHIRLPOOL 758451c2e20a1f539f622b1638414127512650c5e1adf0314566c435be7385e19427b344cd68128d1e1e357c7e095b2d0f92a909bc122629edd473860b3dac1a
23
24 diff --git a/games-puzzle/hexalate/hexalate-1.1.0.ebuild b/games-puzzle/hexalate/hexalate-1.1.0.ebuild
25 new file mode 100644
26 index 00000000..bddff4e
27 --- /dev/null
28 +++ b/games-puzzle/hexalate/hexalate-1.1.0.ebuild
29 @@ -0,0 +1,45 @@
30 +# Copyright 1999-2016 Gentoo Foundation
31 +# Distributed under the terms of the GNU General Public License v2
32 +# $Id$
33 +
34 +EAPI=6
35 +
36 +inherit gnome2-utils qmake-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 +RDEPEND="
48 + dev-qt/qtcore:5
49 + dev-qt/qtgui:5
50 + dev-qt/qtwidgets:5
51 +"
52 +DEPEND="${RDEPEND}
53 + dev-qt/linguist-tools:5
54 +"
55 +
56 +src_configure() {
57 + eqmake5 PREFIX="/usr"
58 +}
59 +
60 +src_install() {
61 + emake INSTALL_ROOT="${D}" install
62 +}
63 +
64 +pkg_preinst() {
65 + gnome2_icon_savelist
66 +}
67 +
68 +pkg_postinst() {
69 + gnome2_icon_cache_update
70 +}
71 +
72 +pkg_postrm() {
73 + gnome2_icon_cache_update
74 +}