commit: 6ea5f6857e7304949efee5844e7751941f9dd893 Author: Filip Kobierski <fkobi <AT> pm <DOT> me> AuthorDate: Thu Jun 26 21:12:53 2025 +0000 Commit: Ben Kohler <bkohler <AT> gentoo <DOT> org> CommitDate: Mon Jun 30 12:44:05 2025 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=6ea5f685
net-dialup/cutecom: improve current ebuild - bump EAPI - remove leading "A " from DESCRIPTION - add qtbase USE deps - drop noop sed - drop noop domenu Signed-off-by: Filip Kobierski <fkobi <AT> pm.me> Part-of: https://github.com/gentoo/gentoo/pull/42768 Closes: https://github.com/gentoo/gentoo/pull/42768 Signed-off-by: Ben Kohler <bkohler <AT> gentoo.org> net-dialup/cutecom/cutecom-0.60.0_rc1-r1.ebuild | 28 +++++++++++++++++++++++++ 1 file changed, 28 insertions(+) diff --git a/net-dialup/cutecom/cutecom-0.60.0_rc1-r1.ebuild b/net-dialup/cutecom/cutecom-0.60.0_rc1-r1.ebuild new file mode 100644 index 000000000000..b7a7586a1e85 --- /dev/null +++ b/net-dialup/cutecom/cutecom-0.60.0_rc1-r1.ebuild @@ -0,0 +1,28 @@ +# Copyright 1999-2025 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +inherit cmake desktop xdg + +MY_PV=${PV/_rc/-RC} + +DESCRIPTION="Serial terminal, like minicom, written in Qt" +HOMEPAGE="https://gitlab.com/cutecom/cutecom" +SRC_URI="https://gitlab.com/cutecom/cutecom/-/archive/v${MY_PV}/cutecom-v${MY_PV}.tar.bz2" +S="${WORKDIR}/cutecom-v${MY_PV}" + +LICENSE="GPL-3+" +SLOT="0" +KEYWORDS="~amd64 ~arm64 ~x86" + +DEPEND=" + dev-qt/qtbase:6[gui,network,widgets] + dev-qt/qtserialport:6" +RDEPEND="${DEPEND} + net-dialup/lrzsz" + +src_install() { + cmake_src_install + doicon "distribution/${PN}.png" +}
