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.
dev-lang/moarvm: re-add 9999, based on 2016.04-r1
- Loading branch information
Showing
1 changed file
with
48 additions
and
16 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,36 +1,68 @@ | ||
# Copyright 1999-2014 Gentoo Foundation | ||
# Copyright 1999-2016 Gentoo Foundation | ||
# Distributed under the terms of the GNU General Public License v2 | ||
# $Id$ | ||
|
||
EAPI=5 | ||
EAPI=6 | ||
|
||
inherit eutils git-r3 | ||
inherit flag-o-matic | ||
|
||
MY_PN="MoarVM" | ||
if [[ ${PV} == "9999" ]]; then | ||
EGIT_REPO_URI="https://github.com/${MY_PN}/${MY_PN}.git" | ||
inherit git-r3 | ||
KEYWORDS="" | ||
S="${WORKDIR}/${P}" | ||
else | ||
SRC_URI="https://moarvm.org/releases/${MY_PN}-${PV}.tar.gz" | ||
KEYWORDS="~amd64 ~x86" | ||
S="${WORKDIR}/${MY_PN}-${PV}" | ||
fi | ||
|
||
DESCRIPTION="A 6model-based VM for NQP and Rakudo Perl 6" | ||
HOMEPAGE="https://github.com/MoarVM/MoarVM" | ||
EGIT_REPO_URI="https://github.com/MoarVM/MoarVM.git" | ||
|
||
HOMEPAGE="http://moarvm.org" | ||
LICENSE="Artistic-2" | ||
SLOT="0" | ||
KEYWORDS="" | ||
IUSE="doc" | ||
IUSE="asan clang debug doc +jit static-libs +system-libs optimize ubsan" | ||
|
||
RDEPEND="" | ||
RDEPEND="dev-libs/libatomic_ops | ||
dev-libs/libtommath | ||
dev-libs/libuv | ||
jit? ( dev-lang/lua:0[deprecated] | ||
dev-lua/LuaBitOp ) | ||
virtual/libffi" | ||
DEPEND="${RDEPEND} | ||
clang? ( >=sys-devel/clang-3.1 ) | ||
dev-lang/perl" | ||
|
||
PATCHES=( "${FILESDIR}/Configure-2016.04.patch" ) | ||
DOCS=( CREDITS README.markdown ) | ||
|
||
# Tests are conducted via nqp | ||
RESTRICT=test | ||
|
||
src_prepare() { | ||
epatch "${FILESDIR}/Configure-9999.patch" || die | ||
eapply "${PATCHES[@]}" | ||
eapply_user | ||
use doc && DOCS+=( docs/* ) | ||
} | ||
|
||
src_configure() { | ||
# this is quite badong, but wtf build system | ||
echo "2013.10-145-gec52026" >> VERSION | ||
perl Configure.pl --prefix="${D}/usr"|| die | ||
} | ||
local myconfigargs=( | ||
"--prefix=/usr" | ||
"--libdir=$(get_libdir)" | ||
"--compiler=$(usex clang clang gcc)" | ||
"$(usex asan --asan)" | ||
"$(usex debug --debug --no-debug)" | ||
"$(usex jit --lua=/usr/bin/lua --no-jit)" | ||
"$(usex optimize --optimize= --no-optimize)" | ||
"$(usex static-libs --static)" | ||
"$(usex system-libs --has-libtommath)" | ||
"$(usex system-libs --has-libuv)" | ||
"$(usex system-libs --has-libatomic_ops)" | ||
"$(usex system-libs --has-libffi)" | ||
"$(usex ubsan --ubsan)" | ||
) | ||
use optimize && filter-flags '-O*' | ||
|
||
src_install() { | ||
make install | ||
perl Configure.pl "${myconfigargs[@]}" || die | ||
} |