46 lines
923 B
Bash
46 lines
923 B
Bash
# Copyright 1999-2012 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.14.ebuild,v 1.2 2012/01/09 10:27:56 nirbheek Exp $
|
|
|
|
EAPI="4"
|
|
GCONF_DEBUG="no"
|
|
PYTHON_DEPEND="2:2.6"
|
|
|
|
inherit gnome2 distutils
|
|
|
|
DESCRIPTION="D-Feet is a powerful D-Bus debugger"
|
|
HOMEPAGE="http://live.gnome.org/DFeet"
|
|
|
|
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:2
|
|
gnome? ( dev-python/libwnck-python )"
|
|
|
|
PYTHON_MODNAME="dfeet"
|
|
|
|
pkg_setup() {
|
|
python_set_active_version 2
|
|
python_pkg_setup
|
|
}
|
|
|
|
src_configure() {
|
|
# Don't call gnome2_src_configure().
|
|
:
|
|
}
|
|
|
|
pkg_postinst() {
|
|
distutils_pkg_postinst
|
|
gnome2_icon_cache_update
|
|
fdo-mime_desktop_database_update
|
|
}
|
|
|
|
pkg_postrm() {
|
|
distutils_pkg_postrm
|
|
gnome2_icon_cache_update
|
|
fdo-mime_desktop_database_update
|
|
}
|