From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) by finch.gentoo.org (Postfix) with ESMTP id C1324138A1F for ; Tue, 15 Apr 2014 22:05:41 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id E0A4DE0B6D; Tue, 15 Apr 2014 22:05:34 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 15A88E0B63 for ; Tue, 15 Apr 2014 22:05:34 +0000 (UTC) Received: from spoonbill.gentoo.org (spoonbill.gentoo.org [81.93.255.5]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 3D027340073 for ; Tue, 15 Apr 2014 22:05:33 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by spoonbill.gentoo.org (Postfix) with ESMTP id AEE7B18247 for ; Tue, 15 Apr 2014 22:05:30 +0000 (UTC) From: "Gilles Dartiguelongue" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Gilles Dartiguelongue" Message-ID: <1397595531.67c11310955dbb2df6816cbcd9df16bed5ae16b0.eva@gentoo> Subject: [gentoo-commits] proj/gnome:master commit in: sci-geosciences/geocode-glib/ X-VCS-Repository: proj/gnome X-VCS-Files: sci-geosciences/geocode-glib/geocode-glib-3.12.0.ebuild X-VCS-Directories: sci-geosciences/geocode-glib/ X-VCS-Committer: eva X-VCS-Committer-Name: Gilles Dartiguelongue X-VCS-Revision: 67c11310955dbb2df6816cbcd9df16bed5ae16b0 X-VCS-Branch: master Date: Tue, 15 Apr 2014 22:05:30 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Archives-Salt: 4d746c1b-c19a-4f1a-a94f-4e193ba5bad2 X-Archives-Hash: 8cb90c8d1765f5ba68439e319435ebca commit: 67c11310955dbb2df6816cbcd9df16bed5ae16b0 Author: Gilles Dartiguelongue gentoo org> AuthorDate: Sat Apr 12 22:55:05 2014 +0000 Commit: Gilles Dartiguelongue gentoo org> CommitDate: Tue Apr 15 20:58:51 2014 +0000 URL: http://git.overlays.gentoo.org/gitweb/?p=proj/gnome.git;a=commit;h=67c11310 sci-geosciences/geocode-glib: 3.10.0 → 3.12.0 --- .../geocode-glib/geocode-glib-3.12.0.ebuild | 54 ++++++++++++++++++++++ 1 file changed, 54 insertions(+) diff --git a/sci-geosciences/geocode-glib/geocode-glib-3.12.0.ebuild b/sci-geosciences/geocode-glib/geocode-glib-3.12.0.ebuild new file mode 100644 index 0000000..9382fda --- /dev/null +++ b/sci-geosciences/geocode-glib/geocode-glib-3.12.0.ebuild @@ -0,0 +1,54 @@ +# Copyright 1999-2014 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: $ + +EAPI="5" +GCONF_DEBUG="no" # --enable-debug does not do anything useful + +inherit gnome2 + +DESCRIPTION="GLib geocoding library that uses the Yahoo! Place Finder service" +HOMEPAGE="http://git.gnome.org/browse/geocode-glib" + +# FIXME: should be slot 1.0 but upstream failed at renaming the libs +# and some files conflict from previous releases. + +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.4[introspection?] + introspection? ( + >=dev-libs/gobject-introspection-0.6.3 + net-libs/libsoup-gnome:2.4[introspection] ) +" +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 + +RESTRICT="test" # Need network #424719 + +src_prepare() { + gnome2_src_prepare + + # Crazy flags + sed -e 's:-Wall ::' -i configure || die +} + +#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" +#}