# Copyright 1999-2004 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 # $Header: /var/cvsroot/gentoo-x86/sys-cluster/keepalived/keepalived-1.1.5.ebuild,v 1.6 2004/09/03 19:44:42 pvdabeel Exp $ DESCRIPTION="The main goal of the keepalived project is to add a strong & robust keepalive facility to the Linux Virtual Server project." HOMEPAGE="http://www.keepalived.org" LICENSE="GPL-2" DEPEND="dev-libs/popt sys-apps/iproute2" SRC_URI="http://www.keepalived.org/software/${P}.tar.gz" IUSE="debug" SLOT="0" KEYWORDS="x86 ~sparc ~amd64 ppc" src_compile() { local myconf myconf="--prefix=/" use debug && myconf="${myconf} --enable-debug" # use profile && myconf="${myconf} --enable-profile" cd "${S}" ./configure ${myconf} || die "configure failed" emake || die "make failed (myconf=${myconf})" } src_install() { cd "${S}" einstall || die exeinto /etc/init.d newexe ${FILESDIR}/init-keepalived keepalived dodoc doc/* doc/samples/* } pkg_postinst() { einfo "" einfo "If you want Linux Virtual Server support in" einfo "keepalived then you must emerge an LVS patched" einfo "kernel like gentoo-sources, compile with ipvs" einfo "support either as a module or built into the" einfo "kernel, emerge the ipvsadm userland tools," einfo "and reemerge keepalived." einfo "" einfo "For debug support add USE=\"debug\"" einfo "to your /etc/make.conf" einfo "" }