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/psemu-spunull: ChangeLog psemu-spunull-1.0.ebuild
Date: Fri, 30 Jan 2009 06:55:11
Message-Id: E1LSnHQ-00069a-1D@stork.gentoo.org
1 mr_bones_ 09/01/30 06:55:08
2
3 Modified: ChangeLog psemu-spunull-1.0.ebuild
4 Log:
5 EAPI=2; respect CC
6 (Portage version: 2.1.6.4/cvs/Linux 2.6.28.1 i686)
7
8 Revision Changes Path
9 1.5 games-emulation/psemu-spunull/ChangeLog
10
11 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/games-emulation/psemu-spunull/ChangeLog?rev=1.5&view=markup
12 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/games-emulation/psemu-spunull/ChangeLog?rev=1.5&content-type=text/plain
13 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/games-emulation/psemu-spunull/ChangeLog?r1=1.4&r2=1.5
14
15 Index: ChangeLog
16 ===================================================================
17 RCS file: /var/cvsroot/gentoo-x86/games-emulation/psemu-spunull/ChangeLog,v
18 retrieving revision 1.4
19 retrieving revision 1.5
20 diff -u -r1.4 -r1.5
21 --- ChangeLog 9 Feb 2007 07:47:47 -0000 1.4
22 +++ ChangeLog 30 Jan 2009 06:55:07 -0000 1.5
23 @@ -1,6 +1,10 @@
24 # ChangeLog for games-emulation/psemu-spunull
25 -# Copyright 2000-2007 Gentoo Foundation; Distributed under the GPL v2
26 -# $Header: /var/cvsroot/gentoo-x86/games-emulation/psemu-spunull/ChangeLog,v 1.4 2007/02/09 07:47:47 flameeyes Exp $
27 +# Copyright 2000-2009 Gentoo Foundation; Distributed under the GPL v2
28 +# $Header: /var/cvsroot/gentoo-x86/games-emulation/psemu-spunull/ChangeLog,v 1.5 2009/01/30 06:55:07 mr_bones_ Exp $
29 +
30 + 30 Jan 2009; Michael Sterrett <mr_bones_@g.o>
31 + psemu-spunull-1.0.ebuild:
32 + EAPI=2; respect CC
33
34 09 Feb 2007; Diego Pettenò <flameeyes@g.o> ChangeLog:
35 Regenerate digest in Manifest2 format.
36
37
38
39 1.6 games-emulation/psemu-spunull/psemu-spunull-1.0.ebuild
40
41 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/games-emulation/psemu-spunull/psemu-spunull-1.0.ebuild?rev=1.6&view=markup
42 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/games-emulation/psemu-spunull/psemu-spunull-1.0.ebuild?rev=1.6&content-type=text/plain
43 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/games-emulation/psemu-spunull/psemu-spunull-1.0.ebuild?r1=1.5&r2=1.6
44
45 Index: psemu-spunull-1.0.ebuild
46 ===================================================================
47 RCS file: /var/cvsroot/gentoo-x86/games-emulation/psemu-spunull/psemu-spunull-1.0.ebuild,v
48 retrieving revision 1.5
49 retrieving revision 1.6
50 diff -u -r1.5 -r1.6
51 --- psemu-spunull-1.0.ebuild 9 Apr 2007 17:28:43 -0000 1.5
52 +++ psemu-spunull-1.0.ebuild 30 Jan 2009 06:55:07 -0000 1.6
53 @@ -1,7 +1,8 @@
54 -# Copyright 1999-2007 Gentoo Foundation
55 +# Copyright 1999-2009 Gentoo Foundation
56 # Distributed under the terms of the GNU General Public License v2
57 -# $Header: /var/cvsroot/gentoo-x86/games-emulation/psemu-spunull/psemu-spunull-1.0.ebuild,v 1.5 2007/04/09 17:28:43 nyhm Exp $
58 +# $Header: /var/cvsroot/gentoo-x86/games-emulation/psemu-spunull/psemu-spunull-1.0.ebuild,v 1.6 2009/01/30 06:55:07 mr_bones_ Exp $
59
60 +EAPI=2
61 inherit eutils games
62
63 DESCRIPTION="PSEmu plugin to use a null sound driver"
64 @@ -15,14 +16,16 @@
65
66 S=${WORKDIR}
67
68 -src_unpack() {
69 - unpack ${A}
70 +src_prepare() {
71 epatch "${FILESDIR}"/${PV}-makefile-cflags.patch
72 + sed -i \
73 + -e 's/gcc/$(CC)/' \
74 + src/Makefile \
75 + || die "sed failed"
76 }
77
78 src_compile() {
79 - cd src
80 - emake OPTFLAGS="${CFLAGS}" || die "emake failed"
81 + emake -C src OPTFLAGS="${CFLAGS}" || die "emake failed"
82 }
83
84 src_install() {