blob: a1ea652bab721d22c7d98960eea754456d412a7b (
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
|
# Copyright 1999-2004 Gentoo Technologies, Inc.
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/sys-cluster/heartbeat/heartbeat-1.1.5.ebuild,v 1.2 2004/02/11 07:39:31 iggy Exp $
DESCRIPTION="Heartbeat high availability cluster manager"
HOMEPAGE="http://www.linux-ha.org"
SRC_URI="http://www.linux-ha.org/download/${P}.tar.gz"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~x86 -mips"
IUSE="ldirectord"
DEPEND="dev-libs/popt
dev-libs/glib
net-libs/libnet
ldirectord? ( sys-cluster/ipvsadm
dev-perl/libwww-perl
dev-perl/perl-ldap
dev-perl/libnet )"
# need to add dev-perl/Mail-IMAPClient inside ldirectord above
fix_makefiles() {
einfo "fixing up the Makefiles"
sed -i -e 's:mkdir -p $(ckptvarlibdir):mkdir -p $(DESTDIR)$(ckptvarlibdir):' ${S}/telecom/checkpointd/Makefile* || die "failed to sed Makefiles"
aclocal
autoheader
libtoolize --ltdl --force --copy
automake --add-missing --include-deps
autoconf
}
src_unpack() {
unpack ${A}
cd ${S}
mv ltmain.sh ltmain.orig
echo "export _POSIX2_VERSION=199209" > ltmain.sh
cat ltmain.orig >> ltmain.sh
fix_makefiles
}
src_compile() {
./configure --prefix=/usr \
--sysconfdir=/etc \
--localstatedir=/var \
--with-group-name=cluster \
--with-group-id=65 \
--with-ccmuser-name=cluster \
--with-ccmuser-id=65 || die
emake || die
}
pkg_preinst() {
# check for cluster group, if it doesn't exist make it
if ! grep -q cluster.*65 /etc/group ; then
groupadd -g 65 cluster
fi
# check for cluster user, if it doesn't exist make it
if ! grep -q cluster.*65 /etc/passwd ; then
useradd -u 65 -g cluster -s /dev/null -d /var/lib/heartbeat cluster
fi
}
src_install() {
make DESTDIR=${D} install || die
# if ! USE="ldirectord" then don't install it
if [ ! `use ldirectord` ] ; then
rm ${D}/etc/init.d/ldirectord
rm ${D}/etc/logrotate.d/ldirectord
rm ${D}/usr/man/man8/supervise-ldirectord-config.8
rm ${D}/usr/man/man8/ldirectord.8
rm ${D}/usr/sbin/ldirectord
rm ${D}/usr/sbin/supervise-ldirectord-config
fi
exeinto /etc/init.d
newexe ${FILESDIR}/heartbeat-init heartbeat
}
|