commit: 09e1c0947edbec621b14b8bf5196345e327af2c0 Author: Jimi Huotari <chiitoo <AT> gentoo <DOT> org> AuthorDate: Thu Apr 24 18:28:53 2025 +0000 Commit: Jimi Huotari <chiitoo <AT> gentoo <DOT> org> CommitDate: Thu Apr 24 21:33:10 2025 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=09e1c094
x11-terms/qterminal: add 2.2.0 Signed-off-by: Jimi Huotari <chiitoo <AT> gentoo.org> x11-terms/qterminal/Manifest | 1 + x11-terms/qterminal/qterminal-2.2.0.ebuild | 39 ++++++++++++++++++++++++++++++ 2 files changed, 40 insertions(+) diff --git a/x11-terms/qterminal/Manifest b/x11-terms/qterminal/Manifest index 1977ecc7bc6f..8b952e4ee21d 100644 --- a/x11-terms/qterminal/Manifest +++ b/x11-terms/qterminal/Manifest @@ -1,2 +1,3 @@ DIST qterminal-2.0.1.tar.xz 229556 BLAKE2B f6afe5f7a1a169d17e52bed372f760ee9112ca533c1cb0e8adf5b659739f459f0764a723934bdaba629fec94617ec67f157252dc83982fadb7fd58ae66503955 SHA512 5587e52edf9cc2227584e8eebe742414d566b51dc1647b643d9af6710adbe38e5d84634e7ea073fcb71397e1de0fccb5ca1af544b629685d36b645da5dd80c3d DIST qterminal-2.1.0.tar.xz 231468 BLAKE2B 0aa3e0a79ad9e89071c820166adf7e53bd4c27a0528399e158628f44ac7f37d1f3d105bff8746c9d105d740a8c3371e79eb3331b64531fc2b247669dc763a4a3 SHA512 3787bb8269a4b06c8c42d0c1c5e900a85e868e36e415f4ae05bbcb1fde3cbdf88a2ada7a86dd39a4a07305586fcb19e2ab04182bdd9f7f10dbf6cd4fd1194f22 +DIST qterminal-2.2.0.tar.xz 241148 BLAKE2B 0cf897a181acaf31c3661fb99273f8926cad19a08cd00a3b201d6ad6d92214e0c3e371aca95b68a30051814aea0193f35b5d168711968e0a87153ee868ef6205 SHA512 cc9b9d1b71cd34e0ceb6fb286d73b5783c9832b2e07cef5bf00567977bdc9611d52ad72b80f08c1529b71ed78fb133409fa60f3b726ad2ceb3f4707ebbabb680 diff --git a/x11-terms/qterminal/qterminal-2.2.0.ebuild b/x11-terms/qterminal/qterminal-2.2.0.ebuild new file mode 100644 index 000000000000..eb559bbb23ef --- /dev/null +++ b/x11-terms/qterminal/qterminal-2.2.0.ebuild @@ -0,0 +1,39 @@ +# Copyright 1999-2025 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +inherit cmake xdg + +DESCRIPTION="Qt-based multitab terminal emulator" +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 ~arm64 ~ppc64 ~riscv ~x86" +fi + +LICENSE="GPL-2 GPL-2+" +SLOT="0" +IUSE="test" +RESTRICT="!test? ( test )" + +BDEPEND=">=dev-util/lxqt-build-tools-2.2.0" +DEPEND=" + >=dev-qt/qtbase-6.6:6=[dbus,gui,widgets,X] + kde-plasma/layer-shell-qt:6 + x11-libs/libX11 + ~x11-libs/qtermwidget-${PV}:= +" +RDEPEND="${DEPEND}" + +src_configure() { + local mycmakeargs=( + -DBUILD_TESTS=$(usex test) + ) + + cmake_src_configure +}
