diff options
Diffstat (limited to 'dev-lang/rakudo/rakudo-2016.01.1.ebuild')
-rw-r--r-- | dev-lang/rakudo/rakudo-2016.01.1.ebuild | 36 |
1 files changed, 0 insertions, 36 deletions
diff --git a/dev-lang/rakudo/rakudo-2016.01.1.ebuild b/dev-lang/rakudo/rakudo-2016.01.1.ebuild deleted file mode 100644 index 8c17dfb..0000000 --- a/dev-lang/rakudo/rakudo-2016.01.1.ebuild +++ /dev/null @@ -1,36 +0,0 @@ -# Copyright 1999-2016 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Id$ - -EAPI=6 - -DESCRIPTION="A compiler for the Perl 6 programming language" -HOMEPAGE="http://rakudo.org" - -if [[ ${PV} == "9999" ]]; then - EGIT_REPO_URI="https://github.com/rakudo/${PN}.git" - inherit git-r3 -else - SRC_URI="${HOMEPAGE}/downloads/${PN}/${P}.tar.gz" -fi - -LICENSE="Artistic-2" -SLOT="0" -KEYWORDS="~amd64 ~x86" -# TODO: add USE="javascript" once that's usable in nqp -IUSE="test" - -RDEPEND="=dev-lang/nqp-2016.01:=[moar]" -DEPEND="${RDEPEND} - >=dev-lang/perl-5.10" - -#PATCHES=(${FILESDIR}/${PV}) - -src_configure() { - perl Configure.pl --prefix=/usr --sysroot=/usr --backends=moar -} - -src_test() { - export RAKUDO_PRECOMP_PREFIX=$(mktemp -d) - default -} |