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/yawmppp: ChangeLog yawmppp-2.0.2.ebuild
Date: Tue, 31 Aug 2010 14:54:38
Message-Id: 20100831145435.07E9720051@flycatcher.gentoo.org
1 s4t4n 10/08/31 14:54:35
2
3 Modified: ChangeLog yawmppp-2.0.2.ebuild
4 Log:
5 Honour Gentoo LDFLAGS. Closes bug #333997.
6 (Portage version: 2.1.8.3/cvs/Linux i686)
7
8 Revision Changes Path
9 1.10 x11-plugins/yawmppp/ChangeLog
10
11 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-plugins/yawmppp/ChangeLog?rev=1.10&view=markup
12 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-plugins/yawmppp/ChangeLog?rev=1.10&content-type=text/plain
13 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-plugins/yawmppp/ChangeLog?r1=1.9&r2=1.10
14
15 Index: ChangeLog
16 ===================================================================
17 RCS file: /var/cvsroot/gentoo-x86/x11-plugins/yawmppp/ChangeLog,v
18 retrieving revision 1.9
19 retrieving revision 1.10
20 diff -u -r1.9 -r1.10
21 --- ChangeLog 6 Feb 2007 02:06:50 -0000 1.9
22 +++ ChangeLog 31 Aug 2010 14:54:34 -0000 1.10
23 @@ -1,6 +1,9 @@
24 # ChangeLog for x11-plugins/yawmppp
25 -# Copyright 2002-2007 Gentoo Foundation; Distributed under the GPL v2
26 -# $Header: /var/cvsroot/gentoo-x86/x11-plugins/yawmppp/ChangeLog,v 1.9 2007/02/06 02:06:50 flameeyes Exp $
27 +# Copyright 2002-2010 Gentoo Foundation; Distributed under the GPL v2
28 +# $Header: /var/cvsroot/gentoo-x86/x11-plugins/yawmppp/ChangeLog,v 1.10 2010/08/31 14:54:34 s4t4n Exp $
29 +
30 + 31 Aug 2010; Michele Noberasco <s4t4n@g.o> ChangeLog:
31 + Honour Gentoo LDFLAGS. Closes bug #333997.
32
33 06 Feb 2007; Diego Pettenò <flameeyes@g.o> ChangeLog:
34 Regenerate digest in Manifest2 format.
35
36
37
38 1.8 x11-plugins/yawmppp/yawmppp-2.0.2.ebuild
39
40 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-plugins/yawmppp/yawmppp-2.0.2.ebuild?rev=1.8&view=markup
41 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-plugins/yawmppp/yawmppp-2.0.2.ebuild?rev=1.8&content-type=text/plain
42 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-plugins/yawmppp/yawmppp-2.0.2.ebuild?r1=1.7&r2=1.8
43
44 Index: yawmppp-2.0.2.ebuild
45 ===================================================================
46 RCS file: /var/cvsroot/gentoo-x86/x11-plugins/yawmppp/yawmppp-2.0.2.ebuild,v
47 retrieving revision 1.7
48 retrieving revision 1.8
49 diff -u -r1.7 -r1.8
50 --- yawmppp-2.0.2.ebuild 22 Jul 2010 14:35:43 -0000 1.7
51 +++ yawmppp-2.0.2.ebuild 31 Aug 2010 14:54:34 -0000 1.8
52 @@ -1,6 +1,6 @@
53 # Copyright 1999-2010 Gentoo Foundation
54 # Distributed under the terms of the GNU General Public License v2
55 -# $Header: /var/cvsroot/gentoo-x86/x11-plugins/yawmppp/yawmppp-2.0.2.ebuild,v 1.7 2010/07/22 14:35:43 ssuominen Exp $
56 +# $Header: /var/cvsroot/gentoo-x86/x11-plugins/yawmppp/yawmppp-2.0.2.ebuild,v 1.8 2010/08/31 14:54:34 s4t4n Exp $
57
58 inherit eutils
59
60 @@ -20,7 +20,17 @@
61 cd "${S}"/src/dockapp
62
63 #Fix bug #95959
64 - epatch "${FILESDIR}"/${P}-Makefile.in.patch
65 + epatch "${FILESDIR}"/"${P}-Makefile.in.patch"
66 +
67 + #Fix bug #333997
68 + sed -i 's/-o yawmppp/$(LDFLAGS) -o yawmppp/' Makefile.in
69 + sed -i 's/-o yagetmodemspeed/$(LDFLAGS) -o yagetmodemspeed/' Makefile.in
70 + cd ../thinppp
71 + sed -i 's/-o yawmppp.thin/$(LDFLAGS) -o yawmppp.thin/' Makefile.in
72 + cd ../gtklog
73 + sed -i 's/-o yawmppp.log/$(LDFLAGS) -o yawmppp.log/' Makefile.in
74 + cd ../gtksetup
75 + sed -i 's/-o yawmppp.pref/$(LDFLAGS) -o yawmppp.pref/' Makefile.in
76 }
77
78 src_compile() {