blob: de27bd758f8c458302f6c1079ee81099cef13952 (
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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
|
# Copyright 2021-2024 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
inherit autotools toolchain-funcs
DESCRIPTION="Diagnostic tools for PowerLinux"
HOMEPAGE="https://github.com/power-ras/ppc64-diag"
SRC_URI="https://github.com/power-ras/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz"
LICENSE="GPL-2+"
SLOT="0"
KEYWORDS="ppc64"
IUSE="rtas"
DEPEND="virtual/libudev:=
rtas? (
sys-libs/ncurses:0=
sys-libs/librtas
sys-libs/libservicelog
>=sys-libs/libvpd-2.2.9:=
)
"
RDEPEND="${DEPEND}
dev-lang/perl
rtas? ( sys-apps/servicelog )
"
BDEPEND="
app-alternatives/yacc
app-alternatives/lex
virtual/pkgconfig
"
PATCHES=(
"${FILESDIR}"/fix-systemd-unit-path.patch
)
src_prepare() {
default
eautoreconf
}
src_configure() {
econf $(use_with rtas librtas)
# handle ncurses[tinfo]
sed -e "s:-lncurses:$($(tc-getPKG_CONFIG) --libs ncurses):g" \
-i Makefile || die
}
src_install() {
default
newinitd "${FILESDIR}/opal_errd.initd" opal_errd
if use rtas; then
newinitd "${FILESDIR}/rtas_errd.initd" rtas_errd
keepdir /var/log/ppc64-diag/diag_disk
else
# makefile installs it unconditionally
rm -rf "${ED}/lib/systemd/system/rtas_errd.service" || die
rm -rf "${ED}/usr/lib/systemd/system/rtas_errd.service" || die
fi
keepdir /etc/${PN}/ses_pages
keepdir /var/log/ppc64_diag/diag_disk
keepdir /var/log/ppc64_diag
keepdir /var/log/opal-elog
keepdir /var/log/dump
}
src_test() {
# it assumes MKTEMP created dir in /tmp, add /var to the string.
# /varplatform.0x01 becomes platform.0x01, just as test expects
# so we sed a sed expression, don't judge me
sed -i 's%\/tmp/%\/var\/tmp\/%' opal_errd/tests/test-extract_opal_dump-000 || die
emake check
}
|