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 BDE4F138334 for ; Sun, 16 Dec 2018 21:28:55 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 91550E0AFA; Sun, 16 Dec 2018 21:28:54 +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 689C0E0AFA for ; Sun, 16 Dec 2018 21:28:54 +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 AB5EE335C38 for ; Sun, 16 Dec 2018 21:28:52 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 88811266 for ; Sun, 16 Dec 2018 21:28:50 +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: <1544995159.da83d3b1c740e1defa65a70c870ca6d550ad20b0.asturm@gentoo> Subject: [gentoo-commits] proj/kde:master commit in: x11-misc/xdg-desktop-portal/ X-VCS-Repository: proj/kde X-VCS-Files: x11-misc/xdg-desktop-portal/metadata.xml x11-misc/xdg-desktop-portal/xdg-desktop-portal-1.0.3.ebuild X-VCS-Directories: x11-misc/xdg-desktop-portal/ X-VCS-Committer: asturm X-VCS-Committer-Name: Andreas Sturmlechner X-VCS-Revision: da83d3b1c740e1defa65a70c870ca6d550ad20b0 X-VCS-Branch: master Date: Sun, 16 Dec 2018 21:28:50 +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: f72d0f0e-b092-4d26-9c97-a262e4d5a86c X-Archives-Hash: 08d6c48a7d46b081096079196d27f65a commit: da83d3b1c740e1defa65a70c870ca6d550ad20b0 Author: Andreas Sturmlechner gentoo org> AuthorDate: Sun Dec 16 21:14:49 2018 +0000 Commit: Andreas Sturmlechner gentoo org> CommitDate: Sun Dec 16 21:19:19 2018 +0000 URL: https://gitweb.gentoo.org/proj/kde.git/commit/?id=da83d3b1 x11-misc/xdg-desktop-portal: New package Package-Manager: Portage-2.3.52, Repoman-2.3.12 Signed-off-by: Andreas Sturmlechner gentoo.org> x11-misc/xdg-desktop-portal/metadata.xml | 8 +++++ .../xdg-desktop-portal-1.0.3.ebuild | 39 ++++++++++++++++++++++ 2 files changed, 47 insertions(+) diff --git a/x11-misc/xdg-desktop-portal/metadata.xml b/x11-misc/xdg-desktop-portal/metadata.xml new file mode 100644 index 0000000000..2fdbf33d96 --- /dev/null +++ b/x11-misc/xdg-desktop-portal/metadata.xml @@ -0,0 +1,8 @@ + + + + + kde@gentoo.org + Gentoo KDE Project + + diff --git a/x11-misc/xdg-desktop-portal/xdg-desktop-portal-1.0.3.ebuild b/x11-misc/xdg-desktop-portal/xdg-desktop-portal-1.0.3.ebuild new file mode 100644 index 0000000000..b65056f5a4 --- /dev/null +++ b/x11-misc/xdg-desktop-portal/xdg-desktop-portal-1.0.3.ebuild @@ -0,0 +1,39 @@ +# Copyright 1999-2018 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 + +inherit systemd + +DESCRIPTION="Desktop integration portal" +HOMEPAGE="https://flatpak.org/ https://github.com/flatpak/xdg-desktop-portal" +SRC_URI="https://github.com/flatpak/${PN}/releases/download/${PV}/${P}.tar.xz" + +LICENSE="LGPL-2.1" +SLOT="0" +KEYWORDS="~amd64 ~x86" +IUSE="doc" + +RDEPEND=" + dev-libs/glib:2[dbus] + sys-fs/fuse +" +DEPEND="${RDEPEND}" +BDEPEND=" + dev-util/gdbus-codegen + sys-devel/gettext + virtual/pkgconfig + doc? ( + app-text/xmlto + app-text/docbook-xml-dtd:4.3 + ) +" + +src_configure() { + local myeconfargs=( + --disable-pipewire + $(use_enable doc docbook-docs) + --with-systemduserunitdir="$(systemd_get_userunitdir)" + ) + econf "${myeconfargs[@]}" +}