diff options
author | Gilles Dartiguelongue <eva@gentoo.org> | 2010-10-21 22:01:03 +0000 |
---|---|---|
committer | Gilles Dartiguelongue <eva@gentoo.org> | 2010-10-21 22:01:03 +0000 |
commit | a20266606c40b449f8bf63d2b0c899fa42f41d36 (patch) | |
tree | 66eac7cd1facd4405a3f041e773ef343f2c606ff /gnome-extra/nautilus-sendto | |
parent | Add gnome-extra/nautilus-sendto to gnome 2.32 mask (diff) | |
download | gentoo-2-a20266606c40b449f8bf63d2b0c899fa42f41d36.tar.gz gentoo-2-a20266606c40b449f8bf63d2b0c899fa42f41d36.tar.bz2 gentoo-2-a20266606c40b449f8bf63d2b0c899fa42f41d36.zip |
Version bump for gnome 2.32. Fix a few memory leaks, remove a couple of plugins that are now in their respective package. Port to GSettings.
(Portage version: 2.2_rc89/cvs/Linux x86_64)
Diffstat (limited to 'gnome-extra/nautilus-sendto')
-rw-r--r-- | gnome-extra/nautilus-sendto/ChangeLog | 9 | ||||
-rw-r--r-- | gnome-extra/nautilus-sendto/nautilus-sendto-2.32.0.ebuild | 59 |
2 files changed, 67 insertions, 1 deletions
diff --git a/gnome-extra/nautilus-sendto/ChangeLog b/gnome-extra/nautilus-sendto/ChangeLog index a81bab7ac63a..d3e8fc383eca 100644 --- a/gnome-extra/nautilus-sendto/ChangeLog +++ b/gnome-extra/nautilus-sendto/ChangeLog @@ -1,6 +1,13 @@ # ChangeLog for gnome-extra/nautilus-sendto # Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/gnome-extra/nautilus-sendto/ChangeLog,v 1.45 2010/10/18 13:53:13 armin76 Exp $ +# $Header: /var/cvsroot/gentoo-x86/gnome-extra/nautilus-sendto/ChangeLog,v 1.46 2010/10/21 22:01:03 eva Exp $ + +*nautilus-sendto-2.32.0 (21 Oct 2010) + + 21 Oct 2010; Gilles Dartiguelongue <eva@gentoo.org> + +nautilus-sendto-2.32.0.ebuild: + Version bump for gnome 2.32. Fix a few memory leaks, remove a couple of + plugins that are now in their respective package. Port to GSettings. 18 Oct 2010; Raúl Porcel <armin76@gentoo.org> nautilus-sendto-2.28.4-r1.ebuild: diff --git a/gnome-extra/nautilus-sendto/nautilus-sendto-2.32.0.ebuild b/gnome-extra/nautilus-sendto/nautilus-sendto-2.32.0.ebuild new file mode 100644 index 000000000000..e4b6004c23c5 --- /dev/null +++ b/gnome-extra/nautilus-sendto/nautilus-sendto-2.32.0.ebuild @@ -0,0 +1,59 @@ +# Copyright 1999-2010 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/gnome-extra/nautilus-sendto/nautilus-sendto-2.32.0.ebuild,v 1.1 2010/10/21 22:01:03 eva Exp $ + +EAPI="3" +GCONF_DEBUG="yes" + +inherit eutils gnome2 multilib + +DESCRIPTION="A nautilus extension for sending files to locations" +HOMEPAGE="http://www.gnome.org" + +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="~alpha ~amd64 ~ia64 ~ppc ~sparc ~x86" +IUSE="cdr doc gajim +mail pidgin upnp" + +RDEPEND=">=x11-libs/gtk+-2.18:2 + >=dev-libs/glib-2.25.9:2 + >=gnome-base/nautilus-2.14 + cdr? ( >=app-cdr/brasero-2.26.0[nautilus] ) + gajim? ( + net-im/gajim + >=dev-libs/dbus-glib-0.60 ) + mail? ( >=gnome-extra/evolution-data-server-1.5.3 ) + pidgin? ( + >=net-im/pidgin-2.0.0 + >=dev-libs/dbus-glib-0.60 ) + upnp? ( >=net-libs/gupnp-0.13.0 )" +DEPEND="${RDEPEND} + sys-devel/gettext + >=dev-util/pkgconfig-0.19 + >=dev-util/intltool-0.35 + doc? ( >=dev-util/gtk-doc-1.9 )" +# Needed for eautoreconf +# >=gnome-base/gnome-common-0.12 +# dev-util/gtk-doc-am + +_use_plugin() { + if use ${1}; then + G2CONF="${G2CONF}${2:-"${1}"}," + fi +} + +pkg_setup() { + DOCS="AUTHORS ChangeLog NEWS README" + G2CONF="${G2CONF} + --with-plugins=removable-devices," + _use_plugin cdr nautilus-burn + _use_plugin mail evolution + _use_plugin pidgin + _use_plugin gajim + _use_plugin upnp +} + +src_install() { + gnome2_src_install + find "${ED}" -name "*.la" -delete || die "failed to delete *.la files" +} |