diff options
author | Gilles Dartiguelongue <eva@gentoo.org> | 2008-04-09 21:09:37 +0000 |
---|---|---|
committer | Gilles Dartiguelongue <eva@gentoo.org> | 2008-04-09 21:09:37 +0000 |
commit | cd97954122345565c9846459238c9974d1c188c5 (patch) | |
tree | b5712c307410914cba5e9a34f07c46e788517852 /gnome-extra | |
parent | x86 stable, bug #216660 (diff) | |
download | gentoo-2-cd97954122345565c9846459238c9974d1c188c5.tar.gz gentoo-2-cd97954122345565c9846459238c9974d1c188c5.tar.bz2 gentoo-2-cd97954122345565c9846459238c9974d1c188c5.zip |
bump to 2.22.1. Bug fixes and translation updates.
(Portage version: 2.1.5_rc2)
Diffstat (limited to 'gnome-extra')
-rw-r--r-- | gnome-extra/deskbar-applet/ChangeLog | 8 | ||||
-rw-r--r-- | gnome-extra/deskbar-applet/deskbar-applet-2.22.1.ebuild | 74 |
2 files changed, 81 insertions, 1 deletions
diff --git a/gnome-extra/deskbar-applet/ChangeLog b/gnome-extra/deskbar-applet/ChangeLog index d9f3c02dee36..7b933d17417d 100644 --- a/gnome-extra/deskbar-applet/ChangeLog +++ b/gnome-extra/deskbar-applet/ChangeLog @@ -1,6 +1,12 @@ # ChangeLog for gnome-extra/deskbar-applet # Copyright 1999-2008 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/gnome-extra/deskbar-applet/ChangeLog,v 1.82 2008/03/25 23:53:45 eva Exp $ +# $Header: /var/cvsroot/gentoo-x86/gnome-extra/deskbar-applet/ChangeLog,v 1.83 2008/04/09 21:09:37 eva Exp $ + +*deskbar-applet-2.22.1 (09 Apr 2008) + + 09 Apr 2008; Gilles Dartiguelongue <eva@gentoo.org> + +deskbar-applet-2.22.1.ebuild: + bump to 2.22.1. Bug fixes and translation updates. *deskbar-applet-2.22.0.1 (25 Mar 2008) diff --git a/gnome-extra/deskbar-applet/deskbar-applet-2.22.1.ebuild b/gnome-extra/deskbar-applet/deskbar-applet-2.22.1.ebuild new file mode 100644 index 000000000000..9213f2ca4611 --- /dev/null +++ b/gnome-extra/deskbar-applet/deskbar-applet-2.22.1.ebuild @@ -0,0 +1,74 @@ +# Copyright 1999-2008 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.22.1.ebuild,v 1.1 2008/04/09 21:09:37 eva Exp $ + +inherit gnome2 eutils autotools 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" + +# TODO: check if gnome-doc-utils doesn't imply scrollkeeper + +RDEPEND=">=dev-lang/python-2.4 + >=x11-libs/gtk+-2.10 + >=dev-python/pygtk-2.10 + >=dev-python/gnome-python-2.10 + >=gnome-base/gnome-desktop-2.10 + >=dev-python/dbus-python-0.80.2 + >=dev-python/gnome-python-desktop-2.14.0 + >=dev-python/gnome-python-extras-2.14 + >=gnome-base/gconf-2 + 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 + >=sys-devel/autoconf-2.60 + app-text/scrollkeeper + app-text/gnome-doc-utils + dev-util/pkgconfig" + +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 installing libs into pythondir + epatch "${FILESDIR}"/${PN}-2.19.5-multilib.patch + + # disable pyc compiling + mv py-compile py-compile.orig + ln -s $(type -P true) py-compile + + AT_M4DIR="m4" eautoreconf +} + +pkg_postinst() { + gnome2_pkg_postinst + + python_version + python_mod_optimize "${ROOT}"/usr/$(get_libdir)/python${PYVER}/site-packages/deskbar + python_mod_optimize "${ROOT}"/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_version + python_mod_cleanup /usr/$(get_libdir)/python${PYVER}/site-packages/deskbar + python_mod_cleanup /usr/$(get_libdir)/deskbar-applet/modules-2.20-compatible +} |