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-util/cweb: ChangeLog cweb-3.64.ebuild
Date: Mon, 03 Aug 2009 22:29:04
Message-Id: E1MY61e-0005Ed-4o@stork.gentoo.org
1 flameeyes 09/08/03 22:29:02
2
3 Modified: ChangeLog cweb-3.64.ebuild
4 Log:
5 Use -j1 for make (bug #258130).
6 (Portage version: 2.2_rc33/cvs/Linux x86_64)
7
8 Revision Changes Path
9 1.18 dev-util/cweb/ChangeLog
10
11 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-util/cweb/ChangeLog?rev=1.18&view=markup
12 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-util/cweb/ChangeLog?rev=1.18&content-type=text/plain
13 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-util/cweb/ChangeLog?r1=1.17&r2=1.18
14
15 Index: ChangeLog
16 ===================================================================
17 RCS file: /var/cvsroot/gentoo-x86/dev-util/cweb/ChangeLog,v
18 retrieving revision 1.17
19 retrieving revision 1.18
20 diff -u -r1.17 -r1.18
21 --- ChangeLog 3 Sep 2008 12:19:08 -0000 1.17
22 +++ ChangeLog 3 Aug 2009 22:29:02 -0000 1.18
23 @@ -1,6 +1,9 @@
24 # ChangeLog for dev-util/cweb
25 -# Copyright 2002-2008 Gentoo Foundation; Distributed under the GPL v2
26 -# $Header: /var/cvsroot/gentoo-x86/dev-util/cweb/ChangeLog,v 1.17 2008/09/03 12:19:08 opfer Exp $
27 +# Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2
28 +# $Header: /var/cvsroot/gentoo-x86/dev-util/cweb/ChangeLog,v 1.18 2009/08/03 22:29:02 flameeyes Exp $
29 +
30 + 03 Aug 2009; Diego E. Pettenò <flameeyes@g.o> cweb-3.64.ebuild:
31 + Use -j1 for make (bug #258130).
32
33 03 Sep 2008; Christian Faulhammer <opfer@g.o> cweb-3.64.ebuild:
34 remove cstex, it does not exist anymore
35
36
37
38 1.15 dev-util/cweb/cweb-3.64.ebuild
39
40 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-util/cweb/cweb-3.64.ebuild?rev=1.15&view=markup
41 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-util/cweb/cweb-3.64.ebuild?rev=1.15&content-type=text/plain
42 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-util/cweb/cweb-3.64.ebuild?r1=1.14&r2=1.15
43
44 Index: cweb-3.64.ebuild
45 ===================================================================
46 RCS file: /var/cvsroot/gentoo-x86/dev-util/cweb/cweb-3.64.ebuild,v
47 retrieving revision 1.14
48 retrieving revision 1.15
49 diff -u -r1.14 -r1.15
50 --- cweb-3.64.ebuild 3 Sep 2008 12:19:08 -0000 1.14
51 +++ cweb-3.64.ebuild 3 Aug 2009 22:29:02 -0000 1.15
52 @@ -1,6 +1,6 @@
53 -# Copyright 1999-2008 Gentoo Foundation
54 +# Copyright 1999-2009 Gentoo Foundation
55 # Distributed under the terms of the GNU General Public License v2
56 -# $Header: /var/cvsroot/gentoo-x86/dev-util/cweb/cweb-3.64.ebuild,v 1.14 2008/09/03 12:19:08 opfer Exp $
57 +# $Header: /var/cvsroot/gentoo-x86/dev-util/cweb/cweb-3.64.ebuild,v 1.15 2009/08/03 22:29:02 flameeyes Exp $
58
59 S=${WORKDIR}
60 DESCRIPTION="Knuth's and Levy's C/C++ documenting system"
61 @@ -18,8 +18,8 @@
62 !app-text/ptex"
63
64 src_compile() {
65 - #emake won't work, because cweave needs ctangle to compile
66 - make all CFLAGS="${CFLAGS}" LINKFLAGS="${LDFLAGS}" || die
67 + # bug #258130
68 + emake -j1 all CFLAGS="${CFLAGS}" LINKFLAGS="${LDFLAGS}" || die
69 }
70
71 src_install () {