SHA256
1
0
forked from pool/mcelog
mcelog/mcelog.spec
OBS User autobuild b2daa2da01 Accepting request 32894 from Base:System
Copy from Base:System/mcelog based on submit request 32894 from user oertel

OBS-URL: https://build.opensuse.org/request/show/32894
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/mcelog?expand=0&rev=8
2010-02-23 13:04:04 +00:00

95 lines
2.3 KiB
RPMSpec

#
# spec file for package mcelog (Version 1.0pre3)
#
# Copyright (c) 2010 SUSE LINUX Products GmbH, Nuernberg, Germany.
#
# All modifications and additions to the file contributed by third parties
# remain the property of their copyright owners, unless otherwise agreed
# upon. The license for this file, and modifications and additions to the
# file, is the same license as for the pristine package itself (unless the
# license for the pristine package is not an Open Source License, in which
# case the license is the MIT License). An "Open Source License" is a
# license that conforms to the Open Source Definition (Version 1.9)
# published by the Open Source Initiative.
# Please submit bugfixes or comments via http://bugs.opensuse.org/
#
# norootforbuild
Name: mcelog
License: GPLv2+
Summary: Log Machine Check Events
Version: 1.0pre3
Release: 1
AutoReqProv: on
ExclusiveArch: x86_64
PreReq: %insserv_prereq
Source: mcelog-%{version}.tar.bz2
Source1: mcelog.service
Patch1: fix_cache_trigger.patch
Group: System/Monitoring
BuildRoot: %{_tmppath}/%{name}-%{version}-build
%description
mcelog retrieves machine check events from an x86-64 kernel in a cron
job, decodes them, and logs them to /var/log/mcelog.
A machine check event is a hardware error detected by the CPU.
It should run on any x86-64 system.
In addition, it allows decoding machine check kernel panic messages.
Authors:
--------
Andi Kleen <andi@firstfloor.org>
%prep
%setup
%patch1 -p1
%build
make CFLAGS="$RPM_OPT_FLAGS"
%install
export prefix=$RPM_BUILD_ROOT/usr
export etcprefix=$RPM_BUILD_ROOT
make -e install
mkdir -p $RPM_BUILD_ROOT/etc/logrotate.d/
mkdir -p $RPM_BUILD_ROOT/etc/init.d
install -m755 %SOURCE1 $RPM_BUILD_ROOT/etc/init.d/mcelog
ln -s /etc/init.d/mcelog $RPM_BUILD_ROOT/usr/sbin/rcmcelog
install -m644 mcelog.logrotate $RPM_BUILD_ROOT/etc/logrotate.d/mcelog
%clean
rm -rf $RPM_BUILD_ROOT
%post
if [ -c /dev/mcelog ];then
%{insserv_force_if_yast mcelog}
fi
%preun
%{stop_on_removal mcelog}
%postun
%{restart_on_update mcelog}
%insserv_cleanup
%files
%defattr (-,root,root,755)
%{_mandir}/man8/*
/usr/sbin/mcelog
%config /etc/logrotate.d/mcelog
/etc/init.d/mcelog
%dir /etc/mcelog
%config /etc/mcelog/mcelog.conf
/etc/mcelog/*trigger
/usr/sbin/rcmcelog
%changelog