blob: 692170d2dd152cccb1284655ff0beb99f2951bcc (
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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
|
# Copyright 1999-2014 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/sys-libs/openhpi/openhpi-2.12.0.ebuild,v 1.3 2014/03/12 03:11:05 patrick Exp $
inherit eutils
DESCRIPTION="Open source implementation of the Service Availability Forum (SAF) Hardware Platform Interface (HPI)"
HOMEPAGE="http://www.openhpi.org/"
SRC_URI="mirror://sourceforge/${PN}/${P}.tar.gz"
LICENSE="BSD"
SLOT="0"
KEYWORDS="~x86 ~amd64"
IUSE="snmp"
COMMONDEPEND=">=dev-libs/glib-2.2
sys-fs/e2fsprogs
sys-fs/sysfsutils
>=sys-libs/openipmi-1.4.20
snmp? ( >=net-analyzer/net-snmp-5.07 )"
RDEPEND="${COMMONDEPEND}"
DEPEND="${COMMONDEPEND}
>=sys-devel/autoconf-2.57
>=sys-devel/automake-1.8
>=sys-devel/gcc-3.2.0
virtual/os-headers"
src_unpack() {
unpack ${A}
sed -i -e 's:-Werror::g' "${S}"/configure || die "sed failed"
}
src_compile() {
econf --with-varpath=/var/lib/openhpi \
--enable-clients \
--enable-cpp_wrappers \
--enable-daemon \
--enable-ipmi \
--enable-ipmidirect \
--enable-sysfs \
--enable-thread \
--enable-watchdog \
--enable-simulator \
--disable-testcover \
$(use_enable snmp snmp_bc) \
|| die "econf failed"
emake || die "emake failed"
}
src_install() {
# Stage main files.
emake DESTDIR="${D}" install || die "emake install failed"
# Stage conf.d-file and init.d-script.
newinitd "${FILESDIR}"/openhpi-initd openhpid
newconfd "${FILESDIR}"/openhpi-confd openhpid
# Stage documentation.
dodoc README
# Make sure the data dir exists or openhpid will fail silently.
keepdir /var/lib/openhpi/
}
|