blob: 44bb4549164c5f92298f82ca6de06ce322ead7c0 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
|
# 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
dev-libs/boost:=
virtual/libusb:1
sci-libs/fftw:3.0=[threads,fortran]
>=media-libs/hamlib-4:= "
DEPEND="${RDEPEND}"
PATCHES=( "${FILESDIR}/${P}-qt692-audio.patch"
"${FILESDIR}/${P}-fix-logging-time.patch" )
src_install() {
cmake_src_install
rm "${D}"/usr/bin/rigctl{,d}-local || die
}
|