forked from gentoo/gentoo
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Package-Manager: Portage-2.3.24, Repoman-2.3.6
- Loading branch information
1 parent
57481f3
commit 0be11d4
Showing
2 changed files
with
73 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,72 @@ | ||
# Copyright 1999-2018 Gentoo Foundation | ||
# Distributed under the terms of the GNU General Public License v2 | ||
|
||
EAPI=5 | ||
|
||
inherit java-pkg-opt-2 | ||
|
||
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 | ||
KEYWORDS="" | ||
else | ||
SRC_URI="https://rakudo.perl6.org/downloads/${PN}/${P}.tar.gz" | ||
KEYWORDS="~amd64 ~x86" | ||
fi | ||
|
||
LICENSE="Artistic-2" | ||
SLOT="0" | ||
# TODO: add USE="javascript" once that's usable in nqp | ||
IUSE="clang java +moar test" | ||
REQUIRED_USE="|| ( java moar )" | ||
|
||
CDEPEND="~dev-lang/nqp-2018.02:${SLOT}=[java?,moar?,clang=]" | ||
RDEPEND="${CDEPEND} | ||
java? ( >=virtual/jre-1.7 )" | ||
DEPEND="${CDEPEND} | ||
clang? ( sys-devel/clang ) | ||
java? ( >=virtual/jdk-1.7 ) | ||
>=dev-lang/perl-5.10" | ||
|
||
pkg_pretend() { | ||
if has_version dev-lang/rakudo; then | ||
ewarn "Rakudo is known to fail compilation/installation with Rakudo" | ||
ewarn "already being installed. So if it fails, try unmerging dev-lang/rakudo," | ||
ewarn "then do a new installation." | ||
ewarn "(see Bug #584394)" | ||
fi | ||
} | ||
|
||
src_configure() { | ||
local backends | ||
use moar && backends+="moar," | ||
use java && backends+="jvm" | ||
|
||
local myargs=( | ||
"--prefix=/usr" | ||
"--sysroot=/" | ||
"--sdkroot=/" | ||
"--backends=${backends}" | ||
) | ||
|
||
perl Configure.pl "${myargs[@]}" || die | ||
|
||
if use java; then | ||
NQP=$(java-pkg_getjars --with-dependencies nqp) | ||
fi | ||
} | ||
|
||
src_compile() { | ||
emake DESTDIR="${D}" NQP_JARS="${NQP}" BLD_NQP_JARS="${NQP}" | ||
} | ||
|
||
src_install() { | ||
emake DESTDIR="${D}" NQP_JARS="${NQP}" BLD_NQP_JARS="${NQP}" install | ||
} | ||
|
||
src_test() { | ||
RAKUDO_PRECOMP_PREFIX=$(mktemp -d) default | ||
} |