| # Copyright 1999-2010 Gentoo Foundation |
| # Distributed under the terms of the GNU General Public License v2 |
| # $Header: /var/cvsroot/gentoo-x86/gnome-extra/deskbar-applet/deskbar-applet-2.26.2-r1.ebuild,v 1.5 2010/02/14 23:39:38 eva Exp $ |
| |
| GCONF_DEBUG="no" |
| |
| inherit eutils gnome2 python |
| |
| DESCRIPTION="An Omnipresent Versatile Search Interface" |
| HOMEPAGE="http://raphael.slinckx.net/deskbar/" |
| |
| LICENSE="GPL-2" |
| SLOT="0" |
| KEYWORDS="~alpha amd64 ~hppa ~ia64 ~ppc ~ppc64 ~sparc x86 ~x86-fbsd" |
| IUSE="eds spell" |
| |
| RDEPEND=">=dev-lang/python-2.4 |
| >=x11-libs/gtk+-2.12 |
| >=gnome-base/gnome-desktop-2.10 |
| >=gnome-base/gconf-2 |
| |
| >=dev-python/pygtk-2.12 |
| >=dev-python/pygobject-2.15.3 |
| >=dev-python/dbus-python-0.80.2 |
| |
| >=dev-python/gconf-python-2.22.1 |
| >=dev-python/libgnome-python-2.22.1 |
| >=dev-python/gnome-applets-python-2.22.0 |
| >=dev-python/gnome-desktop-python-2.22.0 |
| >=dev-python/gnome-keyring-python-2.22.0 |
| >=dev-python/libwnck-python-2.22.0 |
| |
| eds? ( >=gnome-extra/evolution-data-server-1.7.92 ) |
| spell? ( >=gnome-extra/gnome-utils-2.16.2 )" |
| DEPEND="${RDEPEND} |
| sys-devel/gettext |
| >=dev-util/intltool-0.35 |
| app-text/scrollkeeper |
| app-text/gnome-doc-utils |
| dev-util/pkgconfig |
| ~app-text/docbook-xml-dtd-4.2" |
| |
| DOCS="AUTHORS ChangeLog NEWS README TODO" |
| |
| pkg_setup() { |
| G2CONF="${G2CONF} |
| $(use_enable eds evolution) |
| --exec-prefix=/usr |
| --disable-scrollkeeper" |
| } |
| |
| src_unpack() { |
| gnome2_src_unpack |
| |
| # Fix crash while opening preferences dialog |
| epatch "${FILESDIR}/${PN}-2.26.2-double-label.patch" |
| |
| # Fix intltoolize broken file, see upstream #577133 |
| sed "s:'\^\$\$lang\$\$':\^\$\$lang\$\$:g" -i po/Makefile.in.in || die "sed failed" |
| |
| # disable pyc compiling |
| mv py-compile py-compile.orig |
| ln -s $(type -P true) py-compile |
| } |
| |
| src_compile() { |
| # Needed for import gnomedesktop in configure, bug #270524 |
| addpredict "$(unset HOME; echo ~)/.gnome2" |
| |
| gnome2_src_compile |
| } |
| |
| pkg_postinst() { |
| gnome2_pkg_postinst |
| python_need_rebuild |
| python_mod_optimize $(python_get_sitedir)/deskbar |
| python_mod_optimize /usr/$(get_libdir)/deskbar-applet/modules-2.20-compatible |
| |
| ebeep 5 |
| ewarn "The dictionary plugin in deskbar-applet uses the dictionary from " |
| ewarn "gnome-extra/gnome-utils. If it is not present, the dictionary " |
| ewarn "plugin will fail silently." |
| epause 5 |
| } |
| |
| pkg_postrm() { |
| gnome2_pkg_postrm |
| python_mod_cleanup /usr/$(get_libdir)/python*/site-packages/deskbar |
| python_mod_cleanup /usr/$(get_libdir)/deskbar-applet/modules-2.20-compatible |
| } |