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 6A0CF138334 for ; Sun, 17 Feb 2019 11:11:11 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id AFF46E09D8; Sun, 17 Feb 2019 11:11:08 +0000 (UTC) Received: from smtp.gentoo.org (smtp.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 879AEE09D8 for ; Sun, 17 Feb 2019 11:11:08 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (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 6AF6B335D15 for ; Sun, 17 Feb 2019 11:11:07 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 5346654B for ; Sun, 17 Feb 2019 11:11:04 +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: <1550401775.a7a03fdd41da7cdc8cde7d822676f5568480c9bb.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/xdg-desktop-portal-1.2.0.ebuild X-VCS-Directories: x11-misc/xdg-desktop-portal/ X-VCS-Committer: asturm X-VCS-Committer-Name: Andreas Sturmlechner X-VCS-Revision: a7a03fdd41da7cdc8cde7d822676f5568480c9bb X-VCS-Branch: master Date: Sun, 17 Feb 2019 11:11:04 +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: b5fe4043-042d-4a00-a350-0f0345a259ea X-Archives-Hash: f03dfb06fa7a438a15fbbe0ab23987f2 commit: a7a03fdd41da7cdc8cde7d822676f5568480c9bb Author: Andreas Sturmlechner gentoo org> AuthorDate: Sun Feb 17 10:40:50 2019 +0000 Commit: Andreas Sturmlechner gentoo org> CommitDate: Sun Feb 17 11:09:35 2019 +0000 URL: https://gitweb.gentoo.org/proj/kde.git/commit/?id=a7a03fdd x11-misc/xdg-desktop-portal: 1.2.0 version bump, add USE geoclue Package-Manager: Portage-2.3.60, Repoman-2.3.12 Signed-off-by: Andreas Sturmlechner gentoo.org> .../xdg-desktop-portal-1.2.0.ebuild | 47 ++++++++++++++++++++++ 1 file changed, 47 insertions(+) diff --git a/x11-misc/xdg-desktop-portal/xdg-desktop-portal-1.2.0.ebuild b/x11-misc/xdg-desktop-portal/xdg-desktop-portal-1.2.0.ebuild new file mode 100644 index 0000000000..90099e8c1c --- /dev/null +++ b/x11-misc/xdg-desktop-portal/xdg-desktop-portal-1.2.0.ebuild @@ -0,0 +1,47 @@ +# Copyright 1999-2019 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 + +inherit autotools 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 geolocation" + +BDEPEND=" + dev-util/gdbus-codegen + sys-devel/gettext + virtual/pkgconfig + doc? ( + app-text/xmlto + app-text/docbook-xml-dtd:4.3 + ) +" +DEPEND=" + dev-libs/glib:2[dbus] + sys-fs/fuse:0 + geolocation? ( app-misc/geoclue:2.0 ) +" +RDEPEND="${DEPEND}" + +src_prepare() { + default + sed -e "/^PKG_CHECK_MODULES(FLATPAK/s/^/# DONT /" -i configure.ac || die + eautoreconf +} + +src_configure() { + local myeconfargs=( + --disable-pipewire + --with-systemduserunitdir="$(systemd_get_userunitdir)" + $(use_enable doc docbook-docs) + $(use_enable geolocation geoclue) + ) + econf "${myeconfargs[@]}" +}