mirror of
https://anongit.gentoo.org/git/repo/gentoo.git
synced 2025-06-09 22:54:10 +02:00
38 lines
781 B
Bash
38 lines
781 B
Bash
# Copyright 1999-2024 Gentoo Authors
|
|
# Distributed under the terms of the GNU General Public License v2
|
|
|
|
EAPI=7
|
|
|
|
inherit cmake desktop xdg
|
|
|
|
MY_PV=${PV/_rc/-RC}
|
|
|
|
DESCRIPTION="A 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
|
|
dev-qt/qtserialport:6"
|
|
RDEPEND="${DEPEND}
|
|
net-dialup/lrzsz"
|
|
|
|
src_prepare() {
|
|
cmake_src_prepare
|
|
|
|
sed -i \
|
|
-e '/Path/d' \
|
|
-e '/Terminal/s/0/false/' \
|
|
"${PN}.desktop" || die 'sed on desktop file failed'
|
|
}
|
|
|
|
src_install() {
|
|
cmake_src_install
|
|
domenu "${PN}.desktop"
|
|
doicon "distribution/${PN}.png"
|
|
}
|