Gentoo Archives: gentoo-commits

From: "Samuli Suominen (ssuominen)" <ssuominen@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in x11-plugins/wmbattery: wmbattery-2.43.ebuild ChangeLog
Date: Thu, 19 Jun 2014 19:16:33
Message-Id: 20140619191629.BBEB82004E@flycatcher.gentoo.org
1 ssuominen 14/06/19 19:16:29
2
3 Modified: ChangeLog
4 Added: wmbattery-2.43.ebuild
5 Log:
6 Version bump; patch for excluding obsolete UPower API.
7
8 (Portage version: 2.2.10/cvs/Linux x86_64, signed Manifest commit with key 4868F14D)
9
10 Revision Changes Path
11 1.28 x11-plugins/wmbattery/ChangeLog
12
13 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-plugins/wmbattery/ChangeLog?rev=1.28&view=markup
14 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-plugins/wmbattery/ChangeLog?rev=1.28&content-type=text/plain
15 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-plugins/wmbattery/ChangeLog?r1=1.27&r2=1.28
16
17 Index: ChangeLog
18 ===================================================================
19 RCS file: /var/cvsroot/gentoo-x86/x11-plugins/wmbattery/ChangeLog,v
20 retrieving revision 1.27
21 retrieving revision 1.28
22 diff -u -r1.27 -r1.28
23 --- ChangeLog 26 May 2014 19:57:06 -0000 1.27
24 +++ ChangeLog 19 Jun 2014 19:16:29 -0000 1.28
25 @@ -1,6 +1,12 @@
26 # ChangeLog for x11-plugins/wmbattery
27 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
28 -# $Header: /var/cvsroot/gentoo-x86/x11-plugins/wmbattery/ChangeLog,v 1.27 2014/05/26 19:57:06 ssuominen Exp $
29 +# $Header: /var/cvsroot/gentoo-x86/x11-plugins/wmbattery/ChangeLog,v 1.28 2014/06/19 19:16:29 ssuominen Exp $
30 +
31 +*wmbattery-2.43 (19 Jun 2014)
32 +
33 + 19 Jun 2014; Samuli Suominen <ssuominen@g.o>
34 + +files/wmbattery-2.43-upower-0.99.patch, +wmbattery-2.43.ebuild:
35 + Version bump; patch for excluding obsolete UPower API.
36
37 26 May 2014; Samuli Suominen <ssuominen@g.o> wmbattery-2.42.ebuild:
38 Fix dependencies to allow sys-power/upower-pm-utils.
39
40
41
42 1.1 x11-plugins/wmbattery/wmbattery-2.43.ebuild
43
44 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-plugins/wmbattery/wmbattery-2.43.ebuild?rev=1.1&view=markup
45 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-plugins/wmbattery/wmbattery-2.43.ebuild?rev=1.1&content-type=text/plain
46
47 Index: wmbattery-2.43.ebuild
48 ===================================================================
49 # Copyright 1999-2014 Gentoo Foundation
50 # Distributed under the terms of the GNU General Public License v2
51 # $Header: /var/cvsroot/gentoo-x86/x11-plugins/wmbattery/wmbattery-2.43.ebuild,v 1.1 2014/06/19 19:16:29 ssuominen Exp $
52
53 EAPI=5
54 inherit autotools eutils
55
56 DESCRIPTION="A dockable app to report APM, ACPI, or SPIC battery status"
57 HOMEPAGE="http://joeyh.name/code/wmbattery/"
58 SRC_URI="mirror://debian/pool/main/w/${PN}/${PN}_${PV}.tar.gz"
59
60 LICENSE="GPL-2"
61 SLOT="0"
62 KEYWORDS="~amd64 ~ppc -sparc ~x86"
63 IUSE=""
64
65 RDEPEND="sys-apps/apmd
66 || ( >=sys-power/upower-0.9.23 sys-power/upower-pm-utils )
67 x11-libs/libX11
68 x11-libs/libXext
69 x11-libs/libXpm"
70 DEPEND="${RDEPEND}
71 virtual/pkgconfig"
72
73 S=${WORKDIR}/${PN}
74
75 DOCS=( README TODO )
76
77 src_prepare() {
78 epatch "${FILESDIR}"/${P}-upower-0.99.patch
79
80 sed -i \
81 -e '/^icondir/s:icons:pixmaps:' \
82 autoconf/makeinfo.in || die
83
84 eautoconf
85 }