Gentoo Archives: gentoo-commits

From: "Diego Petteno (flameeyes)" <flameeyes@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in dev-lang/mozart: ChangeLog mozart-1.4.0.ebuild
Date: Wed, 29 Oct 2008 11:31:30
Message-Id: E1Kv9Gn-0007l5-Ud@stork.gentoo.org
1 flameeyes 08/10/29 11:31:25
2
3 Modified: ChangeLog mozart-1.4.0.ebuild
4 Log:
5 Force -j1 during install, see bug #244872.
6 (Portage version: 2.2_rc12/cvs/Linux 2.6.27-gentoo-r1 x86_64)
7
8 Revision Changes Path
9 1.22 dev-lang/mozart/ChangeLog
10
11 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-lang/mozart/ChangeLog?rev=1.22&view=markup
12 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-lang/mozart/ChangeLog?rev=1.22&content-type=text/plain
13 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-lang/mozart/ChangeLog?r1=1.21&r2=1.22
14
15 Index: ChangeLog
16 ===================================================================
17 RCS file: /var/cvsroot/gentoo-x86/dev-lang/mozart/ChangeLog,v
18 retrieving revision 1.21
19 retrieving revision 1.22
20 diff -u -r1.21 -r1.22
21 --- ChangeLog 26 Aug 2008 07:33:11 -0000 1.21
22 +++ ChangeLog 29 Oct 2008 11:31:25 -0000 1.22
23 @@ -1,6 +1,9 @@
24 # ChangeLog for dev-lang/mozart
25 # Copyright 1999-2008 Gentoo Foundation; Distributed under the GPL v2
26 -# $Header: /var/cvsroot/gentoo-x86/dev-lang/mozart/ChangeLog,v 1.21 2008/08/26 07:33:11 keri Exp $
27 +# $Header: /var/cvsroot/gentoo-x86/dev-lang/mozart/ChangeLog,v 1.22 2008/10/29 11:31:25 flameeyes Exp $
28 +
29 + 29 Oct 2008; Diego Pettenò <flameeyes@g.o> mozart-1.4.0.ebuild:
30 + Force -j1 during install, see bug #244872.
31
32 26 Aug 2008; <keri@g.o> +files/mozart-1.4.0-dss-libpath.patch,
33 mozart-1.4.0.ebuild:
34
35
36
37 1.4 dev-lang/mozart/mozart-1.4.0.ebuild
38
39 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-lang/mozart/mozart-1.4.0.ebuild?rev=1.4&view=markup
40 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-lang/mozart/mozart-1.4.0.ebuild?rev=1.4&content-type=text/plain
41 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-lang/mozart/mozart-1.4.0.ebuild?r1=1.3&r2=1.4
42
43 Index: mozart-1.4.0.ebuild
44 ===================================================================
45 RCS file: /var/cvsroot/gentoo-x86/dev-lang/mozart/mozart-1.4.0.ebuild,v
46 retrieving revision 1.3
47 retrieving revision 1.4
48 diff -u -r1.3 -r1.4
49 --- mozart-1.4.0.ebuild 26 Aug 2008 07:33:11 -0000 1.3
50 +++ mozart-1.4.0.ebuild 29 Oct 2008 11:31:25 -0000 1.4
51 @@ -1,6 +1,6 @@
52 # Copyright 1999-2008 Gentoo Foundation
53 # Distributed under the terms of the GNU General Public License v2
54 -# $Header: /var/cvsroot/gentoo-x86/dev-lang/mozart/mozart-1.4.0.ebuild,v 1.3 2008/08/26 07:33:11 keri Exp $
55 +# $Header: /var/cvsroot/gentoo-x86/dev-lang/mozart/mozart-1.4.0.ebuild,v 1.4 2008/10/29 11:31:25 flameeyes Exp $
56
57 inherit elisp-common eutils
58
59 @@ -81,7 +81,8 @@
60 }
61
62 src_install() {
63 - emake \
64 + # Parallel make install issues, bug #244872
65 + emake -j1 \
66 PREFIX="${D}"/usr/lib/mozart \
67 ELISPDIR="${D}${SITELISP}/${PN}" \
68 install || die "emake install failed"