# Copyright 1999-2007 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 # $Header: /var/cvsroot/gentoo-x86/sys-cluster/cman/cman-1.04.00.ebuild,v 1.5 2007/07/14 22:18:04 mr_bones_ Exp $ inherit eutils CLUSTER_RELEASE="${PV}" MY_P="cluster-${CLUSTER_RELEASE}" DESCRIPTION="general-purpose symmetric cluster manager" HOMEPAGE="http://sources.redhat.com/cluster/" SRC_URI="ftp://sources.redhat.com/pub/cluster/releases/${MY_P}.tar.gz" LICENSE="GPL-2" SLOT="0" KEYWORDS="~amd64 ~ia64 ~ppc ~ppc64 ~x86" IUSE="" RDEPEND="=sys-cluster/openais-0.80.3" DEPEND="=sys-cluster/ccs-${CLUSTER_RELEASE}* ${RDEPEND}" S="${WORKDIR}/${MY_P}/${PN}" src_compile() { (cd ..; ./configure \ --sbindir=/usr/sbin \ --cc="$(tc-getCC)" \ --cflags="-Wall" \ ) || die "configure problem" make -C cman_tool || die "compile problem" make -C daemon || die "compile problem" env -u CFLAGS make -C qdisk || die "compile problem" make -C init.d || die "compile problem" make -C man || die "compile problem" } src_install() { emake DESTDIR=${D} install || die "install problem" }