# Copyright 1999-2010 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 # $Header: /var/cvsroot/gentoo-x86/dev-lang/rakudo/rakudo-2010.02.ebuild,v 1.2 2010/03/02 01:42:52 patrick Exp $ EAPI=3 inherit eutils multilib DESCRIPTION="A Perl 6 implementation built on the Parrot virtual machine" HOMEPAGE="http://rakudo.org/" SRC_URI="http://cloud.github.com/downloads/${PN}/${PN}/${P}.tar.gz" LICENSE="Artistic-2" SLOT="0" KEYWORDS="~amd64 ~x86" IUSE="doc" DEPEND=">=dev-lang/perl-5.10" RDEPEND="~dev-lang/parrot-2.3.0[unicode]" src_configure() { perl Configure.pl || die "configure failed" } src_test() { emake -j1 test } src_install() { emake DESTDIR="${ED}" install dodoc CREDITS README docs/ChangeLog docs/ROADMAP if use doc; then dohtml -A svg docs/architecture.html docs/architecture.svg dodoc docs/*.pod docinto announce dodoc docs/announce/* fi }