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-board/tetzle/
Date: Thu, 14 Feb 2019 23:06:53
Message-Id: 1550185592.64b60e7aed19589c06a8ec6e270f88a1310ecafb.asturm@gentoo
1 commit: 64b60e7aed19589c06a8ec6e270f88a1310ecafb
2 Author: Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
3 AuthorDate: Thu Feb 14 20:45:28 2019 +0000
4 Commit: Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
5 CommitDate: Thu Feb 14 23:06:32 2019 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=64b60e7a
7
8 games-board/tetzle: Switch from gnome2-utils to xdg, EAPI-7 bump
9
10 Package-Manager: Portage-2.3.60, Repoman-2.3.12
11 Signed-off-by: Andreas Sturmlechner <asturm <AT> gentoo.org>
12
13 games-board/tetzle/tetzle-2.1.3.ebuild | 29 +++++++++--------------------
14 1 file changed, 9 insertions(+), 20 deletions(-)
15
16 diff --git a/games-board/tetzle/tetzle-2.1.3.ebuild b/games-board/tetzle/tetzle-2.1.3.ebuild
17 index bc3518d35a8..dfd7e0638d6 100644
18 --- a/games-board/tetzle/tetzle-2.1.3.ebuild
19 +++ b/games-board/tetzle/tetzle-2.1.3.ebuild
20 @@ -1,11 +1,11 @@
21 -# Copyright 1999-2018 Gentoo Foundation
22 +# Copyright 1999-2019 Gentoo Authors
23 # Distributed under the terms of the GNU General Public License v2
24
25 -EAPI=6
26 +EAPI=7
27
28 -inherit gnome2-utils qmake-utils xdg-utils
29 +inherit qmake-utils xdg
30
31 -DESCRIPTION="A jigsaw puzzle game that uses tetrominoes for the pieces"
32 +DESCRIPTION="Jigsaw puzzle game that uses tetrominoes for the pieces"
33 HOMEPAGE="https://gottcode.org/tetzle/"
34 SRC_URI="https://gottcode.org/${PN}/${P}-src.tar.bz2"
35
36 @@ -14,14 +14,15 @@ SLOT="0"
37 KEYWORDS="~amd64 ~x86"
38 IUSE=""
39
40 -RDEPEND="
41 +BDEPEND="
42 + dev-qt/linguist-tools:5
43 +"
44 +DEPEND="
45 dev-qt/qtcore:5
46 dev-qt/qtgui:5
47 dev-qt/qtwidgets:5
48 "
49 -DEPEND="${RDEPEND}
50 - dev-qt/linguist-tools:5
51 -"
52 +RDEPEND="${DEPEND}"
53
54 PATCHES=( "${FILESDIR}"/${P}-gentoo.patch )
55
56 @@ -33,15 +34,3 @@ src_install(){
57 emake DESTDIR="${D}" INSTALL_ROOT="${ED}" install
58 einstalldocs
59 }
60 -
61 -pkg_postinst() {
62 - gnome2_icon_cache_update
63 - xdg_desktop_database_update
64 - xdg_mimeinfo_database_update
65 -}
66 -
67 -pkg_postrm() {
68 - gnome2_icon_cache_update
69 - xdg_desktop_database_update
70 - xdg_mimeinfo_database_update
71 -}