Gentoo Archives: gentoo-commits

From: Andreas Sturmlechner <asturm@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: media-gfx/tintii/
Date: Tue, 09 Feb 2021 23:02:15
Message-Id: 1612911717.12b9ef3ed4ee0a8a3fe41fec2f501ccc55022530.asturm@gentoo
1 commit: 12b9ef3ed4ee0a8a3fe41fec2f501ccc55022530
2 Author: Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
3 AuthorDate: Tue Feb 9 22:58:14 2021 +0000
4 Commit: Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
5 CommitDate: Tue Feb 9 23:01:57 2021 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=12b9ef3e
7
8 media-gfx/tintii: Use wxGTK:3.0-gtk3, EAPI-7 bump, fix missing BDEPEND
9
10 Closes: https://bugs.gentoo.org/740004
11 Package-Manager: Portage-3.0.14, Repoman-3.0.2
12 Signed-off-by: Andreas Sturmlechner <asturm <AT> gentoo.org>
13
14 media-gfx/tintii/tintii-2.10.0-r1.ebuild | 28 ++++++++++++++++++++++++++++
15 1 file changed, 28 insertions(+)
16
17 diff --git a/media-gfx/tintii/tintii-2.10.0-r1.ebuild b/media-gfx/tintii/tintii-2.10.0-r1.ebuild
18 new file mode 100644
19 index 00000000000..b9a5dd6fbb4
20 --- /dev/null
21 +++ b/media-gfx/tintii/tintii-2.10.0-r1.ebuild
22 @@ -0,0 +1,28 @@
23 +# Copyright 1999-2021 Gentoo Authors
24 +# Distributed under the terms of the GNU General Public License v2
25 +
26 +EAPI=7
27 +
28 +WX_GTK_VER="3.0-gtk3"
29 +inherit desktop wxwidgets
30 +
31 +DESCRIPTION="Photo editor for selective color, saturation, and hue shift adjustments"
32 +HOMEPAGE="https://www.indii.org/software/tintii"
33 +SRC_URI="https://www.indii.org/files/tint/releases/${P}.tar.gz"
34 +
35 +LICENSE="GPL-2"
36 +SLOT="0"
37 +KEYWORDS="~amd64 ~x86"
38 +
39 +RDEPEND="
40 + x11-libs/wxGTK:${WX_GTK_VER}[X]
41 +"
42 +DEPEND="${RDEPEND}
43 + dev-libs/boost
44 +"
45 +BDEPEND="sys-devel/bc"
46 +
47 +src_prepare() {
48 + default
49 + setup-wxwidgets
50 +}