mirror of
https://github.com/pentoo/pentoo-overlay
synced 2026-05-01 19:20:56 +02:00
net-wireless/gr-correctiq/ New GNU Radio block
This commit is contained in:
parent
911c75ef9a
commit
f1b4e7d1a9
2 changed files with 34 additions and 0 deletions
1
net-wireless/gr-correctiq/Manifest
Normal file
1
net-wireless/gr-correctiq/Manifest
Normal file
|
|
@ -0,0 +1 @@
|
|||
EBUILD gr-correctiq-9999.ebuild 805 SHA256 3a70215b9b821ddf59b1564f701ce1dfb8b905907fad094809afa084fa22a4cd SHA512 3d3d441b6b15c06d082b3e4278ebb63b3b78ecd0c804fd3a302bf3a992135451150f1a7d618c9aa5e0c30e392e9292deb8e2d52d8b6f3b6409b56a62a71c8312 WHIRLPOOL 76131aed03a680f898a1ed5be1067b920bded17e4ea95b0ea64d144204a6d92ce249f72de69bc827410125c021686938b9780f04e7a939a9be69f0b0e4cde92b
|
||||
33
net-wireless/gr-correctiq/gr-correctiq-9999.ebuild
Normal file
33
net-wireless/gr-correctiq/gr-correctiq-9999.ebuild
Normal file
|
|
@ -0,0 +1,33 @@
|
|||
# Copyright 1999-2017 Gentoo Foundation
|
||||
# Distributed under the terms of the GNU General Public License v2
|
||||
|
||||
EAPI=6
|
||||
|
||||
PYTHON_COMPAT=( python2_7 )
|
||||
inherit cmake-utils git-r3
|
||||
|
||||
DESCRIPTION="GNU Radio block to remove that IQ DC spike "
|
||||
HOMEPAGE="https://github.com/ghostop14/gr-correctiq"
|
||||
|
||||
EGIT_REPO_URI="https://github.com/ghostop14/gr-correctiq.git"
|
||||
EGIT_BRANCH="master"
|
||||
KEYWORDS=""
|
||||
|
||||
LICENSE="GPL-3"
|
||||
SLOT="0"
|
||||
IUSE="doc"
|
||||
DEPEND=">=net-wireless/gnuradio-3.7.0:=
|
||||
dev-libs/boost:=
|
||||
dev-util/cppunit
|
||||
dev-lang/swig:*
|
||||
doc? ( app-doc/doxygen )"
|
||||
|
||||
RDEPEND="${DEPEND}"
|
||||
|
||||
src_configure() {
|
||||
sed -i '0,/include\/correctiq/s/include\/correctiq/include\/gnuradio\/correctiq/' ${WORKDIR}/${P}/CMakeLists.txt || die 'sed failed'
|
||||
local mycmakeargs=(
|
||||
-DWITH_ENABLE_DOXYGEN=YES="$(usex doc)"
|
||||
)
|
||||
cmake-utils_src_configure
|
||||
}
|
||||
Loading…
Reference in a new issue