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 6A11F1382C5 for ; Thu, 22 Mar 2018 12:22:23 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 53845E0997; Thu, 22 Mar 2018 12:22:18 +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 285BDE0997 for ; Thu, 22 Mar 2018 12:22:18 +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 6E51B335C75 for ; Thu, 22 Mar 2018 12:22:16 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 4C78B270 for ; Thu, 22 Mar 2018 12:22:13 +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: <1521721004.11b0c540fe09a099d51ed0a63273d91a2c587e21.asturm@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: sys-auth/polkit-qt/ X-VCS-Repository: repo/gentoo X-VCS-Files: sys-auth/polkit-qt/polkit-qt-0.112.0_p20160416-r2.ebuild X-VCS-Directories: sys-auth/polkit-qt/ X-VCS-Committer: asturm X-VCS-Committer-Name: Andreas Sturmlechner X-VCS-Revision: 11b0c540fe09a099d51ed0a63273d91a2c587e21 X-VCS-Branch: master Date: Thu, 22 Mar 2018 12:22:13 +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-Archives-Salt: 50583cde-6be6-4b24-8e28-1a50ff20794e X-Archives-Hash: 39a67ef1efe6fe5f26757ca4c647721c commit: 11b0c540fe09a099d51ed0a63273d91a2c587e21 Author: Andreas Sturmlechner gentoo org> AuthorDate: Thu Mar 22 12:07:35 2018 +0000 Commit: Andreas Sturmlechner gentoo org> CommitDate: Thu Mar 22 12:16:44 2018 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=11b0c540 sys-auth/polkit-qt: Drop USE=qt4 and multibuild Package-Manager: Portage-2.3.24, Repoman-2.3.6 .../polkit-qt-0.112.0_p20160416-r2.ebuild | 41 ++++++++++++++++++++++ 1 file changed, 41 insertions(+) diff --git a/sys-auth/polkit-qt/polkit-qt-0.112.0_p20160416-r2.ebuild b/sys-auth/polkit-qt/polkit-qt-0.112.0_p20160416-r2.ebuild new file mode 100644 index 00000000000..e909e08a5bf --- /dev/null +++ b/sys-auth/polkit-qt/polkit-qt-0.112.0_p20160416-r2.ebuild @@ -0,0 +1,41 @@ +# Copyright 1999-2018 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 + +EAPI=6 + +MY_P="${P/qt/qt-1}" +inherit cmake-utils + +DESCRIPTION="PolicyKit Qt API wrapper library" +HOMEPAGE="https://api.kde.org/kdesupport-api/polkit-qt-1-apidocs/" +SRC_URI="https://dev.gentoo.org/~kensington/distfiles/${MY_P}.tar.xz" + +LICENSE="LGPL-2" +SLOT="0" +KEYWORDS="~amd64 ~arm ~arm64 ~ppc ~ppc64 ~x86 ~x86-fbsd" +IUSE="debug examples" + +RDEPEND=" + dev-libs/glib:2 + dev-qt/qtcore:5 + dev-qt/qtdbus:5 + dev-qt/qtgui:5 + dev-qt/qtwidgets:5 + >=sys-auth/polkit-0.103 + examples? ( dev-qt/qtxml:5 ) +" +DEPEND="${RDEPEND}" + +DOCS=( AUTHORS README README.porting TODO ) + +S=${WORKDIR}/${MY_P} + +src_configure() { + local mycmakeargs=( + -DBUILD_EXAMPLES=$(usex examples) + -DUSE_QT4=OFF + -DUSE_QT5=ON + ) + + cmake-utils_src_configure +}