Gentoo Archives: gentoo-commits

From: "Michele Noberasco (s4t4n)" <s4t4n@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in x11-plugins/wmjsql: ChangeLog wmjsql-0.5.ebuild
Date: Wed, 01 Sep 2010 07:40:40
Message-Id: 20100901074036.2249620051@flycatcher.gentoo.org
1 s4t4n 10/09/01 07:40:36
2
3 Modified: ChangeLog wmjsql-0.5.ebuild
4 Log:
5 Honour Gentoo LDFLAGS. Closes bug #332291.
6 Some magic sed to allow parallel make.
7 (Portage version: 2.1.8.3/cvs/Linux i686)
8
9 Revision Changes Path
10 1.12 x11-plugins/wmjsql/ChangeLog
11
12 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-plugins/wmjsql/ChangeLog?rev=1.12&view=markup
13 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-plugins/wmjsql/ChangeLog?rev=1.12&content-type=text/plain
14 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-plugins/wmjsql/ChangeLog?r1=1.11&r2=1.12
15
16 Index: ChangeLog
17 ===================================================================
18 RCS file: /var/cvsroot/gentoo-x86/x11-plugins/wmjsql/ChangeLog,v
19 retrieving revision 1.11
20 retrieving revision 1.12
21 diff -u -r1.11 -r1.12
22 --- ChangeLog 4 Jun 2009 00:27:18 -0000 1.11
23 +++ ChangeLog 1 Sep 2010 07:40:36 -0000 1.12
24 @@ -1,6 +1,10 @@
25 # ChangeLog for x11-plugins/wmjsql
26 -# Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2
27 -# $Header: /var/cvsroot/gentoo-x86/x11-plugins/wmjsql/ChangeLog,v 1.11 2009/06/04 00:27:18 tcunha Exp $
28 +# Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2
29 +# $Header: /var/cvsroot/gentoo-x86/x11-plugins/wmjsql/ChangeLog,v 1.12 2010/09/01 07:40:36 s4t4n Exp $
30 +
31 + 01 Sep 2010; Michele Noberasco <s4t4n@g.o> wmjsql-0.5.ebuild:
32 + Honour Gentoo LDFLAGS. Closes bug #332291.
33 + Some magic sed to allow parallel make.
34
35 04 Jun 2009; Tiago Cunha <tcunha@g.o> wmjsql-0.5.ebuild:
36 stable sparc, bug 215651
37
38
39
40 1.13 x11-plugins/wmjsql/wmjsql-0.5.ebuild
41
42 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-plugins/wmjsql/wmjsql-0.5.ebuild?rev=1.13&view=markup
43 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-plugins/wmjsql/wmjsql-0.5.ebuild?rev=1.13&content-type=text/plain
44 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-plugins/wmjsql/wmjsql-0.5.ebuild?r1=1.12&r2=1.13
45
46 Index: wmjsql-0.5.ebuild
47 ===================================================================
48 RCS file: /var/cvsroot/gentoo-x86/x11-plugins/wmjsql/wmjsql-0.5.ebuild,v
49 retrieving revision 1.12
50 retrieving revision 1.13
51 diff -u -r1.12 -r1.13
52 --- wmjsql-0.5.ebuild 22 Jul 2010 14:32:07 -0000 1.12
53 +++ wmjsql-0.5.ebuild 1 Sep 2010 07:40:36 -0000 1.13
54 @@ -1,6 +1,8 @@
55 # Copyright 1999-2010 Gentoo Foundation
56 # Distributed under the terms of the GNU General Public License v2
57 -# $Header: /var/cvsroot/gentoo-x86/x11-plugins/wmjsql/wmjsql-0.5.ebuild,v 1.12 2010/07/22 14:32:07 ssuominen Exp $
58 +# $Header: /var/cvsroot/gentoo-x86/x11-plugins/wmjsql/wmjsql-0.5.ebuild,v 1.13 2010/09/01 07:40:36 s4t4n Exp $
59 +
60 +EAPI=2
61
62 IUSE=""
63
64 @@ -23,10 +25,14 @@
65 LICENSE="GPL-2"
66 KEYWORDS="ppc sparc x86"
67
68 +src_prepare() {
69 + sed -i "s/make/\$(MAKE)/g" src/Makefile
70 +}
71 +
72 src_compile() {
73 cd "${S}"/src
74 make clean
75 - emake CFLAGS="${CFLAGS}" || die
76 + emake CFLAGS="${CFLAGS}" SYSTEM="${LDFLAGS}" || die
77 }
78
79 src_install() {