blob: b23377e51c8359eddf98b39294bf8f87ee8a9ff1 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
|
# Copyright 1999-2014 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-lang/rubinius/rubinius-2.2.9.ebuild,v 1.1 2014/06/12 06:17:02 graaff Exp $
EAPI=5
inherit eutils flag-o-matic multilib versionator
DESCRIPTION="A re-implementation of the Ruby VM designed for speed"
HOMEPAGE="http://rubini.us"
SRC_URI="http://releases.rubini.us/${P}.tar.bz2"
LICENSE="BSD"
KEYWORDS="~amd64"
SLOT="0"
IUSE="+llvm"
RDEPEND="
llvm? ( >=sys-devel/llvm-3.2 )
dev-libs/openssl
sys-libs/ncurses
sys-libs/readline
dev-libs/libyaml
virtual/libffi
sys-libs/zlib
"
DEPEND="${RDEPEND}
=dev-ruby/rake-10*
dev-ruby/bundler
"
pkg_setup() {
unset RUBYOPT
}
src_prepare() {
# src_test will wait until all processes are reaped, so tune down
# the long sleep process a bit.
sed -i -e 's/sleep 1000/sleep 300/' spec/ruby/core/io/popen_spec.rb || die
# Drop error CFLAGS per Gentoo policy.
sed -i -e '/Werror/ s:^:#:' rakelib/blueprint.rb || die
bundle --local || die
}
src_configure() {
#Rubinius uses a non-autoconf ./configure script which balks at econf
INSTALL="${EPREFIX}/usr/bin/install -c" ./configure --skip-prebuilt \
--prefix /usr/$(get_libdir) \
--mandir /usr/share/man \
--without-rpath \
--with-vendor-zlib \
$(use_enable llvm) \
|| die "Configure failed"
}
src_compile() {
rake build || die "Compilation failed"
}
src_test() {
rake spec || die "Tests failed"
einfo "Waiting for forked processes to die"
}
src_install() {
# The install phase tries to determine if there are relevant
addpredict /usr/local/lib64/ruby
local minor_version=$(get_version_component_range 1-2)
local librbx="usr/$(get_libdir)/rubinius"
DESTDIR="${D}" rake install || die "Installation failed"
dosym /${librbx}/${minor_version}/bin/rbx /usr/bin/rbx || die "Couldn't make rbx symlink"
insinto /${librbx}/${minor_version}/site
doins "${FILESDIR}/auto_gem.rb" || die "Couldn't install rbx auto_gem.rb"
RBX_RUNTIME="${S}/runtime" RBX_LIB="${S}/lib" bin/rbx compile "${D}/${librbx}/${minor_version}/site/auto_gem.rb" || die "Couldn't bytecompile auto_gem.rb"
}
|