mirror of
https://github.com/gentoo-mirror/guru.git
synced 2025-04-19 15:59:00 -04:00
Closes: https://bugs.gentoo.org/937378 Signed-off-by: Takuya Wakazono <pastalian46@gmail.com>
32 lines
697 B
Bash
32 lines
697 B
Bash
# Copyright 1999-2024 Gentoo Authors
|
|
# Distributed under the terms of the GNU General Public License v2
|
|
|
|
EAPI=8
|
|
|
|
inherit xdg cmake
|
|
|
|
DESCRIPTION="A terminal emulator for C Suite"
|
|
HOMEPAGE="https://gitlab.com/cubocore/coreapps/coreterminal"
|
|
|
|
if [[ "${PV}" == *9999* ]]; then
|
|
inherit git-r3
|
|
EGIT_REPO_URI="https://gitlab.com/cubocore/coreapps/coreterminal.git"
|
|
else
|
|
SRC_URI="https://gitlab.com/cubocore/coreapps/coreterminal/-/archive/v${PV}/${PN}-v${PV}.tar.bz2"
|
|
KEYWORDS="~amd64"
|
|
S="${WORKDIR}/${PN}-v${PV}"
|
|
fi
|
|
|
|
LICENSE="GPL-3+"
|
|
SLOT="0"
|
|
|
|
DEPEND="
|
|
dev-qt/qtcore:5
|
|
dev-qt/qtgui:5
|
|
dev-qt/qtserialport:5
|
|
dev-qt/qtwidgets:5
|
|
gui-libs/libcprime
|
|
<x11-libs/qtermwidget-2:=
|
|
"
|
|
RDEPEND="${DEPEND}"
|