summaryrefslogtreecommitdiff
path: root/dev-lang/moarvm/moarvm-2016.04.ebuild
diff options
context:
space:
mode:
authorPatrick Lauer <patrick@gentoo.org>2016-05-02 16:09:00 +0200
committerPatrick Lauer <patrick@gentoo.org>2016-05-02 16:56:30 +0200
commit4644c7bccfe16d0fa5f86b108ac3cfa8288d802b (patch)
tree0f086dad52bfdec52978f8352882c45ec40f6e1b /dev-lang/moarvm/moarvm-2016.04.ebuild
parent060647cd95b37f5545ed8082c94352f91352fcf9 (diff)
downloadgentoo-4644c7bccfe16d0fa5f86b108ac3cfa8288d802b.tar.gz
gentoo-4644c7bccfe16d0fa5f86b108ac3cfa8288d802b.tar.bz2
gentoo-4644c7bccfe16d0fa5f86b108ac3cfa8288d802b.zip
dev-lang/moarvm: Bump, use sytem pkgs where possible
Package-Manager: portage-2.2.28
Diffstat (limited to 'dev-lang/moarvm/moarvm-2016.04.ebuild')
-rw-r--r--dev-lang/moarvm/moarvm-2016.04.ebuild35
1 files changed, 35 insertions, 0 deletions
diff --git a/dev-lang/moarvm/moarvm-2016.04.ebuild b/dev-lang/moarvm/moarvm-2016.04.ebuild
new file mode 100644
index 000000000000..9ce8da2ab607
--- /dev/null
+++ b/dev-lang/moarvm/moarvm-2016.04.ebuild
@@ -0,0 +1,35 @@
+# Copyright 1999-2015 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI=5
+
+inherit eutils multilib
+
+MY_PN="MoarVM"
+
+DESCRIPTION="A 6model-based VM for NQP and Rakudo Perl 6"
+HOMEPAGE="http://moarvm.org"
+SRC_URI="http://moarvm.org/releases/${MY_PN}-${PV}.tar.gz"
+LICENSE="Artistic-2"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+IUSE="doc"
+
+RDEPEND="dev-libs/libuv
+ dev-libs/libtommath
+ dev-libs/libatomic_ops
+ dev-libs/libuv
+ "
+DEPEND="${RDEPEND}
+ dev-lang/perl"
+
+S="${WORKDIR}/MoarVM-${PV}"
+
+src_configure() {
+ perl Configure.pl --prefix="/usr" --has-libtommath --has-libatomic_ops --has-libuv || die
+}
+
+src_install() {
+ emake DESTDIR="${D}" install
+}