blob: 008e44a9e3107c3abce11699eb3fb036e33240a0 (
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
|
# Copyright 1999-2018 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
EAPI=6
WX_GTK_VER="3.0"
inherit cmake-utils wxwidgets
MY_P="CubicSDR"
SRC_URI="https://github.com/cjcliffe/${MY_P}/archive/${PV}.tar.gz"
S="${WORKDIR}/${MY_P}-${PV}"
DESCRIPTION="Cross-Platform and Open-Source Software Defined Radio Application"
HOMEPAGE="https://cubicsdr.com/"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~amd64 ~x86"
IUSE="alsa pulseaudio"
DEPEND="
net-libs/liquid-dsp
x11-libs/wxGTK:${WX_GTK_VER}[opengl]
net-wireless/soapysdr
virtual/opengl
alsa? ( media-libs/alsa-lib )
pulseaudio? ( media-sound/pulseaudio )
"
RDEPEND="${DEPEND}"
src_configure() {
setup-wxwidgets
local mycmakeargs=(
-DUSE_AUDIO_ALSA="$(usex alsa)"
-DUSE_AUDIO_PULSE="$(usex pulseaudio)"
)
cmake-utils_src_configure
}
|