blob: c067016843b105e076f30cbc31ff7320f1e20690 (
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
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
|
# Copyright 1999-2019 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=6
MY_P="${P/cluster-}"
inherit autotools eutils flag-o-matic multilib user
DESCRIPTION="Library pack for Heartbeat / Pacemaker"
HOMEPAGE="http://www.linux-ha.org/wiki/Cluster_Glue"
SRC_URI="http://hg.linux-ha.org/glue/archive/${MY_P}.tar.bz2"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~amd64 ~hppa ~x86"
IUSE="doc ipmilan libnet static-libs"
RDEPEND="
!<sys-cluster/heartbeat-3.0
app-arch/bzip2
app-text/asciidoc
app-text/docbook-xml-dtd:4.4
dev-libs/glib:2
dev-libs/libaio
dev-libs/libltdl:=
dev-libs/libxml2
ipmilan? ( sys-libs/openipmi )
libnet? ( net-libs/libnet:1.1 )
net-misc/curl
net-misc/iputils
|| ( net-misc/netkit-telnetd net-misc/telnet-bsd )
"
DEPEND="${RDEPEND}
doc? (
dev-libs/libxslt
app-text/docbook-xsl-stylesheets
)"
S="${WORKDIR}/Reusable-Cluster-Components-glue--${MY_P}"
pkg_setup() {
enewgroup haclient
enewuser hacluster -1 /dev/null /var/lib/heartbeat haclient
}
src_prepare() {
default
sed -e '/ -ggdb/d;/-fstack-protector-all/d' -i configure.ac || die
sed -e "s@http://docbook.sourceforge.net/release/xsl/current@/usr/share/sgml/docbook/xsl-stylesheets/@g" \
-i doc/Makefile.am || die
eautoreconf
}
src_configure() {
append-cppflags -DOPENIPMI_DEFINE_SELECTOR_T
local myopts
use doc && myopts=" --enable-doc"
econf \
$(use_enable ipmilan) \
$(use_enable libnet) \
$(use_enable static-libs static) \
--disable-fatal-warnings \
--disable-dependency-tracking \
--docdir=/usr/share/doc/${PF} \
--localstatedir=/var \
--with-ocf-root=/usr/$(get_libdir)/ocf \
${myopts} \
--with-group-id=$(id -g hacluster) \
--with-ccmuser-id=$(id -u hacluster) \
--with-daemon-user=hacluster --with-daemon-group=haclient
}
src_install() {
default
dodir /var/lib/heartbeat/cores
dodir /var/lib/heartbeat/lrm
keepdir /var/lib/heartbeat/cores
keepdir /var/lib/heartbeat/lrm
# init.d file
cp "${FILESDIR}"/heartbeat-logd.init "${T}/" || die
sed -i \
-e "s:%libdir%:$(get_libdir):" \
"${T}/heartbeat-logd.init" || die
# newinitd "${T}/heartbeat-logd.init" heartbeat-logd
rm "${D}"/etc/init.d/logd
use static-libs || find "${D}" -type f -name "*.la" -delete
}
pkg_postinst() {
chown -R hacluster:haclient /var/lib/heartbeat/cores
chown -R hacluster:haclient /var/lib/heartbeat/lrm
}
|