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.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (2048 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 7CEA0158089 for ; Fri, 22 Sep 2023 17:16:33 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id BE7F42BC031; Fri, 22 Sep 2023 17:16:32 +0000 (UTC) Received: from smtp.gentoo.org (woodpecker.gentoo.org [140.211.166.183]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id A50EA2BC031 for ; Fri, 22 Sep 2023 17:16:32 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 7A30D33BF3C for ; Fri, 22 Sep 2023 17:16:31 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id BB32D123F for ; Fri, 22 Sep 2023 17:16:29 +0000 (UTC) From: "Sam James" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Sam James" Message-ID: <1695402980.315fabb225eb4b94f96bfaf5767ebdd1cf685880.sam@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: sys-apps/xdg-desktop-portal/ X-VCS-Repository: repo/gentoo X-VCS-Files: sys-apps/xdg-desktop-portal/xdg-desktop-portal-1.18.0-r1.ebuild X-VCS-Directories: sys-apps/xdg-desktop-portal/ X-VCS-Committer: sam X-VCS-Committer-Name: Sam James X-VCS-Revision: 315fabb225eb4b94f96bfaf5767ebdd1cf685880 X-VCS-Branch: master Date: Fri, 22 Sep 2023 17:16:29 +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: 82448436-50c9-4877-a733-80499fd4368b X-Archives-Hash: 97021cb6dd586547c376a74d45c75e96 commit: 315fabb225eb4b94f96bfaf5767ebdd1cf685880 Author: Sam James gentoo org> AuthorDate: Fri Sep 22 17:16:20 2023 +0000 Commit: Sam James gentoo org> CommitDate: Fri Sep 22 17:16:20 2023 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=315fabb2 sys-apps/xdg-desktop-portal: fix install w/o flatpak Signed-off-by: Sam James gentoo.org> sys-apps/xdg-desktop-portal/xdg-desktop-portal-1.18.0-r1.ebuild | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/sys-apps/xdg-desktop-portal/xdg-desktop-portal-1.18.0-r1.ebuild b/sys-apps/xdg-desktop-portal/xdg-desktop-portal-1.18.0-r1.ebuild index 6f4fd2a04167..70f000d184f0 100644 --- a/sys-apps/xdg-desktop-portal/xdg-desktop-portal-1.18.0-r1.ebuild +++ b/sys-apps/xdg-desktop-portal/xdg-desktop-portal-1.18.0-r1.ebuild @@ -73,7 +73,6 @@ python_check_deps() { src_configure() { local emesonargs=( -Ddbus-service-dir="${EPREFIX}/usr/share/dbus-1/services" - -Dflatpak-interfaces-dir="${EPREFIX}/usr/share/dbus-1/interfaces" -Dsystemd-user-unit-dir="$(systemd_get_userunitdir)" $(meson_feature flatpak) # Only used for tests @@ -90,6 +89,8 @@ src_configure() { $(meson_feature test pytest) ) + use flatpak && emesonargs+=( -Dflatpak-interfaces-dir="${EPREFIX}/usr/share/dbus-1/interfaces" ) + meson_src_configure }