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 BCE8B138334 for ; Sun, 7 Jul 2019 15:56:08 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id CE3B7E07D7; Sun, 7 Jul 2019 15:56:07 +0000 (UTC) Received: from smtp.gentoo.org (woodpecker.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (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 B6AC6E07D7 for ; Sun, 7 Jul 2019 15:56:07 +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 02D7434730B for ; Sun, 7 Jul 2019 15:56:06 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 6EF0D6DB for ; Sun, 7 Jul 2019 15:56:03 +0000 (UTC) From: "Andreas Sturmlechner" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Andreas Sturmlechner" Message-ID: <1562514662.670fb5a86b723f13b393e6014a30cd6485bdd7c6.asturm@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/metadata.xml sys-apps/xdg-desktop-portal/xdg-desktop-portal-1.4.2.ebuild X-VCS-Directories: sys-apps/xdg-desktop-portal/ X-VCS-Committer: asturm X-VCS-Committer-Name: Andreas Sturmlechner X-VCS-Revision: 670fb5a86b723f13b393e6014a30cd6485bdd7c6 X-VCS-Branch: master Date: Sun, 7 Jul 2019 15:56:03 +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: 14fb2fba-75f8-439f-aa92-00500b9b2429 X-Archives-Hash: 9a8df33fbf2bb6fc9de19405c0bad1a4 commit: 670fb5a86b723f13b393e6014a30cd6485bdd7c6 Author: Andreas Sturmlechner gentoo org> AuthorDate: Sun Jul 7 15:18:45 2019 +0000 Commit: Andreas Sturmlechner gentoo org> CommitDate: Sun Jul 7 15:51:02 2019 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=670fb5a8 sys-apps/xdg-desktop-portal: Add USE screencast Bug: https://bugs.gentoo.org/686336 Package-Manager: Portage-2.3.68, Repoman-2.3.16 Signed-off-by: Andreas Sturmlechner gentoo.org> sys-apps/xdg-desktop-portal/metadata.xml | 3 +++ sys-apps/xdg-desktop-portal/xdg-desktop-portal-1.4.2.ebuild | 5 +++-- 2 files changed, 6 insertions(+), 2 deletions(-) diff --git a/sys-apps/xdg-desktop-portal/metadata.xml b/sys-apps/xdg-desktop-portal/metadata.xml index 2fdbf33d963..bcfc8e0c39c 100644 --- a/sys-apps/xdg-desktop-portal/metadata.xml +++ b/sys-apps/xdg-desktop-portal/metadata.xml @@ -5,4 +5,7 @@ kde@gentoo.org Gentoo KDE Project + + Enable screencast portal using media-video/pipewire + diff --git a/sys-apps/xdg-desktop-portal/xdg-desktop-portal-1.4.2.ebuild b/sys-apps/xdg-desktop-portal/xdg-desktop-portal-1.4.2.ebuild index 2ae2d2c52ca..525888c0979 100644 --- a/sys-apps/xdg-desktop-portal/xdg-desktop-portal-1.4.2.ebuild +++ b/sys-apps/xdg-desktop-portal/xdg-desktop-portal-1.4.2.ebuild @@ -12,7 +12,7 @@ SRC_URI="https://github.com/flatpak/${PN}/releases/download/${PV}/${P}.tar.xz" LICENSE="LGPL-2.1" SLOT="0" KEYWORDS="~amd64 ~arm ~arm64 ~x86" -IUSE="doc geolocation" +IUSE="doc geolocation screencast" BDEPEND=" dev-util/gdbus-codegen @@ -27,15 +27,16 @@ DEPEND=" dev-libs/glib:2[dbus] sys-fs/fuse:0 geolocation? ( >=app-misc/geoclue-2.5.3:2.0 ) + screencast? ( media-video/pipewire ) " RDEPEND="${DEPEND}" src_configure() { local myeconfargs=( - --disable-pipewire --with-systemduserunitdir="$(systemd_get_userunitdir)" $(use_enable doc docbook-docs) $(use_enable geolocation geoclue) + $(use_enable screencast pipewire) ) econf "${myeconfargs[@]}" }