summaryrefslogtreecommitdiff
blob: 7bb3e34c6e73a14904519023256f6e89f5305992 (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
# Copyright 1999-2017 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2

EAPI=6

inherit systemd

DESCRIPTION="Reliability, Availability and Serviceability logging tool"
HOMEPAGE="http://www.infradead.org/~mchehab/rasdaemon/"
SRC_URI="http://www.infradead.org/~mchehab/${PN}/${P}.tar.bz2"

LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~amd64 ~x86"
IUSE=""

DEPEND=""
RDEPEND="
	${DEPEND}
	sys-devel/gettext
	dev-db/sqlite
	sys-apps/dmidecode
"

src_configure() {
	econf --enable-mce \
		--enable-aer \
		--enable-sqlite3 \
		--enable-extlog \
		--enable-abrt-report \
		--enable-non-standard \
		--enable-hisi-ns-decode \
		--enable-arm
}

src_install() {
	default
	systemd_dounit misc/*.service
}