Gentoo Archives: gentoo-commits

From: "Diego Petteno (flameeyes)" <flameeyes@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in app-emulation/softgun: ChangeLog softgun-0.16.ebuild
Date: Mon, 04 Jan 2010 03:33:14
Message-Id: E1NRdgu-00074G-3l@stork.gentoo.org
1 flameeyes 10/01/04 03:33:12
2
3 Modified: ChangeLog softgun-0.16.ebuild
4 Log:
5 Die when make fails.
6 (Portage version: 2.2_rc61/cvs/Linux x86_64)
7
8 Revision Changes Path
9 1.9 app-emulation/softgun/ChangeLog
10
11 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-emulation/softgun/ChangeLog?rev=1.9&view=markup
12 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-emulation/softgun/ChangeLog?rev=1.9&content-type=text/plain
13 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-emulation/softgun/ChangeLog?r1=1.8&r2=1.9
14
15 Index: ChangeLog
16 ===================================================================
17 RCS file: /var/cvsroot/gentoo-x86/app-emulation/softgun/ChangeLog,v
18 retrieving revision 1.8
19 retrieving revision 1.9
20 diff -u -r1.8 -r1.9
21 --- ChangeLog 3 Jan 2009 16:31:31 -0000 1.8
22 +++ ChangeLog 4 Jan 2010 03:33:11 -0000 1.9
23 @@ -1,6 +1,9 @@
24 # ChangeLog for app-emulation/softgun
25 -# Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2
26 -# $Header: /var/cvsroot/gentoo-x86/app-emulation/softgun/ChangeLog,v 1.8 2009/01/03 16:31:31 armin76 Exp $
27 +# Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2
28 +# $Header: /var/cvsroot/gentoo-x86/app-emulation/softgun/ChangeLog,v 1.9 2010/01/04 03:33:11 flameeyes Exp $
29 +
30 + 04 Jan 2010; Diego E. Pettenò <flameeyes@g.o> softgun-0.16.ebuild:
31 + Die when make fails.
32
33 *softgun-0.16 (03 Jan 2009)
34
35
36
37
38 1.2 app-emulation/softgun/softgun-0.16.ebuild
39
40 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-emulation/softgun/softgun-0.16.ebuild?rev=1.2&view=markup
41 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-emulation/softgun/softgun-0.16.ebuild?rev=1.2&content-type=text/plain
42 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-emulation/softgun/softgun-0.16.ebuild?r1=1.1&r2=1.2
43
44 Index: softgun-0.16.ebuild
45 ===================================================================
46 RCS file: /var/cvsroot/gentoo-x86/app-emulation/softgun/softgun-0.16.ebuild,v
47 retrieving revision 1.1
48 retrieving revision 1.2
49 diff -u -r1.1 -r1.2
50 --- softgun-0.16.ebuild 3 Jan 2009 16:31:31 -0000 1.1
51 +++ softgun-0.16.ebuild 4 Jan 2010 03:33:11 -0000 1.2
52 @@ -1,6 +1,6 @@
53 -# Copyright 1999-2009 Gentoo Foundation
54 +# Copyright 1999-2010 Gentoo Foundation
55 # Distributed under the terms of the GNU General Public License v2
56 -# $Header: /var/cvsroot/gentoo-x86/app-emulation/softgun/softgun-0.16.ebuild,v 1.1 2009/01/03 16:31:31 armin76 Exp $
57 +# $Header: /var/cvsroot/gentoo-x86/app-emulation/softgun/softgun-0.16.ebuild,v 1.2 2010/01/04 03:33:11 flameeyes Exp $
58
59 inherit toolchain-funcs
60
61 @@ -22,11 +22,11 @@
62 }
63
64 src_compile() {
65 - emake CC="$(tc-getCC)"
66 + emake CC="$(tc-getCC)" || die
67 }
68
69 src_install() {
70 dodir /usr/bin
71 - emake install prefix="${D}/usr"
72 + emake install prefix="${D}/usr" || die
73 dodoc README configs/*.sg
74 }