You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
gentoo-overlay/net-wireless/cubicsdr/cubicsdr-0.2.3-r2.ebuild

46 lines
962 B

# Copyright 1999-2021 Gentoo Authors
# 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"
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
}