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/wmmldonkey: ChangeLog wmmldonkey-0.003.ebuild
Date: Mon, 19 Jan 2009 14:57:02
Message-Id: E1LOvYh-0000tH-C5@stork.gentoo.org
1 s4t4n 09/01/19 14:56:59
2
3 Modified: ChangeLog wmmldonkey-0.003.ebuild
4 Log:
5 Fixed compilation with --as-needed. Closes bug #248643.
6 Some ebuild QA fixes.
7 (Portage version: 2.1.6.4/cvs/Linux 2.6.24-tuxonice-r9 i686)
8
9 Revision Changes Path
10 1.7 x11-plugins/wmmldonkey/ChangeLog
11
12 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/x11-plugins/wmmldonkey/ChangeLog?rev=1.7&view=markup
13 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/x11-plugins/wmmldonkey/ChangeLog?rev=1.7&content-type=text/plain
14 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/x11-plugins/wmmldonkey/ChangeLog?r1=1.6&r2=1.7
15
16 Index: ChangeLog
17 ===================================================================
18 RCS file: /var/cvsroot/gentoo-x86/x11-plugins/wmmldonkey/ChangeLog,v
19 retrieving revision 1.6
20 retrieving revision 1.7
21 diff -u -r1.6 -r1.7
22 --- ChangeLog 22 Jul 2007 04:50:48 -0000 1.6
23 +++ ChangeLog 19 Jan 2009 14:56:59 -0000 1.7
24 @@ -1,6 +1,10 @@
25 # ChangeLog for x11-plugins/wmmldonkey
26 # Copyright 2000-2007 Gentoo Foundation; Distributed under the GPL v2
27 -# $Header: /var/cvsroot/gentoo-x86/x11-plugins/wmmldonkey/ChangeLog,v 1.6 2007/07/22 04:50:48 dberkholz Exp $
28 +# $Header: /var/cvsroot/gentoo-x86/x11-plugins/wmmldonkey/ChangeLog,v 1.7 2009/01/19 14:56:59 s4t4n Exp $
29 +
30 + 19 Jan 2009; Michele Noberasco <s4t4n@g.o> wmmldonkey-0.003.ebuild:
31 + Fixed compilation with --as-needed. Closes bug #248643.
32 + Some ebuild QA fixes.
33
34 22 Jul 2007; Donnie Berkholz <dberkholz@g.o>;
35 wmmldonkey-0.003.ebuild:
36
37
38
39 1.6 x11-plugins/wmmldonkey/wmmldonkey-0.003.ebuild
40
41 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/x11-plugins/wmmldonkey/wmmldonkey-0.003.ebuild?rev=1.6&view=markup
42 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/x11-plugins/wmmldonkey/wmmldonkey-0.003.ebuild?rev=1.6&content-type=text/plain
43 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/x11-plugins/wmmldonkey/wmmldonkey-0.003.ebuild?r1=1.5&r2=1.6
44
45 Index: wmmldonkey-0.003.ebuild
46 ===================================================================
47 RCS file: /var/cvsroot/gentoo-x86/x11-plugins/wmmldonkey/wmmldonkey-0.003.ebuild,v
48 retrieving revision 1.5
49 retrieving revision 1.6
50 diff -u -r1.5 -r1.6
51 --- wmmldonkey-0.003.ebuild 22 Jul 2007 04:50:48 -0000 1.5
52 +++ wmmldonkey-0.003.ebuild 19 Jan 2009 14:56:59 -0000 1.6
53 @@ -1,6 +1,6 @@
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/x11-plugins/wmmldonkey/wmmldonkey-0.003.ebuild,v 1.5 2007/07/22 04:50:48 dberkholz Exp $
58 +# $Header: /var/cvsroot/gentoo-x86/x11-plugins/wmmldonkey/wmmldonkey-0.003.ebuild,v 1.6 2009/01/19 14:56:59 s4t4n Exp $
59
60 DESCRIPTION="wmmsg is a dockapp to show the up and downloadrate from your mldonkey"
61 HOMEPAGE="http://dockapps.org/file.php/id/174"
62 @@ -17,9 +17,20 @@
63 DEPEND="${RDEPEND}
64 net-p2p/mldonkey"
65
66 +src_unpack()
67 +{
68 + unpack ${A}
69 +
70 + sed -e 's:gcc:gcc ${CFLAGS}:' \
71 + -e 's:gui_protocol.o endianess.o::' \
72 + -e 's:main.c -o wmmldonkey:main.c gui_protocol.o endianess.o -o wmmldonkey:' \
73 + -e 's:-lXpm -lXext:-lX11 -lXpm -lXext:' \
74 + -i "${S}/Makefile"
75 +}
76 +
77 src_install()
78 {
79 - dodoc CHANGELOG LICENSE README
80 + dodoc CHANGELOG README
81 exeinto /usr/bin
82 doexe wmmldonkey
83 }