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/xmame: xmame-0.106.ebuild ChangeLog
Date: Fri, 30 Jan 2009 14:51:23
Message-Id: E1LSuiH-0000Ib-B3@stork.gentoo.org
1 mr_bones_ 09/01/30 14:51:21
2
3 Modified: xmame-0.106.ebuild ChangeLog
4 Log:
5 not parallel build safe
6 (Portage version: 2.1.6.4/cvs/Linux 2.6.28.1 i686)
7
8 Revision Changes Path
9 1.9 games-emulation/xmame/xmame-0.106.ebuild
10
11 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/games-emulation/xmame/xmame-0.106.ebuild?rev=1.9&view=markup
12 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/games-emulation/xmame/xmame-0.106.ebuild?rev=1.9&content-type=text/plain
13 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/games-emulation/xmame/xmame-0.106.ebuild?r1=1.8&r2=1.9
14
15 Index: xmame-0.106.ebuild
16 ===================================================================
17 RCS file: /var/cvsroot/gentoo-x86/games-emulation/xmame/xmame-0.106.ebuild,v
18 retrieving revision 1.8
19 retrieving revision 1.9
20 diff -u -r1.8 -r1.9
21 --- xmame-0.106.ebuild 28 Feb 2008 19:05:57 -0000 1.8
22 +++ xmame-0.106.ebuild 30 Jan 2009 14:51:21 -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/xmame/xmame-0.106.ebuild,v 1.8 2008/02/28 19:05:57 mr_bones_ Exp $
28 +# $Header: /var/cvsroot/gentoo-x86/games-emulation/xmame/xmame-0.106.ebuild,v 1.9 2009/01/30 14:51:21 mr_bones_ Exp $
29
30 inherit flag-o-matic toolchain-funcs eutils games
31
32 @@ -149,20 +149,20 @@
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 - #emake DISPLAY_METHOD=ggi || die "emake failed (ggi)"
47 + #emake -j1 DISPLAY_METHOD=ggi || die "emake failed (ggi)"
48 #disp=1
49 ewarn "GGI support is currently (${PV}) broken :("
50 fi
51 if [[ ${disp} -eq 0 ]] || use opengl || use X || use dga || use xv ; then
52 - emake DISPLAY_METHOD=x11 || die "emake failed (x11)"
53 + emake -j1 DISPLAY_METHOD=x11 || die "emake failed (x11)"
54 fi
55 }
56
57
58
59
60 1.72 games-emulation/xmame/ChangeLog
61
62 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/games-emulation/xmame/ChangeLog?rev=1.72&view=markup
63 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/games-emulation/xmame/ChangeLog?rev=1.72&content-type=text/plain
64 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/games-emulation/xmame/ChangeLog?r1=1.71&r2=1.72
65
66 Index: ChangeLog
67 ===================================================================
68 RCS file: /var/cvsroot/gentoo-x86/games-emulation/xmame/ChangeLog,v
69 retrieving revision 1.71
70 retrieving revision 1.72
71 diff -u -r1.71 -r1.72
72 --- ChangeLog 12 Mar 2007 14:05:45 -0000 1.71
73 +++ ChangeLog 30 Jan 2009 14:51:21 -0000 1.72
74 @@ -1,6 +1,9 @@
75 # ChangeLog for games-emulation/xmame
76 -# Copyright 1999-2007 Gentoo Foundation; Distributed under the GPL v2
77 -# $Header: /var/cvsroot/gentoo-x86/games-emulation/xmame/ChangeLog,v 1.71 2007/03/12 14:05:45 genone Exp $
78 +# Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2
79 +# $Header: /var/cvsroot/gentoo-x86/games-emulation/xmame/ChangeLog,v 1.72 2009/01/30 14:51:21 mr_bones_ Exp $
80 +
81 + 30 Jan 2009; Michael Sterrett <mr_bones_@g.o> xmame-0.106.ebuild:
82 + not parallel build safe
83
84 12 Mar 2007; Marius Mauch <genone@g.o> xmame-0.106.ebuild:
85 Replacing einfo with elog