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 6D5B5138239 for ; Wed, 9 Jan 2019 22:59:56 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 308DDE0B2E; Wed, 9 Jan 2019 22:59:55 +0000 (UTC) Received: from smtp.gentoo.org (dev.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 082D1E0B2E for ; Wed, 9 Jan 2019 22:59: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 B0C91335D03 for ; Wed, 9 Jan 2019 22:59:52 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 2C7A4A8 for ; Wed, 9 Jan 2019 22:59:51 +0000 (UTC) From: "Jimi Huotari" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Jimi Huotari" Message-ID: <1547074283.d02583b11829e18ffbba099b2a6d805ce70a0e49.chiitoo@gentoo> Subject: [gentoo-commits] proj/qt:master commit in: lxqt-base/liblxqt/ X-VCS-Repository: proj/qt X-VCS-Files: lxqt-base/liblxqt/liblxqt-9999.ebuild X-VCS-Directories: lxqt-base/liblxqt/ X-VCS-Committer: chiitoo X-VCS-Committer-Name: Jimi Huotari X-VCS-Revision: d02583b11829e18ffbba099b2a6d805ce70a0e49 X-VCS-Branch: master Date: Wed, 9 Jan 2019 22:59:51 +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: e757507f-f933-46d9-a0c9-5a23ec89d935 X-Archives-Hash: cb3f8dc712b54c56f37dae3140373265 commit: d02583b11829e18ffbba099b2a6d805ce70a0e49 Author: Jimi Huotari gentoo org> AuthorDate: Wed Jan 9 22:51:23 2019 +0000 Commit: Jimi Huotari gentoo org> CommitDate: Wed Jan 9 22:51:23 2019 +0000 URL: https://gitweb.gentoo.org/proj/qt.git/commit/?id=d02583b1 lxqt-base/liblxqt: add 'ewarn' and make USE="policykit" the default This is to stress the fact that upstream indeed doesn't support such a build at this time. Package-Manager: Portage-2.3.54, Repoman-2.3.12 Signed-off-by: Jimi Huotari gentoo.org> lxqt-base/liblxqt/liblxqt-9999.ebuild | 11 +++++++++-- 1 file changed, 9 insertions(+), 2 deletions(-) diff --git a/lxqt-base/liblxqt/liblxqt-9999.ebuild b/lxqt-base/liblxqt/liblxqt-9999.ebuild index 589d9054..ed0e5b98 100644 --- a/lxqt-base/liblxqt/liblxqt-9999.ebuild +++ b/lxqt-base/liblxqt/liblxqt-9999.ebuild @@ -1,4 +1,4 @@ -# Copyright 1999-2018 Gentoo Authors +# Copyright 1999-2019 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI=6 @@ -18,7 +18,7 @@ fi LICENSE="LGPL-2.1+ BSD" SLOT="0/$(ver_cut 1-2)" -IUSE="policykit" +IUSE="+policykit" RDEPEND=" >=dev-libs/libqtxdg-3.0.0 @@ -48,3 +48,10 @@ src_configure() { ) cmake-utils_src_configure } + +pkg_postinst() { + if ! use policykit; then + ewarn "Please do not report issues caused by USE=\"-policykit\" to upstream," + ewarn "as they do not support such a build at this time." + fi +}