Gentoo Archives: gentoo-commits

From: "Robin H. Johnson (robbat2)" <robbat2@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in sys-libs/openhpi: ChangeLog openhpi-2.10.1.ebuild
Date: Sat, 01 Nov 2008 08:19:08
Message-Id: E1KwBhJ-0004Ri-MA@stork.gentoo.org
1 robbat2 08/11/01 08:19:05
2
3 Modified: ChangeLog
4 Added: openhpi-2.10.1.ebuild
5 Log:
6 Version bump, per bug #199024. Thanks to Tais M. Hansen <tais.hansen@×××.dk> for scripts.
7 (Portage version: 2.2_rc12/cvs/Linux 2.6.26-hardened-r4 x86_64)
8
9 Revision Changes Path
10 1.4 sys-libs/openhpi/ChangeLog
11
12 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/sys-libs/openhpi/ChangeLog?rev=1.4&view=markup
13 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/sys-libs/openhpi/ChangeLog?rev=1.4&content-type=text/plain
14 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/sys-libs/openhpi/ChangeLog?r1=1.3&r2=1.4
15
16 Index: ChangeLog
17 ===================================================================
18 RCS file: /var/cvsroot/gentoo-x86/sys-libs/openhpi/ChangeLog,v
19 retrieving revision 1.3
20 retrieving revision 1.4
21 diff -p -w -b -B -u -u -r1.3 -r1.4
22 --- ChangeLog 9 Feb 2007 06:09:22 -0000 1.3
23 +++ ChangeLog 1 Nov 2008 08:19:05 -0000 1.4
24 @@ -1,6 +1,13 @@
25 # ChangeLog for sys-libs/openhpi
26 -# Copyright 1999-2007 Gentoo Foundation; Distributed under the GPL v2
27 -# $Header: /var/cvsroot/gentoo-x86/sys-libs/openhpi/ChangeLog,v 1.3 2007/02/09 06:09:22 flameeyes Exp $
28 +# Copyright 1999-2008 Gentoo Foundation; Distributed under the GPL v2
29 +# $Header: /var/cvsroot/gentoo-x86/sys-libs/openhpi/ChangeLog,v 1.4 2008/11/01 08:19:05 robbat2 Exp $
30 +
31 +*openhpi-2.10.1 (01 Nov 2008)
32 +
33 + 01 Nov 2008; Robin H. Johnson <robbat2@g.o> +files/openhpi-confd,
34 + +files/openhpi-initd, +openhpi-2.10.1.ebuild:
35 + Version bump, per bug #199024. Thanks to Tais M. Hansen
36 + <tais.hansen@×××.dk> for scripts.
37
38 09 Feb 2007; Diego Pettenò <flameeyes@g.o> ChangeLog:
39 Regenerate digest in Manifest2 format.
40
41
42
43 1.1 sys-libs/openhpi/openhpi-2.10.1.ebuild
44
45 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/sys-libs/openhpi/openhpi-2.10.1.ebuild?rev=1.1&view=markup
46 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/sys-libs/openhpi/openhpi-2.10.1.ebuild?rev=1.1&content-type=text/plain
47
48 Index: openhpi-2.10.1.ebuild
49 ===================================================================
50 # Copyright 1999-2008 Gentoo Foundation
51 # Distributed under the terms of the GNU General Public License v2
52 # $Header: /var/cvsroot/gentoo-x86/sys-libs/openhpi/openhpi-2.10.1.ebuild,v 1.1 2008/11/01 08:19:05 robbat2 Exp $
53
54 inherit eutils
55
56 DESCRIPTION="OpenHPI provides an open source implementation of the Service Availability Forum (SAF) Hardware Platform Interface (HPI)"
57 HOMEPAGE="http://www.openhpi.org/"
58 SRC_URI="mirror://sourceforge/${PN}/${P}.tar.gz"
59
60 LICENSE="BSD"
61 SLOT="0"
62 KEYWORDS="~x86 ~amd64"
63 IUSE="snmp"
64
65 COMMONDEPEND=">=dev-libs/glib-2.2
66 sys-fs/e2fsprogs
67 sys-fs/sysfsutils
68 >=sys-libs/openipmi-1.4.20
69 snmp? ( >=net-analyzer/net-snmp-5.07 )"
70 RDEPEND="${COMMONDEPEND}"
71 DEPEND="${COMMONDEPEND}
72 >=sys-devel/autoconf-2.57
73 >=sys-devel/automake-1.8
74 >=sys-devel/gcc-3.2.0
75 virtual/os-headers"
76
77 src_compile() {
78 econf --with-varpath=/var/lib/openhpi \
79 --enable-clients \
80 --enable-cpp_wrappers \
81 --enable-daemon \
82 --enable-ipmi \
83 --enable-ipmidirect \
84 --enable-sysfs \
85 --enable-thread \
86 --enable-watchdog \
87 --enable-simulator \
88 --disable-testcover \
89 $(use_enable snmp snmp_bc) \
90 || die "econf failed"
91
92 emake || die "emake failed"
93 }
94
95 src_install() {
96 # Stage main files.
97 emake DESTDIR="${D}" install || die "emake install failed"
98
99 # Stage conf.d-file and init.d-script.
100 newinitd "${FILESDIR}"/openhpi-initd openhpid
101 newconfd "${FILESDIR}"/openhpi-confd openhpid
102
103 # Stage documentation.
104 dodoc README
105
106 # Make sure the data dir exists or openhpid will fail silently.
107 keepdir /var/lib/openhpi/
108 }