Gentoo Archives: gentoo-commits

From: "Christian Ruppert (idl0r)" <idl0r@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in dev-cpp/ctemplate: ChangeLog ctemplate-0.95.ebuild
Date: Wed, 24 Feb 2010 11:19:14
Message-Id: E1NkFGn-0001wH-GB@stork.gentoo.org
1 idl0r 10/02/24 11:19:09
2
3 Modified: ChangeLog ctemplate-0.95.ebuild
4 Log:
5 Move -j1 to emake install since this caused the parallel-build issues.
6 (Portage version: 2.2_rc63/cvs/Linux x86_64)
7
8 Revision Changes Path
9 1.6 dev-cpp/ctemplate/ChangeLog
10
11 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-cpp/ctemplate/ChangeLog?rev=1.6&view=markup
12 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-cpp/ctemplate/ChangeLog?rev=1.6&content-type=text/plain
13 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-cpp/ctemplate/ChangeLog?r1=1.5&r2=1.6
14
15 Index: ChangeLog
16 ===================================================================
17 RCS file: /var/cvsroot/gentoo-x86/dev-cpp/ctemplate/ChangeLog,v
18 retrieving revision 1.5
19 retrieving revision 1.6
20 diff -u -r1.5 -r1.6
21 --- ChangeLog 23 Feb 2010 09:53:07 -0000 1.5
22 +++ ChangeLog 24 Feb 2010 11:19:08 -0000 1.6
23 @@ -1,6 +1,9 @@
24 # ChangeLog for dev-cpp/ctemplate
25 # Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2
26 -# $Header: /var/cvsroot/gentoo-x86/dev-cpp/ctemplate/ChangeLog,v 1.5 2010/02/23 09:53:07 idl0r Exp $
27 +# $Header: /var/cvsroot/gentoo-x86/dev-cpp/ctemplate/ChangeLog,v 1.6 2010/02/24 11:19:08 idl0r Exp $
28 +
29 + 24 Feb 2010; Christian Ruppert <idl0r@g.o> ctemplate-0.95.ebuild:
30 + Move -j1 to emake install since this caused the parallel-build issues.
31
32 23 Feb 2010; Christian Ruppert <idl0r@g.o> ctemplate-0.95.ebuild:
33 Add -j1 due to parallel compilation issues. Add doc useflag for html docs.
34
35
36
37 1.3 dev-cpp/ctemplate/ctemplate-0.95.ebuild
38
39 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-cpp/ctemplate/ctemplate-0.95.ebuild?rev=1.3&view=markup
40 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-cpp/ctemplate/ctemplate-0.95.ebuild?rev=1.3&content-type=text/plain
41 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-cpp/ctemplate/ctemplate-0.95.ebuild?r1=1.2&r2=1.3
42
43 Index: ctemplate-0.95.ebuild
44 ===================================================================
45 RCS file: /var/cvsroot/gentoo-x86/dev-cpp/ctemplate/ctemplate-0.95.ebuild,v
46 retrieving revision 1.2
47 retrieving revision 1.3
48 diff -u -r1.2 -r1.3
49 --- ctemplate-0.95.ebuild 23 Feb 2010 09:53:07 -0000 1.2
50 +++ ctemplate-0.95.ebuild 24 Feb 2010 11:19:08 -0000 1.3
51 @@ -1,6 +1,6 @@
52 # Copyright 1999-2010 Gentoo Foundation
53 # Distributed under the terms of the GNU General Public License v2
54 -# $Header: /var/cvsroot/gentoo-x86/dev-cpp/ctemplate/ctemplate-0.95.ebuild,v 1.2 2010/02/23 09:53:07 idl0r Exp $
55 +# $Header: /var/cvsroot/gentoo-x86/dev-cpp/ctemplate/ctemplate-0.95.ebuild,v 1.3 2010/02/24 11:19:08 idl0r Exp $
56
57 EAPI="2"
58
59 @@ -21,7 +21,7 @@
60 SITEFILE="70ctemplate-gentoo.el"
61
62 src_compile() {
63 - emake -j1 || die "emake failed"
64 + emake || die "emake failed"
65
66 if use emacs ; then
67 elisp-compile contrib/tpl-mode.el || die "elisp-compile failed"
68 @@ -29,7 +29,7 @@
69 }
70
71 src_install() {
72 - emake DESTDIR="${D}" install || die "emake install failed"
73 + emake -j1 DESTDIR="${D}" install || die "emake install failed"
74
75 # Installs just every piece
76 rm -rf "${D}/usr/share/doc"