blob: ea9ce83dda45756ebe915f94e2c3c322f65e4bb0 (
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
45
46
47
48
49
50
51
52
53
54
55
|
# Copyright 1999-2026 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
inherit bash-completion-r1 cmake optfeature
COMMIT="ab7d6bbf90af6f63898d3c2e45cd36da50b4f40b"
DESCRIPTION="Raspberry Pi userspace utilities"
HOMEPAGE="https://github.com/raspberrypi/utils"
SRC_URI="https://github.com/raspberrypi/utils/archive/${COMMIT}.tar.gz -> ${P}.tar.gz"
S="${WORKDIR}/utils-${COMMIT}"
LICENSE="BSD"
SLOT="0"
KEYWORDS="~arm ~arm64"
DEPEND="
sys-apps/dtc
"
RDEPEND="
${DEPEND}
dev-lang/perl
!media-libs/raspberrypi-userland
!media-libs/raspberrypi-userland-bin
"
PATCHES=(
"${FILESDIR}"/${PN}-silence-kms-missing-message.patch
"${FILESDIR}"/${PN}-silence-sections-with-missing-commands.patch
"${FILESDIR}"/${PN}-use-emerge-for-package-versions.patch
)
src_configure() {
local mycmakeargs=( -DBUILD_SHARED_LIBS=OFF -DENABLE_WERROR=OFF )
cmake_src_configure
}
src_install() {
cmake_src_install
local SRC
rm -r "${ED}"/usr/share/bash-completion/ || die
for SRC in */*-completion.bash; do
local DEST=${SRC%-completion.bash}
newbashcomp "${SRC}" "${DEST##*/}"
done
}
pkg_postinst() {
optfeature "Sound status in raspinfo" media-sound/alsa-utils
optfeature "USB status in raspinfo" sys-apps/usbutils
}
|