You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
gentoo-overlay/sci-geosciences/geocode-glib/geocode-glib-3.20.1.ebuild

46 lines
1.1 KiB

# Copyright 1999-2016 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
EAPI=6
inherit gnome2
DESCRIPTION="GLib geocoding library that uses the Yahoo! Place Finder service"
HOMEPAGE="https://git.gnome.org/browse/geocode-glib"
LICENSE="LGPL-2"
SLOT="0"
KEYWORDS="~alpha amd64 ~arm ~ia64 ~ppc ~ppc64 ~sparc x86"
IUSE="+introspection test"
RDEPEND="
>=dev-libs/glib-2.34:2
>=dev-libs/json-glib-0.99.2[introspection?]
gnome-base/gvfs[http]
>=net-libs/libsoup-2.42:2.4[introspection?]
introspection? ( >=dev-libs/gobject-introspection-0.6.3:= )
"
DEPEND="${RDEPEND}
>=dev-util/gtk-doc-am-1.13
>=sys-devel/gettext-0.18
virtual/pkgconfig
test? ( sys-apps/dbus )
"
# eautoreconf requires:
# dev-libs/gobject-introspection-common
# gnome-base/gnome-common
# FIXME: need network #424719, recheck
# need various locales to be present
RESTRICT="test"
src_configure() {
gnome2_src_configure $(use_enable introspection)
}
src_test() {
export GVFS_DISABLE_FUSE=1
export GIO_USE_VFS=gvfs
ewarn "Tests require network access to http://where.yahooapis.com"
dbus-launch emake check || die "tests failed"
}