mirror of
https://github.com/pentoo/pentoo-overlay
synced 2026-05-02 19:50:51 +02:00
gr-gsm: initial ebuild
This commit is contained in:
parent
b170e5caf7
commit
049fdd7ff2
1 changed files with 37 additions and 0 deletions
37
net-wireless/gr-gsm/gr-gsm-9999.ebuild
Normal file
37
net-wireless/gr-gsm/gr-gsm-9999.ebuild
Normal file
|
|
@ -0,0 +1,37 @@
|
|||
# Copyright 1999-2016 Gentoo Foundation
|
||||
# Distributed under the terms of the GNU General Public License v2
|
||||
# $Id$
|
||||
|
||||
EAPI=5
|
||||
|
||||
PYTHON_COMPAT=( python2_7 )
|
||||
inherit python-single-r1 cmake-utils git-r3
|
||||
|
||||
DESCRIPTION="Set of tools for receiving information transmitted by GSM equipment/devices"
|
||||
HOMEPAGE="https://github.com/ptrkrysik/gr-gsm"
|
||||
EGIT_REPO_URI="https://github.com/ptrkrysik/gr-gsm.git"
|
||||
|
||||
KEYWORDS=""
|
||||
LICENSE="GPL-3"
|
||||
SLOT="0"
|
||||
IUSE="doc"
|
||||
|
||||
DEPEND=">=net-wireless/gnuradio-3.7.0:=
|
||||
dev-util/cppunit
|
||||
net-libs/libosmocore"
|
||||
RDEPEND="${DEPEND}"
|
||||
|
||||
src_prepare() {
|
||||
sed -i "s|gr-grgsm|gr-gsm|g" CMakeLists.txt
|
||||
#fixme below
|
||||
sed -i "s|\${GR_DOC_DIR}\/\${CMAKE_PROJECT_NAME}|${EPREFIX}/usr/share/doc/${PF}|g" CMakeLists.txt
|
||||
}
|
||||
|
||||
#Fixme: GR_PKG_DOC_DIR is not getting set
|
||||
# -DGR_PKG_DOC_DIR="${EPREFIX}/usr/share/doc/${PF}"
|
||||
src_configure() {
|
||||
mycmakeargs=(
|
||||
$(cmake-utils_use_enable doc DOXYGEN) \
|
||||
)
|
||||
cmake-utils_src_configure
|
||||
}
|
||||
Loading…
Reference in a new issue