mirror of
https://github.com/pentoo/pentoo-overlay
synced 2026-05-05 11:00:48 +02:00
gnuradio: back to gentoo with you
This commit is contained in:
parent
63de2ff087
commit
e247eb6afb
3 changed files with 0 additions and 286 deletions
|
|
@ -1 +0,0 @@
|
|||
DIST gnuradio-3.8.1.0.tar.gz 3567141 BLAKE2B 8a56d55e2880277ca32332df01b046ebbe79d2559e568bd4c957a64df64799fc58d367e8d55f03d1ffffa180942b1c5b48a0e11877a114372c3ea8ed403169f5 SHA512 d1ada5b36c32aefd5915e4aa33beafd06aaaa00654f5a9f126bc9068f9e607580660bd5c57177503c3c29c23e9f3f4bc0f9c6c394a6f4bb003f6ffdf520eb2e0
|
||||
|
|
@ -1,255 +0,0 @@
|
|||
# Copyright 1999-2020 Gentoo Authors
|
||||
# Distributed under the terms of the GNU General Public License v2
|
||||
|
||||
EAPI=7
|
||||
|
||||
PYTHON_COMPAT=( python3_{6,7,8} )
|
||||
|
||||
CMAKE_BUILD_TYPE="None"
|
||||
inherit cmake-utils eutils gnome2-utils python-single-r1 xdg-utils desktop
|
||||
|
||||
DESCRIPTION="Toolkit that provides signal processing blocks to implement software radios"
|
||||
HOMEPAGE="https://www.gnuradio.org/"
|
||||
LICENSE="GPL-3"
|
||||
SLOT="0/${PV}"
|
||||
|
||||
if [[ ${PV} =~ "9999" ]]; then
|
||||
EGIT_REPO_URI="https://www.gnuradio.org/cgit/gnuradio.git"
|
||||
inherit git-r3
|
||||
KEYWORDS=""
|
||||
else
|
||||
# SRC_URI="https://github.com/gnuradio/gnuradio/archive/v${PV}.tar.gz -> ${P}.tar.gz"
|
||||
SRC_URI="https://github.com/gnuradio/gnuradio/releases/download/v3.8.1.0/gnuradio-3.8.1.0.tar.gz"
|
||||
KEYWORDS="~amd64 ~arm ~x86"
|
||||
fi
|
||||
|
||||
IUSE="+audio +alsa atsc +analog +digital channels doc dtv examples fcd fec +filter grc jack log noaa oss pager performance-counters portaudio +qt5 sdl +system-volk test trellis uhd vocoder +utils wavelet wxwidgets zeromq"
|
||||
RESTRICT="!test? ( test )"
|
||||
|
||||
REQUIRED_USE="${PYTHON_REQUIRED_USE}
|
||||
audio? ( || ( alsa oss jack portaudio ) )
|
||||
alsa? ( audio )
|
||||
oss? ( audio )
|
||||
jack? ( audio )
|
||||
portaudio? ( audio )
|
||||
analog? ( filter )
|
||||
digital? ( filter analog )
|
||||
dtv? ( fec )
|
||||
pager? ( filter analog )
|
||||
qt5? ( filter )
|
||||
uhd? ( filter analog )
|
||||
fcd? ( || ( alsa oss ) )
|
||||
wavelet? ( analog )
|
||||
wxwidgets? ( filter analog )"
|
||||
|
||||
# bug #348206
|
||||
# comedi? ( >=sci-electronics/comedilib-0.8 )
|
||||
# boost-1.52.0 is blacklisted, bug #461578, upstream #513, boost #7669
|
||||
RDEPEND="${PYTHON_DEPS}
|
||||
>=dev-lang/orc-0.4.12
|
||||
!<=dev-libs/boost-1.52.0-r6:0/1.52
|
||||
sci-libs/fftw:3.0=
|
||||
alsa? (
|
||||
media-libs/alsa-lib:=
|
||||
)
|
||||
fcd? ( virtual/libusb:1 )
|
||||
jack? (
|
||||
media-sound/jack-audio-connection-kit
|
||||
)
|
||||
dev-libs/log4cpp
|
||||
portaudio? (
|
||||
>=media-libs/portaudio-19_pre
|
||||
)
|
||||
sdl? ( >=media-libs/libsdl-1.2.0 )
|
||||
system-volk? ( sci-libs/volk )
|
||||
uhd? ( >=net-wireless/uhd-3.9.6:=[${PYTHON_SINGLE_USEDEP}]
|
||||
dev-libs/log4cpp )
|
||||
vocoder? ( media-sound/gsm
|
||||
>=media-libs/codec2-0.8.1 )
|
||||
wavelet? (
|
||||
>=sci-libs/gsl-1.10
|
||||
)
|
||||
zeromq? ( >=net-libs/zeromq-2.1.11 )
|
||||
$(python_gen_cond_dep '
|
||||
dev-libs/boost:0=[${PYTHON_MULTI_USEDEP}]
|
||||
dev-python/mako[${PYTHON_MULTI_USEDEP}]
|
||||
dev-python/six[${PYTHON_MULTI_USEDEP}]
|
||||
dev-python/pyyaml[${PYTHON_MULTI_USEDEP}]
|
||||
dev-python/click[${PYTHON_MULTI_USEDEP}]
|
||||
dev-python/click-plugins[${PYTHON_MULTI_USEDEP}]
|
||||
filter? (
|
||||
sci-libs/scipy[${PYTHON_MULTI_USEDEP}]
|
||||
)
|
||||
grc? (
|
||||
dev-python/lxml[${PYTHON_MULTI_USEDEP}]
|
||||
dev-python/numpy[${PYTHON_MULTI_USEDEP}]
|
||||
)
|
||||
qt5? (
|
||||
dev-python/PyQt5[opengl,${PYTHON_MULTI_USEDEP}]
|
||||
dev-qt/qtcore:5
|
||||
dev-qt/qtgui:5
|
||||
dev-qt/qtwidgets:5
|
||||
x11-libs/qwt:6[qt5(+)]
|
||||
)
|
||||
utils? (
|
||||
dev-python/matplotlib[${PYTHON_MULTI_USEDEP}]
|
||||
)
|
||||
wxwidgets? (
|
||||
dev-python/wxpython:4.0[${PYTHON_MULTI_USEDEP}]
|
||||
dev-python/numpy[${PYTHON_MULTI_USEDEP}]
|
||||
)
|
||||
')
|
||||
"
|
||||
|
||||
DEPEND="${RDEPEND}
|
||||
app-text/docbook-xml-dtd:4.2
|
||||
dev-libs/gmp
|
||||
>=dev-lang/swig-3.0.5
|
||||
virtual/pkgconfig
|
||||
doc? (
|
||||
>=app-doc/doxygen-1.5.7.1
|
||||
$(python_gen_cond_dep '
|
||||
dev-python/sphinx[${PYTHON_MULTI_USEDEP}]
|
||||
')
|
||||
)
|
||||
grc? ( x11-misc/xdg-utils )
|
||||
oss? ( virtual/os-headers )
|
||||
test? ( >=dev-util/cppunit-1.9.14 )
|
||||
zeromq? ( net-libs/cppzmq )
|
||||
"
|
||||
|
||||
src_prepare() {
|
||||
gnome2_environment_reset #534582
|
||||
|
||||
# if [[ ${PV} != "9999" ]]; then
|
||||
# epatch "${FILESDIR}"/gnuradio-wxpy3.0-compat.patch
|
||||
# fi
|
||||
|
||||
# Useless UI element would require qt3support, bug #365019
|
||||
sed -i '/qPixmapFromMimeSource/d' "${S}"/gr-qtgui/lib/spectrumdisplayform.ui || die
|
||||
|
||||
use !alsa && sed -i 's#version.h#version-nonexistant.h#' cmake/Modules/FindALSA.cmake
|
||||
use !jack && sed -i 's#jack.h#jack-nonexistant.h#' cmake/Modules/FindJACK.cmake
|
||||
use !portaudio && sed -i 's#portaudio.h#portaudio-nonexistant.h#' cmake/Modules/FindPORTAUDIO.cmake
|
||||
|
||||
cmake-utils_src_prepare
|
||||
}
|
||||
|
||||
src_configure() {
|
||||
#zeromq missing deps isn't fatal
|
||||
mycmakeargs=(
|
||||
-DENABLE_GNURADIO_RUNTIME=ON
|
||||
-DENABLE_VOLK=ON
|
||||
-DENABLE_INTERNAL_VOLK="$(uses !system-volk)"
|
||||
-DENABLE_PYTHON=ON
|
||||
-DENABLE_GR_BLOCKS=ON
|
||||
-DENABLE_GR_FFT=ON
|
||||
-DENABLE_GR_AUDIO=ON
|
||||
-DENABLE_GR_AUDIO_ALSA="$(usex alsa)"
|
||||
-DENABLE_GR_ANALOG="$(usex analog)"
|
||||
-DENABLE_GR_CHANNELS="$(usex channels)"
|
||||
-DENABLE_GR_DIGITAL="$(usex digital)"
|
||||
-DENABLE_DOXYGEN="$(usex doc)"
|
||||
-DENABLE_GR_DTV="$(usex dtv)"
|
||||
-DENABLE_GR_FCD="$(usex fcd)"
|
||||
-DENABLE_GR_FEC="$(usex fec)"
|
||||
-DENABLE_GR_FILTER="$(usex filter)"
|
||||
-DENABLE_GRC="$(usex grc)"
|
||||
-DENABLE_GR_AUDIO_JACK="$(usex jack)"
|
||||
-DENABLE_GR_LOG="$(usex log)"
|
||||
-DENABLE_GR_NOAA="$(usex noaa)"
|
||||
-DENABLE_GR_AUDIO_OSS="$(usex oss)"
|
||||
-DENABLE_GR_PAGER="$(usex pager)"
|
||||
-DENABLE_ENABLE_PERFORMANCE_COUNTERS="$(usex performance-counters)"
|
||||
-DENABLE_GR_AUDIO_PORTAUDIO="$(usex portaudio)"
|
||||
-DENABLE_TESTING="$(usex test)"
|
||||
-DENABLE_GR_TRELLIS="$(usex trellis)"
|
||||
-DENABLE_GR_UHD="$(usex uhd)"
|
||||
-DENABLE_GR_UTILS="$(usex utils)"
|
||||
-DENABLE_GR_VOCODER="$(usex vocoder)"
|
||||
-DENABLE_GR_WAVELET="$(usex wavelet)"
|
||||
-DENABLE_GR_VIDEO_SDL="$(usex sdl)"
|
||||
-DENABLE_GR_ZEROMQ="$(usex zeromq)"
|
||||
-DSYSCONFDIR="${EPREFIX}"/etc
|
||||
-DPYTHON_EXECUTABLE="${PYTHON}"
|
||||
-DGR_PKG_DOC_DIR="${EPREFIX}/usr/share/doc/${PF}"
|
||||
)
|
||||
use vocoder && mycmakeargs+=( -DGR_USE_SYSTEM_LIBGSM=TRUE )
|
||||
cmake-utils_src_configure
|
||||
}
|
||||
|
||||
src_install() {
|
||||
cmake-utils_src_install
|
||||
|
||||
if use examples ; then
|
||||
dodir /usr/share/doc/${PF}/
|
||||
mv "${ED}"/usr/share/${PN}/examples "${ED}"/usr/share/doc/${PF}/ || die
|
||||
docompress -x /usr/share/doc/${PF}/examples
|
||||
else
|
||||
# It seems that the examples are always installed
|
||||
rm -rf "${ED}"/usr/share/${PN}/examples || die
|
||||
fi
|
||||
|
||||
if use doc || use examples; then
|
||||
#this doesn't appear useful
|
||||
rm -rf "${ED}"/usr/share/doc/${PF}/xml || die
|
||||
fi
|
||||
|
||||
# We install the mimetypes to the correct locations from the ebuild
|
||||
rm -rf "${ED}"/usr/share/${PN}/grc/freedesktop || die
|
||||
rm -f "${ED}"/usr/libexec/${PN}/grc_setup_freedesktop || die
|
||||
|
||||
# Install icons, menu items and mime-types for GRC
|
||||
if use grc ; then
|
||||
local fd_path="${S}/grc/scripts/freedesktop"
|
||||
insinto /usr/share/mime/packages
|
||||
doins "${fd_path}/${PN}-grc.xml"
|
||||
|
||||
domenu "${fd_path}/"*.desktop
|
||||
doicon "${fd_path}/"*.png
|
||||
fi
|
||||
|
||||
python_fix_shebang "${ED}"
|
||||
}
|
||||
|
||||
src_test()
|
||||
{
|
||||
ctest -E qtgui
|
||||
}
|
||||
|
||||
pkg_postinst()
|
||||
{
|
||||
local GRC_ICON_SIZES="32 48 64 128 256"
|
||||
|
||||
if use grc ; then
|
||||
xdg_desktop_database_update
|
||||
xdg_mimeinfo_database_update
|
||||
for size in ${GRC_ICON_SIZES} ; do
|
||||
xdg-icon-resource install --noupdate --context mimetypes --size ${size} \
|
||||
"${EROOT}/usr/share/pixmaps/grc-icon-${size}.png" application-gnuradio-grc \
|
||||
|| die "icon resource installation failed"
|
||||
xdg-icon-resource install --noupdate --context apps --size ${size} \
|
||||
"${EROOT}/usr/share/pixmaps/grc-icon-${size}.png" gnuradio-grc \
|
||||
|| die "icon resource installation failed"
|
||||
done
|
||||
xdg-icon-resource forceupdate
|
||||
fi
|
||||
}
|
||||
|
||||
pkg_postrm()
|
||||
{
|
||||
local GRC_ICON_SIZES="32 48 64 128 256"
|
||||
|
||||
if use grc ; then
|
||||
xdg_desktop_database_update
|
||||
xdg_mimeinfo_database_update
|
||||
for size in ${GRC_ICON_SIZES} ; do
|
||||
xdg-icon-resource uninstall --noupdate --context mimetypes --size ${size} \
|
||||
application-gnuradio-grc || ewarn "icon uninstall failed"
|
||||
xdg-icon-resource uninstall --noupdate --context apps --size ${size} \
|
||||
gnuradio-grc || ewarn "icon uninstall failed"
|
||||
|
||||
done
|
||||
xdg-icon-resource forceupdate
|
||||
fi
|
||||
}
|
||||
|
|
@ -1,30 +0,0 @@
|
|||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
|
||||
<pkgmetadata>
|
||||
<maintainer type="project">
|
||||
<email>radio@gentoo.org</email>
|
||||
<name>Radio</name>
|
||||
</maintainer>
|
||||
<use>
|
||||
<flag name="analog">enable analog signal processing blocks</flag>
|
||||
<flag name="atsc">enable ATSC (HDTV) transmitter and receiver blocks</flag>
|
||||
<flag name="audio">enable blocks to connect to audio sources (mic-in) and sinks (speaker-out) ports on a computer</flag>
|
||||
<flag name="channels">enable channel mode blocks</flag>
|
||||
<flag name="digital">enable digital signal processing blocks</flag>
|
||||
<flag name="dtv">enable digital tv signal processing blocks</flag>
|
||||
<flag name="fcd">enable Funcube Dongle source block</flag>
|
||||
<flag name="fec">enable block for convolutional encoding using the CCSDS standard polynomial ("Voyager")</flag>
|
||||
<flag name="filter">enable filter signal processing blocks</flag>
|
||||
<flag name="grc">enable GNU Radio Companion graphical tool to design signal processing flow graphs</flag>
|
||||
<flag name="log">enable logging to console and files</flag>
|
||||
<flag name="noaa">enable NOAA POES HRPT receiver blocks</flag>
|
||||
<flag name="pager">enable pager signal processing blocks</flag>
|
||||
<flag name="performance-counters">enable block performance counters</flag>
|
||||
<flag name="trellis">enable trellis blocks for FSM</flag>
|
||||
<flag name="uhd">install UHD source and sink blocks</flag>
|
||||
<flag name="utils">install scripts to enable viewing and analysis of files produced by flow graphs</flag>
|
||||
<flag name="vocoder">enable blocks for audio voice encoders</flag>
|
||||
<flag name="wavelet">enable wavelet signal processing blocks</flag>
|
||||
<flag name="zeromq">enable zeromq message passing blocks</flag>
|
||||
</use>
|
||||
</pkgmetadata>
|
||||
Loading…
Reference in a new issue