blob: e1e87bbd7e670eb2225dc69046f0ed07912925d2 (
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-2010 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-util/d-feet/d-feet-0.1.12.ebuild,v 1.1 2010/10/06 19:54:31 eva Exp $
GCONF_DEBUG="no"
inherit gnome2 distutils
DESCRIPTION="D-Feet is a powerful D-Bus debugger"
HOMEPAGE="http://live.gnome.org/d-feet/"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~amd64 ~x86"
IUSE="gnome"
RDEPEND=">=sys-apps/dbus-1.0
>=dev-python/dbus-python-0.82.3
dev-python/pygtk
>=dev-lang/python-2.5
gnome? ( dev-python/libwnck-python )"
pkg_setup() {
PYTHON_MODNAME="dfeet"
}
pkg_postinst()
{
distutils_pkg_postinst
gnome2_icon_cache_update
}
|