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.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (2048 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 7992815817D for ; Sat, 15 Jun 2024 14:57:20 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id B72E4E2AD4; Sat, 15 Jun 2024 14:57:19 +0000 (UTC) Received: from smtp.gentoo.org (dev.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 9B9DEE2AD4 for ; Sat, 15 Jun 2024 14:57:19 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id E296D33BDE1 for ; Sat, 15 Jun 2024 14:57:18 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 7E3CA1886 for ; Sat, 15 Jun 2024 14:57:17 +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: <1718463416.5ad3c2a73980512b863ed379864ebb7a0207b9c0.chiitoo@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: lxqt-base/liblxqt/ X-VCS-Repository: repo/gentoo X-VCS-Files: lxqt-base/liblxqt/liblxqt-2.0.0-r1.ebuild X-VCS-Directories: lxqt-base/liblxqt/ X-VCS-Committer: chiitoo X-VCS-Committer-Name: Jimi Huotari X-VCS-Revision: 5ad3c2a73980512b863ed379864ebb7a0207b9c0 X-VCS-Branch: master Date: Sat, 15 Jun 2024 14:57:17 +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: c53ba147-e91e-4453-98ef-efa1e6b4a1a8 X-Archives-Hash: 6a4f19797db73dd3a8dc48b8d8d96268 commit: 5ad3c2a73980512b863ed379864ebb7a0207b9c0 Author: Jimi Huotari gentoo org> AuthorDate: Sat Jun 15 14:54:42 2024 +0000 Commit: Jimi Huotari gentoo org> CommitDate: Sat Jun 15 14:56:56 2024 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=5ad3c2a7 lxqt-base/liblxqt: add qt6 USE dependency on polkit-qt Closes: https://bugs.gentoo.org/934328 Signed-off-by: Jimi Huotari gentoo.org> lxqt-base/liblxqt/liblxqt-2.0.0-r1.ebuild | 43 +++++++++++++++++++++++++++++++ 1 file changed, 43 insertions(+) diff --git a/lxqt-base/liblxqt/liblxqt-2.0.0-r1.ebuild b/lxqt-base/liblxqt/liblxqt-2.0.0-r1.ebuild new file mode 100644 index 000000000000..d2b5f26ae54f --- /dev/null +++ b/lxqt-base/liblxqt/liblxqt-2.0.0-r1.ebuild @@ -0,0 +1,43 @@ +# Copyright 1999-2024 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +inherit cmake + +DESCRIPTION="Common base library for the LXQt desktop environment" +HOMEPAGE="https://lxqt-project.org/" + +if [[ ${PV} == 9999 ]]; then + inherit git-r3 + EGIT_REPO_URI="https://github.com/lxqt/${PN}.git" +else + SRC_URI="https://github.com/lxqt/${PN}/releases/download/${PV}/${P}.tar.xz" + KEYWORDS="~amd64" +fi + +LICENSE="LGPL-2.1+ BSD" +SLOT="0/$(ver_cut 1-2)" +IUSE="+backlight" + +BDEPEND=" + >=dev-qt/qttools-6.6:6[linguist] + >=dev-util/lxqt-build-tools-2.0.0 +" +DEPEND=" + >=dev-libs/libqtxdg-4.0.0 + >=dev-qt/qtbase-6.6:6[dbus,gui,widgets,xml] + kde-frameworks/kwindowsystem:6[X] + x11-libs/libX11 + x11-libs/libXScrnSaver + backlight? ( sys-auth/polkit-qt[qt6] ) +" +RDEPEND="${DEPEND}" + +src_configure() { + local mycmakeargs=( + -DBUILD_BACKLIGHT_LINUX_BACKEND=$(usex backlight) + ) + + cmake_src_configure +}