2015-05-14 16:56:13 +03:00
|
|
|
# Copyright 1999-2015 Gentoo Foundation
|
|
|
|
# Distributed under the terms of the GNU General Public License v2
|
2017-02-27 14:37:09 +03:00
|
|
|
# $Id: f46ca0c96188f168b71fd1fe90a8847dc4dab3ae $
|
2015-05-14 16:56:13 +03:00
|
|
|
|
|
|
|
EAPI=5
|
|
|
|
|
|
|
|
inherit linux-info eutils systemd toolchain-funcs
|
|
|
|
|
|
|
|
DESCRIPTION="A tool to log and decode Machine Check Exceptions"
|
|
|
|
HOMEPAGE="http://mcelog.org/"
|
|
|
|
SRC_URI="https://github.com/andikleen/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz"
|
|
|
|
|
|
|
|
LICENSE="GPL-2"
|
|
|
|
SLOT="0"
|
|
|
|
KEYWORDS="~amd64 ~x86"
|
|
|
|
IUSE="selinux"
|
|
|
|
|
|
|
|
RDEPEND="selinux? ( sec-policy/selinux-mcelog )"
|
|
|
|
|
|
|
|
CONFIG_CHECK="~X86_MCE"
|
|
|
|
|
|
|
|
# TODO: add mce-inject to the tree to support test phase
|
|
|
|
RESTRICT="test"
|
|
|
|
|
|
|
|
src_prepare() {
|
|
|
|
epatch "${FILESDIR}"/${PN}-0.8_pre1-timestamp-${PN}.patch \
|
|
|
|
"${FILESDIR}"/${PN}-1.0_pre3_p20120918-build.patch \
|
|
|
|
"${FILESDIR}"/${PN}-1.0_pre3_p20120918-bashism.patch
|
|
|
|
tc-export CC
|
|
|
|
}
|
|
|
|
|
|
|
|
src_install() {
|
|
|
|
default
|
|
|
|
|
|
|
|
insinto /etc/cron.daily
|
|
|
|
newins ${PN}.cron ${PN}
|
|
|
|
|
|
|
|
insinto /etc/logrotate.d/
|
|
|
|
newins ${PN}.logrotate ${PN}
|
|
|
|
|
|
|
|
newinitd "${FILESDIR}"/${PN}.init-r1 ${PN}
|
|
|
|
systemd_dounit "${FILESDIR}"/${PN}.service
|
|
|
|
|
|
|
|
dodoc *.pdf
|
|
|
|
}
|
|
|
|
|
|
|
|
pkg_postinst() {
|
|
|
|
einfo "The default configuration set is now installed in /etc/${PN}"
|
|
|
|
einfo "you might want to edit those files."
|
|
|
|
einfo
|
|
|
|
einfo "A sample cronjob is installed into /etc/cron.daily"
|
|
|
|
einfo "without executable bit (system service is the preferred method now)"
|
|
|
|
}
|