blob: c83f704c3e8fd93f1ec48de6cf2f0fc7ce3ec46f (
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
36
37
38
39
40
41
42
|
# Copyright 1999-2010 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/app-emulation/ganeti-htools/ganeti-htools-0.2.8.ebuild,v 1.1 2010/12/23 16:52:40 ramereth Exp $
EAPI="2"
inherit multilib
DESCRIPTION="Cluster tools for fixing common allocation problems on Ganeti 2.0
clusters."
HOMEPAGE="http://code.google.com/p/ganeti/"
SRC_URI="http://ganeti.googlecode.com/files/${P}.tar.gz"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~amd64 ~x86"
IUSE="doc"
DEPEND="dev-lang/ghc
dev-haskell/json
dev-haskell/curl
dev-haskell/network"
RDEPEND="${DEPEND}"
src_prepare() {
# htools does not currently compile cleanly with ghc-6.12+, so remove this
# for now
sed -i -e "s:-Werror ::" Makefile
}
src_compile() {
emake -j1 || die "emake failed"
}
src_install() {
dosbin hspace hscan hbal
exeinto /usr/$(get_libdir)/ganeti/iallocators
doexe hail
doman *.1
dodoc README NEWS AUTHORS
use doc && dohtml -r apidoc/*
}
|