63 lines
1.5 KiB
Bash
63 lines
1.5 KiB
Bash
# Copyright 1999-2017 Gentoo Foundation
|
|
# Distributed under the terms of the GNU General Public License v2
|
|
|
|
EAPI="5"
|
|
|
|
MY_P="${P/resource-}"
|
|
inherit autotools base eutils multilib
|
|
|
|
DESCRIPTION="Resources pack for Heartbeat / Pacemaker"
|
|
HOMEPAGE="http://www.linux-ha.org/wiki/Resource_Agents"
|
|
SRC_URI="https://github.com/ClusterLabs/resource-agents/archive/v${PV}.tar.gz -> ${P}.tar.gz"
|
|
|
|
LICENSE="GPL-2"
|
|
SLOT="0"
|
|
KEYWORDS="amd64 hppa x86"
|
|
IUSE="doc libnet rgmanager"
|
|
|
|
RDEPEND="sys-apps/iproute2
|
|
sys-cluster/cluster-glue
|
|
!<sys-cluster/heartbeat-3.0
|
|
libnet? ( net-libs/libnet:1.1 )"
|
|
DEPEND="${RDEPEND}
|
|
doc? (
|
|
dev-libs/libxslt
|
|
app-text/docbook-xsl-stylesheets
|
|
)"
|
|
|
|
PATCHES=(
|
|
"${FILESDIR}/3.9.4-configure.patch"
|
|
)
|
|
|
|
src_prepare() {
|
|
base_src_prepare
|
|
eautoreconf
|
|
}
|
|
|
|
src_configure() {
|
|
econf \
|
|
--disable-dependency-tracking \
|
|
--disable-fatal-warnings \
|
|
--localstatedir=/var \
|
|
--docdir=/usr/share/doc/${PF} \
|
|
--libdir=/usr/$(get_libdir) \
|
|
--with-ocf-root=/usr/$(get_libdir)/ocf \
|
|
$(use_enable doc) \
|
|
$(use_enable libnet)
|
|
}
|
|
|
|
src_install() {
|
|
base_src_install
|
|
rm -rf "${D}"/etc/init.d/ || die
|
|
rm -rf "${D}"/var/run || die
|
|
use rgmanager || rm -rf "${D}"/usr/share/cluster/ "${D}"/var/
|
|
}
|
|
|
|
pkg_postinst() {
|
|
elog "To use Resource Agents installed in /usr/$(get_libdir)/ocf/resource.d"
|
|
elog "you have to emerge required runtime dependencies manually."
|
|
elog ""
|
|
elog "Description and dependencies of all Agents can be found on"
|
|
elog "http://www.linux-ha.org/wiki/Resource_Agents"
|
|
elog "or in the documentation of this package."
|
|
}
|