diff options
author | Alexandre Rostovtsev <tetromino@gentoo.org> | 2012-04-13 03:18:49 +0000 |
---|---|---|
committer | Alexandre Rostovtsev <tetromino@gentoo.org> | 2012-04-13 03:18:49 +0000 |
commit | 66e412ef8bae128d3ccc1c5a9644876a1a4ed764 (patch) | |
tree | cf05f5c4b33edbc47bd4c1b34144e9ef2258775e /gnome-extra/nautilus-sendto | |
parent | Fix dependencies. Patch by Arfrever. (diff) | |
download | gentoo-2-66e412ef8bae128d3ccc1c5a9644876a1a4ed764.tar.gz gentoo-2-66e412ef8bae128d3ccc1c5a9644876a1a4ed764.tar.bz2 gentoo-2-66e412ef8bae128d3ccc1c5a9644876a1a4ed764.zip |
Version bump, fixes reading gnome-3's mailer preferences. Drop alpha, ia64, ppc, sparc keywords due to evolution-data-server-3 dependency; keywording bug will be filed later for all of gnome-3.4.
(Portage version: 2.2.0_alpha100/cvs/Linux x86_64)
Diffstat (limited to 'gnome-extra/nautilus-sendto')
-rw-r--r-- | gnome-extra/nautilus-sendto/ChangeLog | 12 | ||||
-rw-r--r-- | gnome-extra/nautilus-sendto/nautilus-sendto-3.0.2.ebuild | 71 |
2 files changed, 81 insertions, 2 deletions
diff --git a/gnome-extra/nautilus-sendto/ChangeLog b/gnome-extra/nautilus-sendto/ChangeLog index e61620343faa..fa60652a92d7 100644 --- a/gnome-extra/nautilus-sendto/ChangeLog +++ b/gnome-extra/nautilus-sendto/ChangeLog @@ -1,6 +1,14 @@ # ChangeLog for gnome-extra/nautilus-sendto -# Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/gnome-extra/nautilus-sendto/ChangeLog,v 1.56 2011/11/02 16:38:52 tetromino Exp $ +# Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/gnome-extra/nautilus-sendto/ChangeLog,v 1.57 2012/04/13 03:18:49 tetromino Exp $ + +*nautilus-sendto-3.0.2 (13 Apr 2012) + + 13 Apr 2012; Alexandre Rostovtsev <tetromino@gentoo.org> + +nautilus-sendto-3.0.2.ebuild: + Version bump, fixes reading gnome-3's mailer preferences. Drop alpha, ia64, + ppc, sparc keywords due to evolution-data-server-3 dependency; keywording bug + will be filed later for all of gnome-3.4. *nautilus-sendto-3.0.1 (02 Nov 2011) diff --git a/gnome-extra/nautilus-sendto/nautilus-sendto-3.0.2.ebuild b/gnome-extra/nautilus-sendto/nautilus-sendto-3.0.2.ebuild new file mode 100644 index 000000000000..27f759c3cf42 --- /dev/null +++ b/gnome-extra/nautilus-sendto/nautilus-sendto-3.0.2.ebuild @@ -0,0 +1,71 @@ +# Copyright 1999-2012 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/gnome-extra/nautilus-sendto/nautilus-sendto-3.0.2.ebuild,v 1.1 2012/04/13 03:18:49 tetromino Exp $ + +EAPI="4" +GCONF_DEBUG="yes" +GNOME2_LA_PUNT="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="~amd64 ~x86" +IUSE="cdr doc gajim +mail pidgin upnp" + +COMMON_DEPEND=">=x11-libs/gtk+-2.90.3:3[X(+)] + >=dev-libs/glib-2.25.9:2 + cdr? ( >=app-cdr/brasero-2.26.0[nautilus] ) + gajim? ( + net-im/gajim + >=dev-libs/dbus-glib-0.60 ) + mail? ( >=gnome-extra/evolution-data-server-3 ) + pidgin? ( + >=net-im/pidgin-2.0.0 + >=dev-libs/dbus-glib-0.60 ) + upnp? ( >=net-libs/gupnp-0.13.0 )" +RDEPEND="${COMMON_DEPEND} + >=gnome-base/nautilus-2.91.1[sendto]" +DEPEND="${COMMON_DEPEND} + >=gnome-base/nautilus-2.91.1 + 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_prepare() { + # Regenerate marshaler code for <glib-2.31 compatibility + rm -v src/plugins/evolution/econtactentry-marshal.{c,h} || die + gnome2_src_prepare +} + +src_install() { + gnome2_src_install + + # Prevent file collision with nautilus-3 (which installs its own copy of + # libnautilus-sendto.so) + rm -r "${ED}/usr/$(get_libdir)/nautilus/extensions-"* +} |