diff options
author | Patrick Lauer <patrick@gentoo.org> | 2012-03-08 04:31:03 +0000 |
---|---|---|
committer | Patrick Lauer <patrick@gentoo.org> | 2012-03-08 04:31:03 +0000 |
commit | 8b487a63d371213a7a3dfb8cbc5dd73d7d961dd2 (patch) | |
tree | 826523c344574b31a459ee4b48374cefe563a910 /dev-lang/rakudo/rakudo-2012.02.ebuild | |
parent | Bump for #396243 (diff) | |
download | gentoo-2-8b487a63d371213a7a3dfb8cbc5dd73d7d961dd2.tar.gz gentoo-2-8b487a63d371213a7a3dfb8cbc5dd73d7d961dd2.tar.bz2 gentoo-2-8b487a63d371213a7a3dfb8cbc5dd73d7d961dd2.zip |
Bump
(Portage version: 2.2.0_alpha90/cvs/Linux x86_64)
Diffstat (limited to 'dev-lang/rakudo/rakudo-2012.02.ebuild')
-rw-r--r-- | dev-lang/rakudo/rakudo-2012.02.ebuild | 50 |
1 files changed, 50 insertions, 0 deletions
diff --git a/dev-lang/rakudo/rakudo-2012.02.ebuild b/dev-lang/rakudo/rakudo-2012.02.ebuild new file mode 100644 index 000000000000..8ad04f3178e4 --- /dev/null +++ b/dev-lang/rakudo/rakudo-2012.02.ebuild @@ -0,0 +1,50 @@ +# Copyright 1999-2012 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/dev-lang/rakudo/rakudo-2012.02.ebuild,v 1.1 2012/03/08 04:31:03 patrick Exp $ + +EAPI=3 + +PARROT_VERSION="4.1.0" +NQP_VERSION="${PV}" + +inherit eutils multilib + +DESCRIPTION="A Perl 6 implementation built on the Parrot virtual machine" +HOMEPAGE="http://rakudo.org/" +SRC_URI="mirror://github/${PN}/${PN}/${P}.tar.gz" + +LICENSE="Artistic-2" +SLOT="0" +KEYWORDS="~amd64 ~x86" +IUSE="doc" + +RDEPEND=">=dev-lang/parrot-${PARROT_VERSION}[unicode] + >=dev-lang/nqp-${NQP_VERSION}" +DEPEND="${RDEPEND} + dev-lang/perl" +# >=dev-lang/perl-5.10" + +src_prepare() { + sed -i "s,\$(DOCDIR)/rakudo$,&-${PVR}," tools/build/Makefile.in || die +} + +src_configure() { + perl Configure.pl || die +} + +src_test() { + emake -j1 test || die +} + +src_install() { + emake DESTDIR="${ED}" install || die + + dodoc CREDITS README docs/ChangeLog docs/ROADMAP || die + + if use doc; then + dohtml -A svg docs/architecture.html docs/architecture.svg || die + dodoc docs/*.pod || die + docinto announce + dodoc docs/announce/* || die + fi +} |