# Copyright 1999-2009 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 # $Header: $ EAPI=2 inherit eutils multilib MY_PV=$( echo "${PV}" | sed -e 's/\./-/g' ) MY_P="${PN}-${MY_PV}" DESCRIPTION="A Perl 6 implementation built on the Parrot virtual machine" HOMEPAGE="http://rakudo.org/" SRC_URI="http://cloud.github.com/downloads/${PN}/${PN}/${MY_P}.tar.gz" LICENSE="Artistic-2" SLOT="0" KEYWORDS="~amd64 ~x86" IUSE="" DEPEND=">=dev-lang/parrot-1.7" RDEPEND="${DEPEND}" src_configure() { cd "${MY_P}" perl Configure.pl || die } src_compile() { cd "${MY_P}" gmake || die } src_install() { cd "${MY_P}" export DESTDIR="${D}" gmake install DESTDIR="${D}" || die }