blob: dd727379106d99c85035310094ee7fc6f50cf869 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
|
# Copyright 1999-2014 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Id$
EAPI=5
DESCRIPTION="bladeRF FPGA bitstreams"
HOMEPAGE="http://nuand.com/fpga.php"
#fpga code is open source, but uses a proprietary toolchain to build
#automated builds from git are available, but likely unneeded
#http://hoopycat.com/bladerf_builds/
SRC_URI="x40? ( http://nuand.com/fpga/v${PV}/hostedx40.rbf )
x115? ( http://nuand.com/fpga/v${PV}/hostedx115.rbf )"
LICENSE="MIT"
SLOT="0"
KEYWORDS="~amd64 ~arm ~x86"
IUSE="+x40 +x115"
DEPEND=""
RDEPEND="${DEPEND}"
S="${DISTDIR}"
src_install() {
insinto /usr/share/Nuand/bladeRF/
use x40 && doins hostedx40.rbf
use x115 && doins hostedx115.rbf
}
|