blob: a0c5c32b0fb3905d620608bebea6c3f8252b25fa (
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
|
# Copyright 1999-2008 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/app-admin/mcelog/mcelog-0.7.ebuild,v 1.4 2008/11/02 11:03:53 maekke Exp $
inherit toolchain-funcs
DESCRIPTION="A tool to log and decode Machine Check Exceptions"
HOMEPAGE="ftp://ftp.x86-64.org/pub/linux/tools/mcelog/"
SRC_URI="ftp://ftp.x86-64.org/pub/linux/tools/${PN}/${P}.tar.gz"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="amd64 ~x86"
IUSE=""
DEPEND=""
RDEPEND="virtual/cron"
src_unpack() {
unpack ${A}
cd "${S}"
sed -i \
-e 's:-g:${CFLAGS}:g' \
-e 's:\tgcc:\t$(CC):g' Makefile || die "sed makefile failed"
}
src_compile() {
emake CC="$(tc-getCC)" || die
}
src_install() {
dosbin mcelog || die
doman mcelog.8
exeinto /etc/cron.daily
newexe mcelog.cron mcelog || die
insinto /etc/logrotate.d/
newins mcelog.logrotate mcelog || die
dodoc CHANGES README
}
|