blob: 9ff68053c744c8f3adcf30cd021bba15bd457532 (
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
|
# Copyright 1999-2010 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: $
EAPI=2
PYTHON_DEPEND="2"
inherit distutils python
DESCRIPTION="Conky weather forecast script with support for language files"
HOMEPAGE="https://launchpad.net/~conkyhardcore"
SRC_URI="https://launchpad.net/~conkyhardcore/+archive/ppa/+files/${PN}_${PV}.tar.gz"
LICENSE="GPL-3"
SLOT="0"
KEYWORDS="~amd64 ~x86"
IUSE=""
RDEPEND="app-admin/conky"
S=${WORKDIR}/src
pkg_config() {
python_set_active_version 2
python_pkg_setup
}
src_prepare() {
sed -i -e "s:/usr/bin/python:$(PYTHON -a):" conkyForecast || die
distutils_src_prepare
}
pkg_postinst() {
elog "You have to define a partner id and registration code for "
elog "the weather.com xoap. You need to copy the template from"
elog "/usr/share/conkyforecast/conkyForecast.config into you account"
elog "as ~/.conkyForecast.config and edit the respective fields."
elog
elog "More details can be found in the README file."
}
|