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 02786138335 for ; Mon, 18 Feb 2019 19:00:35 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id DBBE2E084A; Mon, 18 Feb 2019 19:00:34 +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 AE33CE084E for ; Mon, 18 Feb 2019 19:00:34 +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 7858C335CEC for ; Mon, 18 Feb 2019 19:00:33 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 8DD67549 for ; Mon, 18 Feb 2019 19:00:31 +0000 (UTC) From: "Mart Raudsepp" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Mart Raudsepp" Message-ID: <1550516265.0ee749d80b80e8521fc35edca3fc1ce92d9c6d5e.leio@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: app-accessibility/at-spi2-core/ X-VCS-Repository: repo/gentoo X-VCS-Files: app-accessibility/at-spi2-core/at-spi2-core-2.30.0.ebuild X-VCS-Directories: app-accessibility/at-spi2-core/ X-VCS-Committer: leio X-VCS-Committer-Name: Mart Raudsepp X-VCS-Revision: 0ee749d80b80e8521fc35edca3fc1ce92d9c6d5e X-VCS-Branch: master Date: Mon, 18 Feb 2019 19:00:31 +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: c2f3795d-204e-4db7-8141-225aebd2d046 X-Archives-Hash: 64cb454d2d68267abce5659fac05ba1c commit: 0ee749d80b80e8521fc35edca3fc1ce92d9c6d5e Author: Mart Raudsepp gentoo org> AuthorDate: Mon Feb 18 18:08:59 2019 +0000 Commit: Mart Raudsepp gentoo org> CommitDate: Mon Feb 18 18:57:45 2019 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=0ee749d8 app-accessibility/at-spi2-core-2.30.0: fixes systemd_get_userunitdir needs to be used for systemd user service files. Add missing glib-utils and docbook-xml-dtd deps. We need to clear or set up XDG vars for introspection build to not fail for some people. Package-Manager: Portage-2.3.52, Repoman-2.3.12 Signed-off-by: Mart Raudsepp gentoo.org> app-accessibility/at-spi2-core/at-spi2-core-2.30.0.ebuild | 10 +++++++--- 1 file changed, 7 insertions(+), 3 deletions(-) diff --git a/app-accessibility/at-spi2-core/at-spi2-core-2.30.0.ebuild b/app-accessibility/at-spi2-core/at-spi2-core-2.30.0.ebuild index 1e699cd04fa..2da4d835772 100644 --- a/app-accessibility/at-spi2-core/at-spi2-core-2.30.0.ebuild +++ b/app-accessibility/at-spi2-core/at-spi2-core-2.30.0.ebuild @@ -3,7 +3,7 @@ EAPI=6 -inherit gnome.org meson multilib-minimal virtualx +inherit gnome.org meson multilib-minimal systemd virtualx xdg DESCRIPTION="D-Bus accessibility specifications and registration daemon" HOMEPAGE="https://wiki.gnome.org/Accessibility" @@ -14,8 +14,8 @@ IUSE="X gtk-doc +introspection" KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~sparc ~x86 ~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux ~x64-macos ~x86-macos" RDEPEND=" - >=dev-libs/glib-2.36:2[${MULTILIB_USEDEP}] >=sys-apps/dbus-1.5[${MULTILIB_USEDEP}] + >=dev-libs/glib-2.36:2[${MULTILIB_USEDEP}] introspection? ( >=dev-libs/gobject-introspection-1.54.0:= ) X? ( x11-libs/libX11[${MULTILIB_USEDEP}] @@ -24,7 +24,10 @@ RDEPEND=" ) " DEPEND="${RDEPEND} - gtk-doc? ( >=dev-util/gtk-doc-1.25 ) + dev-util/glib-utils + gtk-doc? ( + >=dev-util/gtk-doc-1.25 + app-text/docbook-xml-dtd:4.3 ) >=sys-devel/gettext-0.19.8 virtual/pkgconfig[${MULTILIB_USEDEP}] " @@ -39,6 +42,7 @@ multilib_src_configure() { -Denable_docs=$(multilib_native_usex gtk-doc true false) -Denable-introspection=$(multilib_native_usex introspection) -Denable-x11=$(usex X) + -Dsystemd_user_dir="$(systemd_get_userunitdir)" ) meson_src_configure }