From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 01994138334 for ; Sat, 1 Dec 2018 17:41:38 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id B5DFFE096E; Sat, 1 Dec 2018 17:41:37 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 8879EE096F for ; Sat, 1 Dec 2018 17:41:37 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id D47FA335C58 for ; Sat, 1 Dec 2018 17:41:35 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 4D6C04E9 for ; Sat, 1 Dec 2018 17:41:34 +0000 (UTC) From: "Gilles Dartiguelongue" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Gilles Dartiguelongue" Message-ID: <1543686089.6444288f48dbeb3b986e20ca3a0f4fd834b6b59f.eva@gentoo> Subject: [gentoo-commits] proj/gnome:master commit in: sci-geosciences/geocode-glib/ X-VCS-Repository: proj/gnome X-VCS-Files: sci-geosciences/geocode-glib/geocode-glib-3.26.0-r1.ebuild X-VCS-Directories: sci-geosciences/geocode-glib/ X-VCS-Committer: eva X-VCS-Committer-Name: Gilles Dartiguelongue X-VCS-Revision: 6444288f48dbeb3b986e20ca3a0f4fd834b6b59f X-VCS-Branch: master Date: Sat, 1 Dec 2018 17:41:34 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply X-Archives-Salt: 5fce0d20-f5a2-49ac-abef-2968da11a2df X-Archives-Hash: c391c198cd9f5f246aa7552e700bedd7 commit: 6444288f48dbeb3b986e20ca3a0f4fd834b6b59f Author: Gilles Dartiguelongue gentoo org> AuthorDate: Sat Dec 1 17:40:07 2018 +0000 Commit: Gilles Dartiguelongue gentoo org> CommitDate: Sat Dec 1 17:41:29 2018 +0000 URL: https://gitweb.gentoo.org/proj/gnome.git/commit/?id=6444288f sci-geosciences/geocode-glib: use gtk-doc instead of doc USE flag As discussed on gentoo-dev mailing list, this is now the standard for gtk-doc documentation. Message-ID: <1535141206.6451.19.camel gentoo.org> Subject: [gentoo-dev] [RFC] New global USE flag: gtk-doc Package-Manager: Portage-2.3.52, Repoman-2.3.12 Manifest-Sign-Key: 0x5A56C8CD0C13248A Signed-off-by: Gilles Dartiguelongue gentoo.org> sci-geosciences/geocode-glib/geocode-glib-3.26.0-r1.ebuild | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) 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 index 192e56f0..1503d5d1 100644 --- a/sci-geosciences/geocode-glib/geocode-glib-3.26.0-r1.ebuild +++ b/sci-geosciences/geocode-glib/geocode-glib-3.26.0-r1.ebuild @@ -10,7 +10,7 @@ HOMEPAGE="https://git.gnome.org/browse/geocode-glib" LICENSE="LGPL-2" SLOT="0" KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~ia64 ~ppc ~ppc64 ~sparc ~x86" -IUSE="+introspection test" +IUSE="gtk-doc +introspection test" RDEPEND=" >=dev-libs/glib-2.44:2 @@ -20,9 +20,9 @@ RDEPEND=" introspection? ( >=dev-libs/gobject-introspection-0.6.3:= ) " DEPEND="${RDEPEND} - dev-util/gtk-doc >=sys-devel/gettext-0.19.6 virtual/pkgconfig + gtk-doc? ( dev-util/gtk-doc ) test? ( sys-apps/dbus ) " @@ -34,8 +34,8 @@ src_configure() { local emesonargs=( $(meson_use test enable-installed-tests) $(meson_use introspection enable-introspection) - "-Denable-gtk-doc=true" - ) + $(meson_use gtk-doc enable-gtk-doc) + ) meson_src_configure }