mirror of
https://anongit.gentoo.org/git/repo/gentoo.git
synced 2025-07-26 00:45:46 +02:00
28 lines
639 B
Bash
28 lines
639 B
Bash
# Copyright 1999-2025 Gentoo Authors
|
|
# Distributed under the terms of the GNU General Public License v2
|
|
|
|
EAPI=8
|
|
inherit cmake
|
|
|
|
MY_P=${P/_/-}
|
|
|
|
DESCRIPTION="Weak signal ham radio communication"
|
|
HOMEPAGE="https://groups.io/g/js8call"
|
|
SRC_URI="https://github.com/${PN}/${PN}/archive/refs/tags/v${PV}.tar.gz -> ${P}.tar.gz"
|
|
|
|
LICENSE="GPL-3"
|
|
SLOT="0"
|
|
KEYWORDS="~amd64"
|
|
|
|
RDEPEND="dev-qt/qtbase:6[gui,network,widgets]
|
|
dev-qt/qtmultimedia:6
|
|
dev-qt/qtserialport:6
|
|
virtual/libusb:1
|
|
sci-libs/fftw:3.0=[threads,fortran]
|
|
>=media-libs/hamlib-4:= "
|
|
DEPEND="${RDEPEND}"
|
|
|
|
src_install() {
|
|
cmake_src_install
|
|
rm "${D}"/usr/bin/rigctl{,d}-local || die
|
|
}
|