blob: 2f6251c1415eb2597f9f398dab407c0aee95d300 (
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
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
|
# Copyright 1999-2009 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/app-laptop/batterymon/batterymon-1.2.0.ebuild,v 1.2 2009/12/15 16:50:07 idl0r Exp $
EAPI="2"
SUPPORT_PYTHON_ABIS="1"
inherit python eutils
DESCRIPTION="Simple battery monitor ideal for openbox etc."
HOMEPAGE="http://code.google.com/p/batterymon/"
SRC_URI="http://batterymon.googlecode.com/files/${P}.tar.gz"
LICENSE="LGPL-3"
SLOT="0"
KEYWORDS="~amd64 ~x86"
IUSE="libnotify"
DEPEND=""
RDEPEND="${DEPEND}
dev-python/dbus-python
dev-libs/dbus-glib
dev-python/pygtk:2
sys-apps/hal
libnotify? ( dev-python/notify-python )"
S="${WORKDIR}/${PN}"
src_prepare() {
epatch "${FILESDIR}/${P}-import.patch"
}
src_install() {
newbin batterymon.py batterymon || die
insinto $(python_get_sitedir)/${PN}
doins {logger,preferences,settings}.py || die
# Create missing __init__.py
touch "${D}/$(python_get_sitedir)/${PN}/__init__.py"
# Upstream forgot an svn dir
rm -rf icons/.svn
insinto /usr/share/${PN}/
doins -r icons/ batterymon.rc || die
}
pkg_postinst() {
python_mod_optimize ${PN}
einfo
einfo "Your own batterymon.rc will be loaded from ~/.config/${PN}/"
einfo "The default configuration can be found here: '${ROOT}usr/share/${PN}/${PN}.rc'"
einfo
}
pkg_postrm() {
python_mod_cleanup ${PN}
}
|