Gentoo Archives: gentoo-commits

From: "Diego Petteno (flameeyes)" <flameeyes@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in x11-plugins/wmwifi: ChangeLog wmwifi-0.6.ebuild
Date: Thu, 02 Dec 2010 15:46:20
Message-Id: 20101202154606.70C8620054@flycatcher.gentoo.org
1 flameeyes 10/12/02 15:46:06
2
3 Modified: ChangeLog wmwifi-0.6.ebuild
4 Log:
5 QA: remove unneeded dependency over automake 1.4; remove unneeded src_unpack; add die statements to install.
6
7 (Portage version: 2.2.0_alpha6/cvs/Linux x86_64)
8
9 Revision Changes Path
10 1.20 x11-plugins/wmwifi/ChangeLog
11
12 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-plugins/wmwifi/ChangeLog?rev=1.20&view=markup
13 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-plugins/wmwifi/ChangeLog?rev=1.20&content-type=text/plain
14 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-plugins/wmwifi/ChangeLog?r1=1.19&r2=1.20
15
16 Index: ChangeLog
17 ===================================================================
18 RCS file: /var/cvsroot/gentoo-x86/x11-plugins/wmwifi/ChangeLog,v
19 retrieving revision 1.19
20 retrieving revision 1.20
21 diff -u -r1.19 -r1.20
22 --- ChangeLog 28 Jun 2008 07:22:01 -0000 1.19
23 +++ ChangeLog 2 Dec 2010 15:46:06 -0000 1.20
24 @@ -1,6 +1,10 @@
25 # ChangeLog for x11-plugins/wmwifi
26 -# Copyright 2000-2008 Gentoo Foundation; Distributed under the GPL v2
27 -# $Header: /var/cvsroot/gentoo-x86/x11-plugins/wmwifi/ChangeLog,v 1.19 2008/06/28 07:22:01 maekke Exp $
28 +# Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2
29 +# $Header: /var/cvsroot/gentoo-x86/x11-plugins/wmwifi/ChangeLog,v 1.20 2010/12/02 15:46:06 flameeyes Exp $
30 +
31 + 02 Dec 2010; Diego E. Pettenò <flameeyes@g.o> wmwifi-0.6.ebuild:
32 + QA: remove unneeded dependency over automake 1.4; remove unneeded src_unpack;
33 + add die statements to install.
34
35 28 Jun 2008; Markus Meier <maekke@g.o> wmwifi-0.6.ebuild:
36 x86 stable, bug #229597
37
38
39
40 1.5 x11-plugins/wmwifi/wmwifi-0.6.ebuild
41
42 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-plugins/wmwifi/wmwifi-0.6.ebuild?rev=1.5&view=markup
43 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-plugins/wmwifi/wmwifi-0.6.ebuild?rev=1.5&content-type=text/plain
44 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-plugins/wmwifi/wmwifi-0.6.ebuild?r1=1.4&r2=1.5
45
46 Index: wmwifi-0.6.ebuild
47 ===================================================================
48 RCS file: /var/cvsroot/gentoo-x86/x11-plugins/wmwifi/wmwifi-0.6.ebuild,v
49 retrieving revision 1.4
50 retrieving revision 1.5
51 diff -u -r1.4 -r1.5
52 --- wmwifi-0.6.ebuild 28 Jun 2008 07:22:01 -0000 1.4
53 +++ wmwifi-0.6.ebuild 2 Dec 2010 15:46:06 -0000 1.5
54 @@ -1,6 +1,6 @@
55 -# Copyright 1999-2008 Gentoo Foundation
56 +# Copyright 1999-2010 Gentoo Foundation
57 # Distributed under the terms of the GNU General Public License v2
58 -# $Header: /var/cvsroot/gentoo-x86/x11-plugins/wmwifi/wmwifi-0.6.ebuild,v 1.4 2008/06/28 07:22:01 maekke Exp $
59 +# $Header: /var/cvsroot/gentoo-x86/x11-plugins/wmwifi/wmwifi-0.6.ebuild,v 1.5 2010/12/02 15:46:06 flameeyes Exp $
60
61 IUSE=""
62 HOMEPAGE="http://wmwifi.digitalssg.net"
63 @@ -17,16 +17,7 @@
64 x11-libs/libXpm"
65 DEPEND="${RDEPEND}
66 x11-proto/xextproto
67 - x11-proto/xproto
68 - =sys-devel/automake-1.4*"
69 -
70 -src_unpack()
71 -{
72 - unpack ${A}
73 -
74 - # eek - package is already compiled!
75 - rm "${S}/src/*.o" "${S}/src/wmwifi"
76 -}
77 + x11-proto/xproto"
78
79 src_compile()
80 {
81 @@ -38,7 +29,7 @@
82
83 src_install()
84 {
85 - dobin src/wmwifi
86 - doman wmwifi.1
87 - dodoc AUTHORS README
88 + dobin src/wmwifi || die
89 + doman wmwifi.1 || die
90 + dodoc AUTHORS README || die
91 }