blob: ff4d8f5d08426fc573f304b34374e7db8599e7e9 (
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
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
|
# Copyright 1999-2021 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=7
inherit cmake
DESCRIPTION="Software defined radio receiver powered by GNU Radio and Qt"
HOMEPAGE="https://gqrx.dk/"
if [[ ${PV} == "9999" ]] ; then
EGIT_REPO_URI="https://github.com/csete/gqrx.git"
inherit git-r3
else
SRC_URI="https://github.com/csete/gqrx/archive/v${PV}.tar.gz -> ${P}.tar.gz"
KEYWORDS="~amd64 ~arm ~x86"
fi
LICENSE="GPL-3"
SLOT="0"
IUSE="gr-audio portaudio pulseaudio"
REQUIRED_USE="^^ ( pulseaudio portaudio gr-audio )"
DEPEND=">=net-wireless/gnuradio-3.7_rc:=[audio,analog,filter]
>=net-wireless/gr-osmosdr-0.1.0:=
dev-libs/boost:=
dev-libs/log4cpp:=
dev-qt/qtcore:5
dev-qt/qtgui:5
dev-qt/qtnetwork:5
dev-qt/qtsvg:5
dev-qt/qtwidgets:5
sci-libs/volk:=
pulseaudio? ( media-sound/pulseaudio:= )
portaudio? ( media-libs/portaudio:= )"
RDEPEND="${DEPEND}"
src_configure() {
if use pulseaudio; then
LINUX_AUDIO_BACKEND=Pulseaudio
elif use portaudio; then
LINUX_AUDIO_BACKEND=Portaudio
elif use gr-audio; then
LINUX_AUDIO_BACKEND=Gr-audio
fi
local mycmakeargs=(
"-DLINUX_AUDIO_BACKEND=${LINUX_AUDIO_BACKEND}"
)
cmake_src_configure
}
src_install() {
dobin "${BUILD_DIR}"/src/gqrx
}
|