blob: 2b1d02c62ad1d5789fc84965c434a2e87b47f5bf (
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
82
83
84
85
86
87
88
89
|
# Copyright 1999-2010 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-lang/v8/v8-2.4.9.6.ebuild,v 1.1 2010/10/29 08:34:53 phajdan.jr Exp $
EAPI="2"
inherit eutils flag-o-matic multilib subversion toolchain-funcs
ESVN_REPO_URI="http://v8.googlecode.com/svn/tags/${PV}"
DESCRIPTION="Google's open source JavaScript engine"
HOMEPAGE="http://code.google.com/p/v8"
LICENSE="BSD"
SLOT="0"
KEYWORDS="~amd64 ~x86"
IUSE="readline"
RDEPEND="readline? ( >=sys-libs/readline-6.1 )"
DEPEND="${RDEPEND}
>=dev-util/scons-1.3.0"
v8_scons_opts() {
echo "$(echo ${MAKEOPTS} | sed -r 's/.*(-j\s*|--jobs=)([0-9]+).*/-j\2/')"
}
pkg_setup() {
tc-export AR CC CXX RANLIB
}
src_prepare() {
# Stop -Werror from breaking the build.
epatch "${FILESDIR}"/${PN}-no-werror-r0.patch
# Respect the user's CFLAGS, including the optimization level.
epatch "${FILESDIR}"/${PN}-no-O3-r0.patch
# Locally fix http://code.google.com/p/v8/issues/detail?id=773.
epatch "${FILESDIR}"/${PN}-upstream-bug-773-r0.patch
# Remove a test that is known to fail:
# http://groups.google.com/group/v8-users/browse_thread/thread/b8a3f42b5aa18d06
rm test/mjsunit/debug-script.js || die
}
src_configure() {
# GCC issues multiple warnings about strict-aliasing issues in v8 code.
append-flags -fno-strict-aliasing
}
src_compile() {
local myconf=""
# Use target arch detection logic from bug #296917.
local myarch="$ABI"
[[ $myarch = "" ]] && myarch="$ARCH"
if [[ $myarch = amd64 ]] ; then
myconf+=" arch=x64"
elif [[ $myarch = x86 ]] ; then
myconf+=" arch=ia32"
else
die "Failed to determine target arch, got '$myarch'."
fi
if use readline; then
myconf="${myconf} console=readline"
else
myconf="${myconf} console=dumb"
fi
scons library=shared soname=on $(v8_scons_opts) ${myconf} . || die
}
src_install() {
insinto /usr
doins -r include || die
dobin d8 || die
dolib libv8-${PV}.so || die
dosym libv8-${PV}.so /usr/$(get_libdir)/libv8.so || die
dodoc AUTHORS ChangeLog || die
}
src_test() {
tools/test.py --no-build -p dots --shell d8 || die
}
|