blob: 5e8429296eba52af33ddbedfd1e99c5bcdd9ac33 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
|
# Copyright 1999-2011 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-libs/libgdata/libgdata-0.6.4.ebuild,v 1.13 2011/03/16 10:11:45 nirbheek Exp $
EAPI="2"
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:2
>=net-libs/libsoup-2.26.1:2.4
gnome? ( >=net-libs/libsoup-gnome-2.26.1:2.4 )"
DEPEND="${RDEPEND}
>=dev-util/intltool-0.40
doc? ( >=dev-util/gtk-doc-1 )"
DOCS="AUTHORS ChangeLog HACKING NEWS README"
pkg_setup() {
G2CONF="${G2CONF}
--disable-static
--disable-introspection
$(use_enable gnome)"
}
src_prepare() {
# Fix intltoolize broken file, see upstream #577133
sed "s:'\^\$\$lang\$\$':\^\$\$lang\$\$:g" -i po/Makefile.in.in \
|| die "sed failed"
# Disable broken tests, update upstream bug #604313
sed -e 's:^\(.*"/media/thumbnail".*\):/*\1*/:' \
-e 's:^\(.*"/service/network_error".*\):/*\1*/:' \
-i gdata/tests/general.c || die
sed 's:^\(.*"/contacts/insert/simple".*\):/*\1*/:' \
-i gdata/tests/contacts.c || die
sed -e 's:^\(.*"/documents/upload/only_file_get_entry".*\):/*\1*/:' \
-e 's:^\(.*"/documents/update/only_metadata".*\):/*\1*/:' \
-i gdata/tests/documents.c || die
}
src_test() {
unset DBUS_SESSION_BUS_ADDRESS
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
}
|