Gentoo Archives: gentoo-commits

From: "Michael Sterrett (mr_bones_)" <mr_bones_@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in games-emulation/xmess: xmess-0.106.ebuild ChangeLog
Date: Fri, 30 Jan 2009 14:45:13
Message-Id: E1LSucI-000092-Pg@stork.gentoo.org
1 mr_bones_ 09/01/30 14:45:10
2
3 Modified: xmess-0.106.ebuild ChangeLog
4 Log:
5 not parallel safe in the build
6 (Portage version: 2.1.6.4/cvs/Linux 2.6.28.1 i686)
7
8 Revision Changes Path
9 1.9 games-emulation/xmess/xmess-0.106.ebuild
10
11 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/games-emulation/xmess/xmess-0.106.ebuild?rev=1.9&view=markup
12 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/games-emulation/xmess/xmess-0.106.ebuild?rev=1.9&content-type=text/plain
13 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/games-emulation/xmess/xmess-0.106.ebuild?r1=1.8&r2=1.9
14
15 Index: xmess-0.106.ebuild
16 ===================================================================
17 RCS file: /var/cvsroot/gentoo-x86/games-emulation/xmess/xmess-0.106.ebuild,v
18 retrieving revision 1.8
19 retrieving revision 1.9
20 diff -u -r1.8 -r1.9
21 --- xmess-0.106.ebuild 9 Apr 2007 17:39:11 -0000 1.8
22 +++ xmess-0.106.ebuild 30 Jan 2009 14:45:10 -0000 1.9
23 @@ -1,6 +1,6 @@
24 -# Copyright 1999-2007 Gentoo Foundation
25 +# Copyright 1999-2009 Gentoo Foundation
26 # Distributed under the terms of the GNU General Public License v2
27 -# $Header: /var/cvsroot/gentoo-x86/games-emulation/xmess/xmess-0.106.ebuild,v 1.8 2007/04/09 17:39:11 nyhm Exp $
28 +# $Header: /var/cvsroot/gentoo-x86/games-emulation/xmess/xmess-0.106.ebuild,v 1.9 2009/01/30 14:45:10 mr_bones_ Exp $
29
30 inherit flag-o-matic toolchain-funcs eutils games
31
32 @@ -149,11 +149,11 @@
33 src_compile() {
34 local disp=0
35 if use sdl ; then
36 - emake DISPLAY_METHOD=SDL || die "emake failed (SDL)"
37 + emake -j1 DISPLAY_METHOD=SDL || die "emake failed (SDL)"
38 disp=1
39 fi
40 if use svga ; then
41 - emake DISPLAY_METHOD=svgalib || die "emake failed (svgalib)"
42 + emake -j1 DISPLAY_METHOD=svgalib || die "emake failed (svgalib)"
43 disp=1
44 fi
45 if use ggi ; then
46 @@ -162,7 +162,7 @@
47 ewarn "GGI support is currently (${PV}) broken :("
48 fi
49 if [[ ${disp} -eq 0 ]] || use opengl || use X || use dga || use xv ; then
50 - emake DISPLAY_METHOD=x11 || die "emake failed (x11)"
51 + emake -j1 DISPLAY_METHOD=x11 || die "emake failed (x11)"
52 fi
53 }
54
55
56
57
58 1.62 games-emulation/xmess/ChangeLog
59
60 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/games-emulation/xmess/ChangeLog?rev=1.62&view=markup
61 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/games-emulation/xmess/ChangeLog?rev=1.62&content-type=text/plain
62 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/games-emulation/xmess/ChangeLog?r1=1.61&r2=1.62
63
64 Index: ChangeLog
65 ===================================================================
66 RCS file: /var/cvsroot/gentoo-x86/games-emulation/xmess/ChangeLog,v
67 retrieving revision 1.61
68 retrieving revision 1.62
69 diff -u -r1.61 -r1.62
70 --- ChangeLog 13 Mar 2008 20:25:04 -0000 1.61
71 +++ ChangeLog 30 Jan 2009 14:45:10 -0000 1.62
72 @@ -1,6 +1,9 @@
73 # ChangeLog for games-emulation/xmess
74 -# Copyright 1999-2008 Gentoo Foundation; Distributed under the GPL v2
75 -# $Header: /var/cvsroot/gentoo-x86/games-emulation/xmess/ChangeLog,v 1.61 2008/03/13 20:25:04 wolf31o2 Exp $
76 +# Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2
77 +# $Header: /var/cvsroot/gentoo-x86/games-emulation/xmess/ChangeLog,v 1.62 2009/01/30 14:45:10 mr_bones_ Exp $
78 +
79 + 30 Jan 2009; Michael Sterrett <mr_bones_@g.o> xmess-0.106.ebuild:
80 + not parallel safe in the build
81
82 13 Mar 2008; Chris Gianelloni <wolf31o2@g.o> xmess-0.83.1.ebuild:
83 QA cleanup: Fix quoting (again).