diff options
author | 2006-09-21 01:14:04 +0000 | |
---|---|---|
committer | 2006-09-21 01:14:04 +0000 | |
commit | caf5660a924ab4a59122efbeab15dfa7c1742e4d (patch) | |
tree | 4d342d72764c07f8b7b104b8259b7a5ef1a9a7e5 /sys-cluster/heartbeat/heartbeat-1.2.5-r1.ebuild | |
parent | Fixed HOMEPAGE. (diff) | |
download | gentoo-2-caf5660a924ab4a59122efbeab15dfa7c1742e4d.tar.gz gentoo-2-caf5660a924ab4a59122efbeab15dfa7c1742e4d.tar.bz2 gentoo-2-caf5660a924ab4a59122efbeab15dfa7c1742e4d.zip |
Fixed bug #146374.
(Portage version: 2.1-r1)
Diffstat (limited to 'sys-cluster/heartbeat/heartbeat-1.2.5-r1.ebuild')
-rw-r--r-- | sys-cluster/heartbeat/heartbeat-1.2.5-r1.ebuild | 74 |
1 files changed, 74 insertions, 0 deletions
diff --git a/sys-cluster/heartbeat/heartbeat-1.2.5-r1.ebuild b/sys-cluster/heartbeat/heartbeat-1.2.5-r1.ebuild new file mode 100644 index 000000000000..b2bb9e7cb3b2 --- /dev/null +++ b/sys-cluster/heartbeat/heartbeat-1.2.5-r1.ebuild @@ -0,0 +1,74 @@ +# Copyright 1999-2006 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/sys-cluster/heartbeat/heartbeat-1.2.5-r1.ebuild,v 1.1 2006/09/21 01:14:04 xmerlin Exp $ + +inherit flag-o-matic + +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 ~ppc ~amd64" +IUSE="ldirectord" + +DEPEND="dev-libs/popt + =dev-libs/glib-1.2* + net-libs/libnet + ldirectord? ( sys-cluster/ipvsadm + dev-perl/libwww-perl + dev-perl/perl-ldap + virtual/perl-libnet )" + +# need to add dev-perl/Mail-IMAPClient inside ldirectord above + +src_compile() { + append-ldflags -Wl,-z,now + + ./configure --prefix=/usr \ + --sysconfdir=/etc \ + --localstatedir=/var \ + --disable-fatal-warnings \ + --with-group-name=cluster \ + --with-group-id=65 \ + --with-ccmuser-name=cluster \ + --with-ccmuser-id=65 || die + emake -j 1 || die "compile problem" +} + +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 + + # heartbeat modules need these dirs + keepdir /var/lib/heartbeat/ckpt /var/lib/heartbeat/ccm /var/lib/heartbeat + + keepdir /etc/ha.d/conf + + dosym /usr/sbin/ldirectord /etc/ha.d/resource.d/ldirectord || 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 + rm ${D}/etc/ha.d/resource.d/ldirectord + fi + + exeinto /etc/init.d + newexe ${FILESDIR}/heartbeat-init heartbeat +} |