summaryrefslogtreecommitdiff
blob: 358f0f747a2cf5e99e768dc74187a26dcb000f0e (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
# Copyright 1999-2018 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2

EAPI=6
WX_GTK_VER="3.0-gtk3"

inherit cmake-utils wxwidgets

if [ "${PV}" = "9999" ]; then
	EGIT_REPO_URI="https://github.com/cjcliffe/CubicSDR.git"
	KEYWORDS=""
	inherit git-r3
else
	MY_P="CubicSDR"
	SRC_URI="https://github.com/cjcliffe/${MY_P}/archive/${PV}.tar.gz -> ${P}.tar.gz"
	S="${WORKDIR}/${MY_P}-${PV}"
	KEYWORDS="~amd64 ~x86"
fi

DESCRIPTION="Cross-Platform and Open-Source Software Defined Radio Application"
HOMEPAGE="https://cubicsdr.com/"

LICENSE="GPL-2"
SLOT="0"
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
}