diff options
Diffstat (limited to 'app-emulation')
-rw-r--r-- | app-emulation/ganeti-htools/ChangeLog | 8 | ||||
-rw-r--r-- | app-emulation/ganeti-htools/ganeti-htools-0.2.6.ebuild | 42 |
2 files changed, 49 insertions, 1 deletions
diff --git a/app-emulation/ganeti-htools/ChangeLog b/app-emulation/ganeti-htools/ChangeLog index 744d1cc7bc95..56b787f99ceb 100644 --- a/app-emulation/ganeti-htools/ChangeLog +++ b/app-emulation/ganeti-htools/ChangeLog @@ -1,6 +1,12 @@ # ChangeLog for app-emulation/ganeti-htools # Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/app-emulation/ganeti-htools/ChangeLog,v 1.2 2010/05/07 21:16:08 ramereth Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-emulation/ganeti-htools/ChangeLog,v 1.3 2010/08/17 18:01:35 ramereth Exp $ + +*ganeti-htools-0.2.6 (17 Aug 2010) + + 17 Aug 2010; Lance Albertson <ramereth@gentoo.org> + +ganeti-htools-0.2.6.ebuild: + Version bump, install api docs optionally *ganeti-htools-0.2.5 (07 May 2010) diff --git a/app-emulation/ganeti-htools/ganeti-htools-0.2.6.ebuild b/app-emulation/ganeti-htools/ganeti-htools-0.2.6.ebuild new file mode 100644 index 000000000000..d4453394f86a --- /dev/null +++ b/app-emulation/ganeti-htools/ganeti-htools-0.2.6.ebuild @@ -0,0 +1,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.6.ebuild,v 1.1 2010/08/17 18:01:35 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/* +} |