blob: 42b9fca7af50e63c184f4e7e35483fd2ae91421e (
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
|
# Copyright 1999-2008 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: $
EBZR_REPO_URI="https://code.launchpad.net/~gwibber-committers/gwibber/trunk"
inherit bzr
DESCRIPTION="Gwibber is an open source microblogging client for GNOME developed with Python and GTK."
HOMEPAGE="https://launchpad.net/gwibber"
SRC_URI=""
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~x86 ~amd64"
IUSE=""
DEPEND=">=dev-python/dbus-python-0.80.2
>=dev-python/gconf-python-2.18.0
>=dev-python/pygtk-2.10.4
>=dev-python/notify-python-0.1.1
>=dev-python/mako-0.2.2
>=dev-python/egenix-mx-base-3.0.0
>=dev-python/feedparser-4.1
dev-python/pycurl
>=dev-python/simplejson-1.9.1
>=dev-python/python-distutils-extra-1.91
net-libs/webkit-gtk
>=dev-python/pywebkitgtk-1.0.2
>=dev-python/pyxdg-0.15
>=dev-python/imaging-1.1.6
gnome-extra/desktopcouch"
RDEPEND="${DEPEND}"
src_install () {
python setup.py install --prefix=/usr --root="${D}"
assert "setup.py install failed"
}
|