Gentoo Archives: gentoo-commits

From: Gilles Dartiguelongue <eva@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] proj/gnome:master commit in: sci-geosciences/geocode-glib/
Date: Sat, 01 Dec 2018 17:41:38
Message-Id: 1543686089.6444288f48dbeb3b986e20ca3a0f4fd834b6b59f.eva@gentoo
1 commit: 6444288f48dbeb3b986e20ca3a0f4fd834b6b59f
2 Author: Gilles Dartiguelongue <eva <AT> gentoo <DOT> org>
3 AuthorDate: Sat Dec 1 17:40:07 2018 +0000
4 Commit: Gilles Dartiguelongue <eva <AT> gentoo <DOT> org>
5 CommitDate: Sat Dec 1 17:41:29 2018 +0000
6 URL: https://gitweb.gentoo.org/proj/gnome.git/commit/?id=6444288f
7
8 sci-geosciences/geocode-glib: use gtk-doc instead of doc USE flag
9
10 As discussed on gentoo-dev mailing list, this is now the standard for
11 gtk-doc documentation.
12
13 Message-ID: <1535141206.6451.19.camel <AT> gentoo.org>
14 Subject: [gentoo-dev] [RFC] New global USE flag: gtk-doc
15 Package-Manager: Portage-2.3.52, Repoman-2.3.12
16 Manifest-Sign-Key: 0x5A56C8CD0C13248A
17 Signed-off-by: Gilles Dartiguelongue <eva <AT> gentoo.org>
18
19 sci-geosciences/geocode-glib/geocode-glib-3.26.0-r1.ebuild | 8 ++++----
20 1 file changed, 4 insertions(+), 4 deletions(-)
21
22 diff --git a/sci-geosciences/geocode-glib/geocode-glib-3.26.0-r1.ebuild b/sci-geosciences/geocode-glib/geocode-glib-3.26.0-r1.ebuild
23 index 192e56f0..1503d5d1 100644
24 --- a/sci-geosciences/geocode-glib/geocode-glib-3.26.0-r1.ebuild
25 +++ b/sci-geosciences/geocode-glib/geocode-glib-3.26.0-r1.ebuild
26 @@ -10,7 +10,7 @@ HOMEPAGE="https://git.gnome.org/browse/geocode-glib"
27 LICENSE="LGPL-2"
28 SLOT="0"
29 KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~ia64 ~ppc ~ppc64 ~sparc ~x86"
30 -IUSE="+introspection test"
31 +IUSE="gtk-doc +introspection test"
32
33 RDEPEND="
34 >=dev-libs/glib-2.44:2
35 @@ -20,9 +20,9 @@ RDEPEND="
36 introspection? ( >=dev-libs/gobject-introspection-0.6.3:= )
37 "
38 DEPEND="${RDEPEND}
39 - dev-util/gtk-doc
40 >=sys-devel/gettext-0.19.6
41 virtual/pkgconfig
42 + gtk-doc? ( dev-util/gtk-doc )
43 test? ( sys-apps/dbus )
44 "
45
46 @@ -34,8 +34,8 @@ src_configure() {
47 local emesonargs=(
48 $(meson_use test enable-installed-tests)
49 $(meson_use introspection enable-introspection)
50 - "-Denable-gtk-doc=true"
51 - )
52 + $(meson_use gtk-doc enable-gtk-doc)
53 + )
54 meson_src_configure
55 }