diff options
author | 2010-03-03 20:20:59 +0000 | |
---|---|---|
committer | 2010-03-03 20:20:59 +0000 | |
commit | e142a99a6e973c4bad6eb484feef773ec0cc2f5e (patch) | |
tree | 4009b5dc668227d83e3078c5d4e97e15a142cee5 /x11-misc/bbacpi | |
parent | Stable for HPPA (bug #301548). (diff) | |
download | gentoo-2-e142a99a6e973c4bad6eb484feef773ec0cc2f5e.tar.gz gentoo-2-e142a99a6e973c4bad6eb484feef773ec0cc2f5e.tar.bz2 gentoo-2-e142a99a6e973c4bad6eb484feef773ec0cc2f5e.zip |
Fix documentation installation. Adjust correct dependencies. EAPI2fy it. amd64 keyword added. Fixes bug #298868
(Portage version: 2.2_rc63/cvs/Linux x86_64)
Diffstat (limited to 'x11-misc/bbacpi')
-rw-r--r-- | x11-misc/bbacpi/ChangeLog | 13 | ||||
-rw-r--r-- | x11-misc/bbacpi/bbacpi-0.1.5-r1.ebuild | 32 |
2 files changed, 43 insertions, 2 deletions
diff --git a/x11-misc/bbacpi/ChangeLog b/x11-misc/bbacpi/ChangeLog index 26416f6cff20..62af6641e9da 100644 --- a/x11-misc/bbacpi/ChangeLog +++ b/x11-misc/bbacpi/ChangeLog @@ -1,6 +1,15 @@ # ChangeLog for x11-misc/bbacpi -# Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/x11-misc/bbacpi/ChangeLog,v 1.8 2009/12/26 10:19:44 tove Exp $ +# Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/x11-misc/bbacpi/ChangeLog,v 1.9 2010/03/03 20:20:59 hwoarang Exp $ + +*bbacpi-0.1.5-r1 (03 Mar 2010) + + 03 Mar 2010; Markos Chandras <hwoarang@gentoo.org> + +bbacpi-0.1.5-r1.ebuild: + Fix documentation installation. Adjust correct dependencies. EAPI2fy it. + Add amd64 keyword. + Thanks to Christophe LEFEBVRE <chtof62@gmail.com> for the ebuild. Fixes + bug #298868 26 Dec 2009; Torsten Veller <tove@gentoo.org> metadata.xml: Remove smithj from metadata (#95385) diff --git a/x11-misc/bbacpi/bbacpi-0.1.5-r1.ebuild b/x11-misc/bbacpi/bbacpi-0.1.5-r1.ebuild new file mode 100644 index 000000000000..890dffdd061c --- /dev/null +++ b/x11-misc/bbacpi/bbacpi-0.1.5-r1.ebuild @@ -0,0 +1,32 @@ +# Copyright 1999-2010 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/x11-misc/bbacpi/bbacpi-0.1.5-r1.ebuild,v 1.1 2010/03/03 20:20:59 hwoarang Exp $ + +EAPI="2" + +inherit eutils + +DESCRIPTION="ACPI monitor for X11" +HOMEPAGE="http://bbacpi.sourceforge.net" +SRC_URI="mirror://sourceforge/bbacpi/${P}.tar.gz" + +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="~amd64 ~x86" +IUSE="" + +DEPEND="virtual/blackbox + x11-libs/gtk+:2 + media-libs/imlib + x11-misc/xdialog + sys-power/acpi + sys-power/acpid" + +src_prepare() { + epatch "${FILESDIR}"/${P}-noextraquals.diff +} + +src_install () { + einstall || die "einstall failed" + dodoc AUTHORS ChangeLog README || die "dodoc failed" +} |