blob: 8bccec28d622daa1e995d1de92a6091586088016 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
|
# Copyright 1999-2006 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.ebuild,v 1.3 2006/11/05 21:54:11 dirtyepic Exp $
inherit eutils
DESCRIPTION="ACPI monitor for X11"
SRC_URI="mirror://sourceforge/bbacpi/${P}.tar.gz"
HOMEPAGE="http://bbacpi.sourceforge.net"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="x86"
IUSE=""
DEPEND="virtual/blackbox
>=x11-libs/gtk+-2.4.9-r1
>=media-libs/imlib-1.9.14-r3
>=x11-misc/xdialog-2.1.1
sys-power/acpi
sys-power/acpid"
src_unpack() {
unpack ${A}
cd "${S}"
epatch "${FILESDIR}"/${P}-noextraquals.diff
}
src_install () {
einstall || die "install failed"
dodoc README AUTHORS BUGS ChangeLog TODO
}
|