diff options
author | Patrick Lauer <patrick@gentoo.org> | 2014-09-19 05:59:56 +0000 |
---|---|---|
committer | Patrick Lauer <patrick@gentoo.org> | 2014-09-19 05:59:56 +0000 |
commit | e6562ebd96db7486ca6069c259f1d1473f0d9985 (patch) | |
tree | bb8840d21d1a4c3c178a2b8f4713d2049e380f17 /dev-lang/moarvm | |
parent | Add new revision to create a stable candidate. (diff) | |
download | gentoo-2-e6562ebd96db7486ca6069c259f1d1473f0d9985.tar.gz gentoo-2-e6562ebd96db7486ca6069c259f1d1473f0d9985.tar.bz2 gentoo-2-e6562ebd96db7486ca6069c259f1d1473f0d9985.zip |
Bump
(Portage version: 2.2.13/cvs/Linux x86_64, unsigned Manifest commit)
Diffstat (limited to 'dev-lang/moarvm')
-rw-r--r-- | dev-lang/moarvm/ChangeLog | 7 | ||||
-rw-r--r-- | dev-lang/moarvm/moarvm-2014.09.ebuild | 31 |
2 files changed, 37 insertions, 1 deletions
diff --git a/dev-lang/moarvm/ChangeLog b/dev-lang/moarvm/ChangeLog index 40cc91ceb095..0fa3a8cd832c 100644 --- a/dev-lang/moarvm/ChangeLog +++ b/dev-lang/moarvm/ChangeLog @@ -1,6 +1,11 @@ # ChangeLog for dev-lang/moarvm # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/dev-lang/moarvm/ChangeLog,v 1.18 2014/08/25 04:30:54 patrick Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-lang/moarvm/ChangeLog,v 1.19 2014/09/19 05:59:56 patrick Exp $ + +*moarvm-2014.09 (19 Sep 2014) + + 19 Sep 2014; Patrick Lauer <patrick@gentoo.org> +moarvm-2014.09.ebuild: + Bump *moarvm-2014.08 (25 Aug 2014) diff --git a/dev-lang/moarvm/moarvm-2014.09.ebuild b/dev-lang/moarvm/moarvm-2014.09.ebuild new file mode 100644 index 000000000000..2270e08dc12d --- /dev/null +++ b/dev-lang/moarvm/moarvm-2014.09.ebuild @@ -0,0 +1,31 @@ +# Copyright 1999-2014 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/dev-lang/moarvm/moarvm-2014.09.ebuild,v 1.1 2014/09/19 05:59:56 patrick Exp $ + +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" +DEPEND="${RDEPEND} + dev-lang/perl" + +S="${WORKDIR}/MoarVM-${PV}" + +src_configure() { + perl Configure.pl --prefix="${D}/usr"|| die +} + +src_install() { + emake install +} |