Gentoo Archives: gentoo-commits

From: "PaweA Hajdan (phajdan.jr)" <phajdan.jr@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in dev-lang/v8: v8-2.4.9.10.ebuild ChangeLog
Date: Mon, 01 Nov 2010 11:47:26
Message-Id: 20101101114722.97C5B20051@flycatcher.gentoo.org
1 phajdan.jr 10/11/01 11:47:22
2
3 Modified: v8-2.4.9.10.ebuild ChangeLog
4 Log:
5 Convert to scons-utils eclass.
6 (Portage version: 2.1.8.3/cvs/Linux i686)
7
8 Revision Changes Path
9 1.2 dev-lang/v8/v8-2.4.9.10.ebuild
10
11 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-lang/v8/v8-2.4.9.10.ebuild?rev=1.2&view=markup
12 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-lang/v8/v8-2.4.9.10.ebuild?rev=1.2&content-type=text/plain
13 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-lang/v8/v8-2.4.9.10.ebuild?r1=1.1&r2=1.2
14
15 Index: v8-2.4.9.10.ebuild
16 ===================================================================
17 RCS file: /var/cvsroot/gentoo-x86/dev-lang/v8/v8-2.4.9.10.ebuild,v
18 retrieving revision 1.1
19 retrieving revision 1.2
20 diff -u -r1.1 -r1.2
21 --- v8-2.4.9.10.ebuild 31 Oct 2010 20:45:51 -0000 1.1
22 +++ v8-2.4.9.10.ebuild 1 Nov 2010 11:47:22 -0000 1.2
23 @@ -1,10 +1,10 @@
24 # Copyright 1999-2010 Gentoo Foundation
25 # Distributed under the terms of the GNU General Public License v2
26 -# $Header: /var/cvsroot/gentoo-x86/dev-lang/v8/v8-2.4.9.10.ebuild,v 1.1 2010/10/31 20:45:51 phajdan.jr Exp $
27 +# $Header: /var/cvsroot/gentoo-x86/dev-lang/v8/v8-2.4.9.10.ebuild,v 1.2 2010/11/01 11:47:22 phajdan.jr Exp $
28
29 EAPI="2"
30
31 -inherit eutils flag-o-matic multilib subversion toolchain-funcs
32 +inherit eutils flag-o-matic multilib scons-utils subversion toolchain-funcs
33
34 ESVN_REPO_URI="http://v8.googlecode.com/svn/tags/${PV}"
35
36 @@ -17,12 +17,9 @@
37 IUSE="readline"
38
39 RDEPEND="readline? ( >=sys-libs/readline-6.1 )"
40 -DEPEND="${RDEPEND}
41 - >=dev-util/scons-1.3.0"
42 +DEPEND="${RDEPEND}"
43
44 -v8_scons_opts() {
45 - echo "$(echo ${MAKEOPTS} | sed -r 's/.*(-j\s*|--jobs=)([0-9]+).*/-j\2/')"
46 -}
47 +EXTRA_ESCONS="library=shared soname=on"
48
49 pkg_setup() {
50 tc-export AR CC CXX RANLIB
51 @@ -63,13 +60,7 @@
52 die "Failed to determine target arch, got '$myarch'."
53 fi
54
55 - if use readline; then
56 - myconf="${myconf} console=readline"
57 - else
58 - myconf="${myconf} console=dumb"
59 - fi
60 -
61 - scons library=shared soname=on $(v8_scons_opts) ${myconf} . || die
62 + escons $(use_scons readline console readline dumb) ${myconf} . || die
63 }
64
65 src_install() {
66
67
68
69 1.8 dev-lang/v8/ChangeLog
70
71 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-lang/v8/ChangeLog?rev=1.8&view=markup
72 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-lang/v8/ChangeLog?rev=1.8&content-type=text/plain
73 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-lang/v8/ChangeLog?r1=1.7&r2=1.8
74
75 Index: ChangeLog
76 ===================================================================
77 RCS file: /var/cvsroot/gentoo-x86/dev-lang/v8/ChangeLog,v
78 retrieving revision 1.7
79 retrieving revision 1.8
80 diff -u -r1.7 -r1.8
81 --- ChangeLog 31 Oct 2010 20:45:51 -0000 1.7
82 +++ ChangeLog 1 Nov 2010 11:47:22 -0000 1.8
83 @@ -1,6 +1,9 @@
84 # ChangeLog for dev-lang/v8
85 # Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2
86 -# $Header: /var/cvsroot/gentoo-x86/dev-lang/v8/ChangeLog,v 1.7 2010/10/31 20:45:51 phajdan.jr Exp $
87 +# $Header: /var/cvsroot/gentoo-x86/dev-lang/v8/ChangeLog,v 1.8 2010/11/01 11:47:22 phajdan.jr Exp $
88 +
89 + 01 Nov 2010; Pawel Hajdan jr <phajdan.jr@g.o> v8-2.4.9.10.ebuild:
90 + Convert to scons-utils eclass.
91
92 *v8-2.4.9.10 (31 Oct 2010)