mirror of
https://github.com/pentoo/pentoo-overlay
synced 2026-01-14 12:12:08 +01:00
40 lines
802 B
Bash
40 lines
802 B
Bash
# Copyright 1999-2012 Gentoo Foundation
|
|
# Distributed under the terms of the GNU General Public License v2
|
|
# $Header: $
|
|
|
|
EAPI=4
|
|
PYTHON_DEPEND="2"
|
|
inherit subversion python
|
|
|
|
DESCRIPTION=""
|
|
HOMEPAGE=""
|
|
SRC_URI=""
|
|
ESVN_REPO_URI="https://www.cgran.org/svn/projects/multimode"
|
|
|
|
LICENSE="BSD"
|
|
SLOT="0"
|
|
KEYWORDS="~amd64"
|
|
IUSE=""
|
|
|
|
DEPEND=""
|
|
RDEPEND="${DEPEND}
|
|
=net-wireless/gr-osmosdr-9999
|
|
=net-wireless/gnuradio-9999
|
|
=net-wireless/rtl-sdr-9999"
|
|
|
|
pkg_setup() {
|
|
python_set_active_version 2
|
|
python_pkg_setup
|
|
}
|
|
|
|
src_install() {
|
|
cd "${S}"/trunk
|
|
python_convert_shebangs 2 multimode.py
|
|
newbin multimode.py multimode
|
|
insinto /usr/bin
|
|
doins multimode_helper.py
|
|
dosym /usr/bin/multimode /usr/bin/multimode.py
|
|
insinto /usr/share/${PN}
|
|
doins multimode.grc
|
|
}
|
|
|