blob: 9c344f3f4e8732c20f73d6987e75a5c6b60c742b (
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
66
67
68
69
70
71
72
73
74
75
76
77
78
|
# Copyright 1999-2013 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-libs/libgdata/libgdata-0.13.2-r2.ebuild,v 1.5 2013/01/06 09:23:32 ago Exp $
EAPI="5"
GCONF_DEBUG="yes"
GNOME2_LA_PUNT="yes"
inherit autotools 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/13" # subslot = libgdata soname version
IUSE="gnome +introspection static-libs"
KEYWORDS="~alpha ~amd64 ~ia64 ~ppc ~ppc64 ~sparc ~x86"
# gtk+ is needed for gdk
# configure checks for gtk:3, but only uses it for demos which are not installed
RDEPEND="
>=dev-libs/glib-2.31:2
>=dev-libs/libxml2-2:2
>=net-libs/liboauth-0.9.4
>=net-libs/libsoup-2.37.91:2.4[introspection?]
>=x11-libs/gdk-pixbuf-2.14:2
gnome? (
app-crypt/gcr:=
>=net-libs/gnome-online-accounts-3.2
>=net-libs/libsoup-gnome-2.37.91:2.4[introspection?] )
introspection? ( >=dev-libs/gobject-introspection-0.9.7 )
"
DEPEND="${RDEPEND}
>=dev-util/gtk-doc-am-1.14
>=dev-util/intltool-0.40
>=gnome-base/gnome-common-3.6
virtual/pkgconfig
"
src_prepare() {
DOCS="AUTHORS ChangeLog HACKING NEWS README"
G2CONF="${G2CONF}
$(use_enable static-libs static)
$(use_enable gnome)
$(use_enable introspection)"
# Two patches to correct deps in libgdata.pc, bug #444270
# upstream, in 0.13.3
epatch "${FILESDIR}/${P}-Requires.private.patch"
# https://bugzilla.gnome.org/show_bug.cgi?id=690281
epatch "${FILESDIR}/${PN}-0.13.2-libgdata.pc-unused-deps.patch"
eautoreconf
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 ORBIT_SOCKETDIR
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.7
preserve_old_lib /usr/$(get_libdir)/libgdata.so.11
}
pkg_postinst() {
gnome2_pkg_postinst
preserve_old_lib_notify /usr/$(get_libdir)/libgdata.so.7
preserve_old_lib_notify /usr/$(get_libdir)/libgdata.so.11
}
|