mirror of
https://github.com/pentoo/pentoo-overlay
synced 2026-05-08 12:30:44 +02:00
net-wireless/gr-ais New Package GNU Radio block for AIS
This commit is contained in:
parent
4f7c11590b
commit
54f41f3501
2 changed files with 34 additions and 0 deletions
1
net-wireless/gr-ais/Manifest
Normal file
1
net-wireless/gr-ais/Manifest
Normal file
|
|
@ -0,0 +1 @@
|
|||
EBUILD gr-ais-9999.ebuild 744 SHA256 f3d7598ab32635d3b74c266a1c31d47277bdf8ccfc8da5f6c6e44de39aceaf2e SHA512 bdf52ae9a36994b9b2e40517bab717c6e6dc23f7bbc62ceac726fac87c455d52465a5e80592c121742e0796a3e24cf36ce3002c01b8f3a8c19b9f7801acb2ac4 WHIRLPOOL 0e101f6755f0674b44ed36dd0a1d56607bc56892e5f84ef0da095432143ac7f127c2b775087ff37fda8f7e4847cae4babf2978efe5ae2c61c4b83f951bff3884
|
||||
33
net-wireless/gr-ais/gr-ais-9999.ebuild
Normal file
33
net-wireless/gr-ais/gr-ais-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 that decodes Automatic Information System for shipborne position reporting"
|
||||
HOMEPAGE="https://github.com/bistromath/gr-ais"
|
||||
|
||||
EGIT_REPO_URI="https://github.com/bistromath/gr-ais.git"
|
||||
EGIT_BRANCH="master"
|
||||
KEYWORDS=""
|
||||
|
||||
LICENSE="GPL-3"
|
||||
SLOT="0"
|
||||
IUSE="doc"
|
||||
DEPEND=">=net-wireless/gnuradio-3.7.6:=
|
||||
dev-libs/boost:=
|
||||
dev-util/cppunit
|
||||
dev-lang/swig:*
|
||||
doc? ( app-doc/doxygen )"
|
||||
|
||||
RDEPEND="${DEPEND}"
|
||||
|
||||
src_configure() {
|
||||
local mycmakeargs=(
|
||||
-DWITH_ENABLE_DOXYGEN=YES="$(usex doc)"
|
||||
-DCMAKE_INSTALL_PREFIX=/usr/share
|
||||
)
|
||||
cmake-utils_src_configure
|
||||
}
|
||||
Loading…
Reference in a new issue