Gentoo Archives: gentoo-commits

From: "Tiziano Mueller (dev-zero)" <dev-zero@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in sys-apps/edac-utils: ChangeLog edac-utils-0.16.ebuild
Date: Mon, 03 Aug 2009 17:34:49
Message-Id: E1MY1Qu-0004z0-1z@stork.gentoo.org
1 dev-zero 09/08/03 17:34:48
2
3 Modified: ChangeLog
4 Added: edac-utils-0.16.ebuild
5 Log:
6 Version bump.
7 (Portage version: 2.2_rc33/cvs/Linux x86_64)
8
9 Revision Changes Path
10 1.2 sys-apps/edac-utils/ChangeLog
11
12 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/sys-apps/edac-utils/ChangeLog?rev=1.2&view=markup
13 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/sys-apps/edac-utils/ChangeLog?rev=1.2&content-type=text/plain
14 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/sys-apps/edac-utils/ChangeLog?r1=1.1&r2=1.2
15
16 Index: ChangeLog
17 ===================================================================
18 RCS file: /var/cvsroot/gentoo-x86/sys-apps/edac-utils/ChangeLog,v
19 retrieving revision 1.1
20 retrieving revision 1.2
21 diff -u -r1.1 -r1.2
22 --- ChangeLog 9 Apr 2008 20:53:08 -0000 1.1
23 +++ ChangeLog 3 Aug 2009 17:34:47 -0000 1.2
24 @@ -1,6 +1,12 @@
25 # ChangeLog for sys-apps/edac-utils
26 -# Copyright 1999-2008 Gentoo Foundation; Distributed under the GPL v2
27 -# $Header: /var/cvsroot/gentoo-x86/sys-apps/edac-utils/ChangeLog,v 1.1 2008/04/09 20:53:08 dev-zero Exp $
28 +# Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2
29 +# $Header: /var/cvsroot/gentoo-x86/sys-apps/edac-utils/ChangeLog,v 1.2 2009/08/03 17:34:47 dev-zero Exp $
30 +
31 +*edac-utils-0.16 (03 Aug 2009)
32 +
33 + 03 Aug 2009; Tiziano Müller <dev-zero@g.o>
34 + +edac-utils-0.16.ebuild:
35 + Version bump.
36
37 *edac-utils-0.12 (09 Apr 2008)
38
39
40
41
42 1.1 sys-apps/edac-utils/edac-utils-0.16.ebuild
43
44 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/sys-apps/edac-utils/edac-utils-0.16.ebuild?rev=1.1&view=markup
45 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/sys-apps/edac-utils/edac-utils-0.16.ebuild?rev=1.1&content-type=text/plain
46
47 Index: edac-utils-0.16.ebuild
48 ===================================================================
49 # Copyright 1999-2009 Gentoo Foundation
50 # Distributed under the terms of the GNU General Public License v2
51 # $Header: /var/cvsroot/gentoo-x86/sys-apps/edac-utils/edac-utils-0.16.ebuild,v 1.1 2009/08/03 17:34:47 dev-zero Exp $
52
53 EAPI="2"
54
55 DESCRIPTION="Userspace helper for Linux kernel EDAC drivers"
56 HOMEPAGE="http://sourceforge.net/projects/edac-utils/"
57 SRC_URI="mirror://sourceforge/${PN}/${P}.tar.bz2"
58 LICENSE="GPL-2"
59 SLOT="0"
60 KEYWORDS="~amd64"
61 IUSE="debug"
62
63 DEPEND="sys-fs/sysfsutils"
64 RDEPEND="${DEPEND}
65 sys-apps/dmidecode"
66
67 src_configure() {
68 econf $(use_enable debug)
69 }
70
71 src_install() {
72 emake DESTDIR="${D}" install || die "emake install failed"
73 dodoc AUTHORS ChangeLog DISCLAIMER META NEWS README TODO
74
75 # We don't need this init.d file
76 # Modules should be loaded by adding them to /etc/conf.d/modules
77 # The rest is done via the udev-rule
78 rm -rf "${D}/etc/init.d"
79 }
80
81 pkg_postinst() {
82 elog "There must be an entry for your mainboard in /etc/edac/labels.db"
83 elog "in case you want nice labels in /sys/module/*_edac/"
84 elog "Run the following command to check whether such an entry is already available:"
85 elog " edac-ctl --print-labels"
86 }