blob: 02e379ff031d03d7a569d7f32fcdfac5b5bb7b99 (
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
|
# 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.4.ebuild,v 1.3 2010/02/08 08:55:38 pva Exp $
inherit eutils gnome2 distutils
DESCRIPTION="D-Feet is a powerful D-Bus debugger"
HOMEPAGE="http://hosted.fedoraproject.org/projects/d-feet/"
SRC_URI="http://johnp.fedorapeople.org/${P}.tar.gz"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~amd64 ~x86"
IUSE=""
RDEPEND=">=sys-apps/dbus-1.0
>=dev-python/dbus-python-0.82.3
dev-python/pygtk
>=dev-lang/python-2.5"
pkg_setup() {
PYTHON_MODNAME="dfeet"
}
src_unpack() {
unpack ${A}
cd "${S}"
epatch "${FILESDIR}"/${P}-show-properties.patch
}
pkg_postinst()
{
distutils_pkg_postinst
gnome2_icon_cache_update
}
|