blob: 2a49eeb40d9cd2db912076d3cd201e7c7bf444db (
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
31
32
|
# Copyright 2015 Stuart Shelton
# Distributed under the terms of the GNU General Public License v2
EAPI=5
inherit git-r3
DESCRIPTION="Raspberry Pi closed-source userspace tools"
HOMEPAGE="https://github.com/raspberrypi/firmware"
SRC_URI=""
LICENSE="Broadcom"
SLOT="0/1"
KEYWORDS="~aarch64 arm -*"
IUSE=""
DEPEND="media-libs/raspberrypi-userland"
RDEPEND=""
EGIT_REPO_URI="https://github.com/raspberrypi/firmware"
EGIT_CLONE_TYPE="shallow" # The current repo is ~4GB in size, but contains only
# ~200MB of data - the rest is (literally) history :(
RESTRICT="strip"
QA_PREBUILT="
/usr/bin/edidparser
/usr/sbin/vcdbg
"
src_install() {
dobin hardfp/opt/vc/bin/edidparser
dosbin hardfp/opt/vc/bin/vcdbg
}
|