blob: 099db4314dbe450ddaf1af5585ad8a68a67e2088 (
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
|
# Copyright 1999-2012 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: $
EAPI=4
PYTHON_DEPEND="2"
inherit bzr distutils eutils
DESCRIPTION="conky plugin for guayadeque"
HOMEPAGE="http://bazaar.launchpad.net/~conky-companions/+junk/conkyguayadeque"
EBZR_BRANCH="${PN}"
EBZR_REPO_URI="lp:~conky-companions/+junk/${EBZR_BRANCH}"
LICENSE="GPL-3"
SLOT="0"
KEYWORDS=""
IUSE=""
RDEPEND="app-admin/conky
>=media-sound/guayadeque-0.3.5"
src_prepare() {
default
# incorrect time format since 0.3.5
epatch "${FILESDIR}"/time.patch
python_convert_shebangs -r 2 .
}
|