Gentoo Archives: gentoo-commits

From: Matt Turner <mattst88@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: gui-libs/amtk/
Date: Tue, 03 May 2022 13:48:05
Message-Id: 1651585674.236f74118594c2faaa37db65b2933d9dea6e9a20.mattst88@gentoo
1 commit: 236f74118594c2faaa37db65b2933d9dea6e9a20
2 Author: Matt Turner <mattst88 <AT> gentoo <DOT> org>
3 AuthorDate: Tue May 3 13:33:38 2022 +0000
4 Commit: Matt Turner <mattst88 <AT> gentoo <DOT> org>
5 CommitDate: Tue May 3 13:47:54 2022 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=236f7411
7
8 gui-libs/amtk: Version bump to 5.4.0
9
10 Signed-off-by: Matt Turner <mattst88 <AT> gentoo.org>
11
12 gui-libs/amtk/Manifest | 1 +
13 gui-libs/amtk/amtk-5.4.0.ebuild | 38 ++++++++++++++++++++++++++++++++++++++
14 2 files changed, 39 insertions(+)
15
16 diff --git a/gui-libs/amtk/Manifest b/gui-libs/amtk/Manifest
17 index d51054cea390..e4650298f51a 100644
18 --- a/gui-libs/amtk/Manifest
19 +++ b/gui-libs/amtk/Manifest
20 @@ -1 +1,2 @@
21 DIST amtk-5.2.0.tar.xz 381328 BLAKE2B b97a4b27d33bf49a97d585ecbecad04c3f2ea4e08e378d02218be5bf4aed2fe26f260ed1fd1eaa09a5b9f0e30e49901ddf860087fc630794aaa25ecda353b118 SHA512 520c9e762bdef96907320ec8dd4d3a005f262064ee402527c1087652af91c61657868189be8aedb7c0bd17758cf6d7e976da4ce941eb8a54e2d3e10ce55dc9eb
22 +DIST amtk-5.4.0.tar.xz 57144 BLAKE2B 835ffb28ffb448cc176e0d30b4bce6ab7a03c671a2a40d21aa10e3879140886460f1917c862d071d082d123382403cfa1dfd60db436b66e62c51c4855f7478f8 SHA512 2bfa3335b881f88d3da33fe3df5e599ed315844bd1ef956d7eb1b97620099aa2cfc2b47013c4ac4721f0c08c554ea87f3811c55bd0cb0a6a8b4a8ac30a115049
23
24 diff --git a/gui-libs/amtk/amtk-5.4.0.ebuild b/gui-libs/amtk/amtk-5.4.0.ebuild
25 new file mode 100644
26 index 000000000000..47069d63e4d7
27 --- /dev/null
28 +++ b/gui-libs/amtk/amtk-5.4.0.ebuild
29 @@ -0,0 +1,38 @@
30 +# Copyright 1999-2022 Gentoo Authors
31 +# Distributed under the terms of the GNU General Public License v2
32 +
33 +EAPI=8
34 +
35 +inherit gnome2 meson
36 +
37 +DESCRIPTION="Actions, Menus and Toolbars Kit for GTK+ applications"
38 +HOMEPAGE="https://wiki.gnome.org/Projects/Amtk https://gitlab.gnome.org/swilmet/amtk"
39 +
40 +LICENSE="LGPL-2.1+"
41 +SLOT="5"
42 +KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~ia64 ~ppc ~ppc64 ~riscv ~sparc ~x86"
43 +IUSE="+introspection gtk-doc"
44 +
45 +RDEPEND="
46 + >=dev-libs/glib-2.56:2
47 + >=x11-libs/gtk+-3.22:3
48 + introspection? ( >=dev-libs/gobject-introspection-1.42:= )
49 +"
50 +DEPEND="${RDEPEND}"
51 +BDEPEND="
52 + dev-util/glib-utils
53 + gtk-doc? (
54 + >=dev-util/gtk-doc-1.25
55 + app-text/docbook-xml-dtd:4.3
56 + )
57 + >=sys-devel/gettext-0.19.6
58 + virtual/pkgconfig
59 +"
60 +
61 +src_configure() {
62 + local emesonargs=(
63 + $(meson_use gtk-doc gtk_doc)
64 + $(meson_use introspection gobject_introspection)
65 + )
66 + meson_src_configure
67 +}