diff options
author | Gilles Dartiguelongue <eva@gentoo.org> | 2017-09-03 00:47:28 +0200 |
---|---|---|
committer | Gilles Dartiguelongue <eva@gentoo.org> | 2017-09-03 01:33:14 +0200 |
commit | b313daf54734e23122aaaf6c255df4029f603558 (patch) | |
tree | c74e5105a5721d2a7162b5bde758bb90b1d8b6ca /dev-libs/libgdata | |
parent | net-libs/gnome-online-accounts: drop old revisions (diff) | |
download | gentoo-b313daf54734e23122aaaf6c255df4029f603558.tar.gz gentoo-b313daf54734e23122aaaf6c255df4029f603558.tar.bz2 gentoo-b313daf54734e23122aaaf6c255df4029f603558.zip |
dev-libs/libgdata: fix build dependency issue on gnome-online-accounts, bug #614600
Package-Manager: Portage-2.3.8, Repoman-2.3.3
Diffstat (limited to 'dev-libs/libgdata')
-rw-r--r-- | dev-libs/libgdata/libgdata-0.17.9-r1.ebuild | 66 |
1 files changed, 66 insertions, 0 deletions
diff --git a/dev-libs/libgdata/libgdata-0.17.9-r1.ebuild b/dev-libs/libgdata/libgdata-0.17.9-r1.ebuild new file mode 100644 index 000000000000..11e9b54b1f4c --- /dev/null +++ b/dev-libs/libgdata/libgdata-0.17.9-r1.ebuild @@ -0,0 +1,66 @@ +# Copyright 1999-2017 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 + +EAPI=6 +VALA_USE_DEPEND="vapigen" +GNOME2_EAUTORECONF="yes" + +inherit gnome2 vala + +DESCRIPTION="GLib-based library for accessing online service APIs using the GData protocol" +HOMEPAGE="https://wiki.gnome.org/Projects/libgdata" + +LICENSE="LGPL-2.1+" +SLOT="0/22" # subslot = libgdata soname version + +IUSE="+crypt gnome-online-accounts +introspection static-libs test vala" +REQUIRED_USE=" + gnome-online-accounts? ( crypt ) + vala? ( introspection ) +" + +KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86" + +RDEPEND=" + >=dev-libs/glib-2.44.0:2 + >=dev-libs/json-glib-0.15 + >=dev-libs/libxml2-2:2 + >=net-libs/liboauth-0.9.4 + >=net-libs/libsoup-2.55.90:2.4[introspection?] + >=x11-libs/gdk-pixbuf-2.14:2 + crypt? ( app-crypt/gcr:= ) + gnome-online-accounts? ( >=net-libs/gnome-online-accounts-3.8:=[introspection?,vala?] ) + introspection? ( >=dev-libs/gobject-introspection-0.9.7:= ) +" +DEPEND="${RDEPEND} + >=dev-util/gtk-doc-am-1.25 + >=dev-util/intltool-0.40 + virtual/pkgconfig + test? ( >=net-libs/uhttpmock-0.5 ) + vala? ( $(vala_depend) ) +" + +PATCHES=( + "${FILESDIR}"/${PN}-0.17.8-disable-demos.patch +) + +src_prepare() { + use vala && vala_src_prepare + gnome2_src_prepare +} + +src_configure() { + gnome2_src_configure \ + --disable-build-demos \ + $(use_enable crypt gnome) \ + $(use_enable gnome-online-accounts goa) \ + $(use_enable introspection) \ + $(use_enable vala) \ + $(use_enable static-libs static) \ + $(use_enable test always-build-tests) +} + +src_test() { + unset ORBIT_SOCKETDIR + dbus-run-session emake check +} |