diff options
author | Patrick Lauer <patrick@gentoo.org> | 2014-02-18 08:36:53 +0000 |
---|---|---|
committer | Patrick Lauer <patrick@gentoo.org> | 2014-02-18 08:36:53 +0000 |
commit | 544bf2ed45b5b5bcd2f6ef7b31ea4a722ce0405a (patch) | |
tree | 7f6dcbca7fcaa08fc02bbc7b33a0f42df361ff37 /dev-lang/moarvm | |
parent | Update comment in mask for app-emacs/view-process. (diff) | |
download | gentoo-2-544bf2ed45b5b5bcd2f6ef7b31ea4a722ce0405a.tar.gz gentoo-2-544bf2ed45b5b5bcd2f6ef7b31ea4a722ce0405a.tar.bz2 gentoo-2-544bf2ed45b5b5bcd2f6ef7b31ea4a722ce0405a.zip |
Bump, new homepage and proper tarballs
(Portage version: 2.2.8-r1/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.01.ebuild | 30 |
2 files changed, 36 insertions, 1 deletions
diff --git a/dev-lang/moarvm/ChangeLog b/dev-lang/moarvm/ChangeLog index 39a6e2e1d423..b287f60f8511 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.7 2014/01/15 03:09:47 patrick Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-lang/moarvm/ChangeLog,v 1.8 2014/02/18 08:36:53 patrick Exp $ + +*moarvm-2014.01 (18 Feb 2014) + + 18 Feb 2014; Patrick Lauer <patrick@gentoo.org> +moarvm-2014.01.ebuild: + Bump, new homepage and proper tarballs 15 Jan 2014; Patrick Lauer <patrick@gentoo.org> moarvm-2013.10.ebuild, moarvm-9999.ebuild: diff --git a/dev-lang/moarvm/moarvm-2014.01.ebuild b/dev-lang/moarvm/moarvm-2014.01.ebuild new file mode 100644 index 000000000000..b35607725d1f --- /dev/null +++ b/dev-lang/moarvm/moarvm-2014.01.ebuild @@ -0,0 +1,30 @@ +# 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.01.ebuild,v 1.1 2014/02/18 08:36:53 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}" + +S="${WORKDIR}/MoarVM-${PV}" + +src_configure() { + perl Configure.pl --prefix="${D}/usr"|| die +} + +src_install() { + make install +} |