diff options
author | Bernard Cafarelli <voyageur@gentoo.org> | 2012-09-25 14:08:41 +0000 |
---|---|---|
committer | Bernard Cafarelli <voyageur@gentoo.org> | 2012-09-25 14:08:41 +0000 |
commit | 66517e69b2ba0854e8d77d3cd4be0ede2d47a038 (patch) | |
tree | 68d0a56f5740cb927b8483bb63142b8e5b1ac772 /x11-plugins | |
parent | x86 stable, see bug 421351. (diff) | |
download | gentoo-2-66517e69b2ba0854e8d77d3cd4be0ede2d47a038.tar.gz gentoo-2-66517e69b2ba0854e8d77d3cd4be0ede2d47a038.tar.bz2 gentoo-2-66517e69b2ba0854e8d77d3cd4be0ede2d47a038.zip |
Version bump
(Portage version: 2.2.0_alpha132/cvs/Linux x86_64)
Diffstat (limited to 'x11-plugins')
-rw-r--r-- | x11-plugins/wmbattery/ChangeLog | 7 | ||||
-rw-r--r-- | x11-plugins/wmbattery/wmbattery-2.41.ebuild | 36 |
2 files changed, 42 insertions, 1 deletions
diff --git a/x11-plugins/wmbattery/ChangeLog b/x11-plugins/wmbattery/ChangeLog index b506b5a692dd..9b548f5ef7c4 100644 --- a/x11-plugins/wmbattery/ChangeLog +++ b/x11-plugins/wmbattery/ChangeLog @@ -1,6 +1,11 @@ # ChangeLog for x11-plugins/wmbattery # Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/x11-plugins/wmbattery/ChangeLog,v 1.22 2012/07/08 15:24:35 jer Exp $ +# $Header: /var/cvsroot/gentoo-x86/x11-plugins/wmbattery/ChangeLog,v 1.23 2012/09/25 14:08:40 voyageur Exp $ + +*wmbattery-2.41 (25 Sep 2012) + + 25 Sep 2012; Bernard Cafarelli <voyageur@gentoo.org> +wmbattery-2.41.ebuild: + Version bump 08 Jul 2012; Jeroen Roovers <jer@gentoo.org> wmbattery-2.19-r1.ebuild, wmbattery-2.40.ebuild: diff --git a/x11-plugins/wmbattery/wmbattery-2.41.ebuild b/x11-plugins/wmbattery/wmbattery-2.41.ebuild new file mode 100644 index 000000000000..4580a1f0c131 --- /dev/null +++ b/x11-plugins/wmbattery/wmbattery-2.41.ebuild @@ -0,0 +1,36 @@ +# Copyright 1999-2012 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/x11-plugins/wmbattery/wmbattery-2.41.ebuild,v 1.1 2012/09/25 14:08:41 voyageur Exp $ + +EAPI=4 +inherit autotools + +DESCRIPTION="A dockable app to report APM, ACPI, or SPIC battery status" +HOMEPAGE="http://joeyh.name/code/wmbattery/" +SRC_URI="mirror://debian/pool/main/w/${PN}/${PN}_${PV}.tar.gz" + +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="~amd64 ~ppc -sparc ~x86" +IUSE="" + +DEPEND="sys-apps/apmd + x11-libs/libX11 + x11-libs/libXext + x11-libs/libXpm" + +S=${WORKDIR}/${PN} + +src_prepare() { + sed -i \ + -e '/^icondir/s:icons:pixmaps:' \ + -e '/^USE_HAL/d' \ + autoconf/makeinfo.in || die + + eautoconf +} + +src_install() { + emake DESTDIR="${D}" install + dodoc README TODO +} |