Gentoo Archives: gentoo-commits

From: Ionen Wolkens <ionen@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: games-puzzle/tanglet/
Date: Wed, 28 Jul 2021 22:04:23
Message-Id: 1627509569.2b0e3182b7897511cae59444723299092d5d9c2a.ionen@gentoo
1 commit: 2b0e3182b7897511cae59444723299092d5d9c2a
2 Author: Christophe Lermytte <gentoo <AT> lermytte <DOT> be>
3 AuthorDate: Mon Jul 26 21:09:45 2021 +0000
4 Commit: Ionen Wolkens <ionen <AT> gentoo <DOT> org>
5 CommitDate: Wed Jul 28 21:59:29 2021 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=2b0e3182
7
8 games-puzzle/tanglet: bump to 1.6.1.1 fixing build with >=qt*-5.14
9
10 Dropping the patch since
11
12 - the first part does not respect ${EPREFIX} and can be replaced with
13 an environment variable in the ebuild
14 - the other parts are obsolete
15
16 Closes: https://bugs.gentoo.org/704360
17 Closes: https://bugs.gentoo.org/804570
18 Signed-off-by: Christophe Lermytte <gentoo <AT> lermytte.be>
19 Closes: https://github.com/gentoo/gentoo/pull/21800
20 Signed-off-by: Ionen Wolkens <ionen <AT> gentoo.org>
21
22 games-puzzle/tanglet/Manifest | 1 +
23 games-puzzle/tanglet/tanglet-1.6.1.1.ebuild | 34 +++++++++++++++++++++++++++++
24 2 files changed, 35 insertions(+)
25
26 diff --git a/games-puzzle/tanglet/Manifest b/games-puzzle/tanglet/Manifest
27 index 69b5a4701bb..fa19be2e709 100644
28 --- a/games-puzzle/tanglet/Manifest
29 +++ b/games-puzzle/tanglet/Manifest
30 @@ -1 +1,2 @@
31 DIST tanglet-1.5.3-src.tar.bz2 8631208 BLAKE2B b7b0b913a1d862f43d4fb215a09aaba379bda95d75d3d2f59b207361efeda6573055f25db9d07d330fe0957ca774679589f87b79d0766ac669709da37d164f5f SHA512 31b7aada8b244969c2581a0879c30ca1a9b9db8e0cff5c802607dd08038af9487ba59db0e64fabb35feade9d5d700a2a1e04a0052d0ff4639c10a42189671267
32 +DIST tanglet-1.6.1.1-src.tar.bz2 25059666 BLAKE2B df363cf77863d3dcc77dee95aa1e4dcd20d16438f23e38286bbf5362fa9f8b17a28bc03dc480d6eaf44a443f4b7f977022b978a642d93c4f4c766b5cdd868728 SHA512 d65bc14f44ed1fa1ddae8f90c2aa62fb5d14ea964e36d544916856d9b6b93009509d4d8adf17fd4a45555732fb9b656f24661b2eec52a980bdb8f20512a38ff3
33
34 diff --git a/games-puzzle/tanglet/tanglet-1.6.1.1.ebuild b/games-puzzle/tanglet/tanglet-1.6.1.1.ebuild
35 new file mode 100644
36 index 00000000000..65f7fae8209
37 --- /dev/null
38 +++ b/games-puzzle/tanglet/tanglet-1.6.1.1.ebuild
39 @@ -0,0 +1,34 @@
40 +# Copyright 1999-2021 Gentoo Authors
41 +# Distributed under the terms of the GNU General Public License v2
42 +
43 +EAPI=7
44 +
45 +inherit qmake-utils xdg
46 +
47 +DESCRIPTION="Single player word finding game based on Boggle"
48 +HOMEPAGE="https://gottcode.org/tanglet/"
49 +SRC_URI="https://gottcode.org/tanglet/tanglet-1.6.1.1-src.tar.bz2"
50 +
51 +LICENSE="GPL-3"
52 +SLOT="0"
53 +KEYWORDS="~amd64 ~x86"
54 +
55 +BDEPEND="
56 + dev-qt/linguist-tools:5
57 +"
58 +DEPEND="
59 + dev-qt/qtcore:5
60 + dev-qt/qtgui:5
61 + dev-qt/qtwidgets:5
62 + sys-libs/zlib
63 +"
64 +RDEPEND="${DEPEND}"
65 +
66 +src_configure() {
67 + eqmake5 PREFIX="${EPREFIX}/usr" tanglet.pro
68 +}
69 +
70 +src_install() {
71 + emake INSTALL_ROOT="${D}" install
72 + einstalldocs
73 +}