blob: 89f8cf30ab428dfe005a9699d79299cfa623f2f8 (
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
|
# Copyright 1999-2005 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/sys-cluster/feedbackd-agent/feedbackd-agent-0.4.ebuild,v 1.3 2005/06/30 23:39:29 xmerlin Exp $
inherit flag-o-matic
DESCRIPTION="system for dynamic feedback of server loads in a Linux Virtual Server (LVS)-based cluster"
HOMEPAGE="http://ozlabs.org/~jk/projects/feedbackd/"
SRC_URI="mirror://sourceforge/feedbackd/${P}.tar.gz"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="x86"
IUSE=""
DEPEND="virtual/libc
dev-libs/libxml2
dev-lang/perl"
src_compile() {
econf \
--sysconfdir=/etc \
--localstatedir=/var \
--with-xml-config=/usr/bin/xml2-config \
--with-perl=/usr/bin/perl \
|| die "bad ./configure"
emake || die
}
src_install() {
#make DESTDIR=${D} install || die
einstall || die
dodoc AUTHORS ChangeLog INSTALL NEWS README
}
|