blob: 99b348863247d04ef108e8ae7428b8a678c494cb (
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
33
34
35
36
37
38
39
40
41
42
43
44
|
# Copyright 1999-2017 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
EAPI=5
inherit cmake-utils flag-o-matic git-r3
DESCRIPTION="Raspberry Pi userspace tools and libraries"
HOMEPAGE="https://github.com/raspberrypi/userland"
SRC_URI=""
LICENSE="BSD"
SLOT="0"
KEYWORDS=""
IUSE=""
DEPEND=""
RDEPEND=""
EGIT_REPO_URI="https://github.com/raspberrypi/userland"
PATCHES=( "${FILESDIR}"/${P}-gentoo.patch )
pkg_setup() {
append-ldflags $(no-as-needed)
}
src_configure() {
local mycmakeargs=(
-DVMCS_INSTALL_PREFIX="/usr"
)
cmake-utils_src_configure
}
src_install() {
cmake-utils_src_install
insinto /lib/udev/rules.d
doins "${FILESDIR}"/92-local-vchiq-permissions.rules
dodir /usr/share/doc/${PF}
mv "${D}"/usr/src/hello_pi "${D}"/usr/share/doc/${PF}/
rmdir "${D}"/usr/src
}
|