diff options
author | Gilles Dartiguelongue <eva@gentoo.org> | 2010-12-15 22:16:19 +0000 |
---|---|---|
committer | Gilles Dartiguelongue <eva@gentoo.org> | 2010-12-15 22:16:19 +0000 |
commit | de7c3b1503f2f6497a700a60c62680bdbad3c949 (patch) | |
tree | 58b5c65af5025f8f22ca64119b80446f923bc935 | |
parent | arm stable, bug #348269 (diff) | |
download | gentoo-2-de7c3b1503f2f6497a700a60c62680bdbad3c949.tar.gz gentoo-2-de7c3b1503f2f6497a700a60c62680bdbad3c949.tar.bz2 gentoo-2-de7c3b1503f2f6497a700a60c62680bdbad3c949.zip |
Version bump. Fix memory leaks, various xml handling problems and asynchronous authentication success notification.
(Portage version: 2.2.0_alpha8/cvs/Linux x86_64)
-rw-r--r-- | dev-libs/libgdata/ChangeLog | 8 | ||||
-rw-r--r-- | dev-libs/libgdata/libgdata-0.6.6.ebuild | 58 |
2 files changed, 65 insertions, 1 deletions
diff --git a/dev-libs/libgdata/ChangeLog b/dev-libs/libgdata/ChangeLog index 9036480fe90f..3b9fb1d69f03 100644 --- a/dev-libs/libgdata/ChangeLog +++ b/dev-libs/libgdata/ChangeLog @@ -1,6 +1,12 @@ # ChangeLog for dev-libs/libgdata # Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/dev-libs/libgdata/ChangeLog,v 1.18 2010/10/24 13:29:13 pacho Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-libs/libgdata/ChangeLog,v 1.19 2010/12/15 22:16:19 eva Exp $ + +*libgdata-0.6.6 (15 Dec 2010) + + 15 Dec 2010; Gilles Dartiguelongue <eva@gentoo.org> +libgdata-0.6.6.ebuild: + Version bump. Fix memory leaks, various xml handling problems and + asynchronous authentication success notification. 24 Oct 2010; Pacho Ramos <pacho@gentoo.org> libgdata-0.6.4.ebuild, libgdata-0.6.5.ebuild: diff --git a/dev-libs/libgdata/libgdata-0.6.6.ebuild b/dev-libs/libgdata/libgdata-0.6.6.ebuild new file mode 100644 index 000000000000..0cf0052666ad --- /dev/null +++ b/dev-libs/libgdata/libgdata-0.6.6.ebuild @@ -0,0 +1,58 @@ +# Copyright 1999-2010 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/dev-libs/libgdata/libgdata-0.6.6.ebuild,v 1.1 2010/12/15 22:16:19 eva Exp $ + +EAPI="3" +GCONF_DEBUG="yes" + +inherit eutils gnome2 + +DESCRIPTION="GLib-based library for accessing online service APIs using the GData protocol" +HOMEPAGE="http://live.gnome.org/libgdata" + +LICENSE="LGPL-2.1" +SLOT="0" +KEYWORDS="~alpha ~amd64 ~arm ~ia64 ~ppc ~ppc64 ~sparc ~x86" +IUSE="doc gnome +introspection" + +# gtk+ is needed for gdk +RDEPEND=">=dev-libs/glib-2.19:2 + >=x11-libs/gtk+-2:2 + >=dev-libs/libxml2-2 + >=net-libs/libsoup-2.26.1:2.4 + gnome? ( >=net-libs/libsoup-gnome-2.26.1:2.4 ) + introspection? ( >=dev-libs/gobject-introspection-0.9.7 )" +DEPEND="${RDEPEND} + >=dev-util/intltool-0.40 + doc? ( >=dev-util/gtk-doc-1 )" + +pkg_setup() { + DOCS="AUTHORS ChangeLog HACKING NEWS README" + G2CONF="${G2CONF} + --disable-static + $(use_enable gnome) + $(use_enable introspection)" +} + +src_prepare() { + gnome2_src_prepare + + # Disable tests requiring network access, bug #307725 + sed -e '/^TEST_PROGS = / s:\(.*\):TEST_PROGS = general perf\nOLD_\1:' \ + -i gdata/tests/Makefile.in || die "network test disable failed" +} + +src_test() { + unset DBUS_SESSION_BUS_ADDRESS + dbus-launch emake check || die "emake check failed" +} + +pkg_preinst() { + gnome2_pkg_preinst + preserve_old_lib /usr/$(get_libdir)/libgdata.so.6 +} + +pkg_postinst() { + gnome2_pkg_postinst + preserve_old_lib_notify /usr/$(get_libdir)/libgdata.so.6 +} |