41 lines
936 B
Bash
41 lines
936 B
Bash
# Copyright 1999-2018 Gentoo Authors
|
|
# Distributed under the terms of the GNU General Public License v2
|
|
|
|
EAPI=6
|
|
inherit cmake-utils vcs-snapshot
|
|
|
|
MY_P=${P/_/-}
|
|
|
|
DESCRIPTION="Weak signal ham radio communication"
|
|
HOMEPAGE="https://groups.io/g/js8call"
|
|
SRC_URI="https://bitbucket.org/widefido/js8call/get/v${PV}.tar.bz2 -> ${P}.tar.bz2"
|
|
|
|
LICENSE="GPL-3"
|
|
SLOT="0"
|
|
KEYWORDS="~amd64"
|
|
IUSE="doc"
|
|
|
|
PATCHES="${FILESDIR}/${PV}-makefile-removesymlink.patch"
|
|
|
|
RDEPEND="dev-qt/qtcore:5
|
|
dev-qt/qtgui:5
|
|
dev-qt/qtmultimedia:5
|
|
dev-qt/qtnetwork:5
|
|
dev-qt/qtwidgets:5
|
|
dev-qt/qtconcurrent:5
|
|
dev-qt/qtserialport:5
|
|
dev-qt/qtprintsupport:5
|
|
virtual/libusb:1
|
|
media-libs/portaudio
|
|
sci-libs/fftw:3.0[threads,fortran]
|
|
virtual/fortran
|
|
app-text/asciidoc
|
|
media-libs/hamlib
|
|
doc? ( dev-ruby/asciidoctor )"
|
|
DEPEND="${RDEPEND}"
|
|
|
|
src_install() {
|
|
cmake-utils_src_install
|
|
rm "${D}"/usr/bin/rigctl{,d}-local || die
|
|
rm "${D}"/usr/share/doc/JS8Call -R || die
|
|
}
|