Gentoo Archives: gentoo-commits

From: Sobhan Mohammadpour <sobhan@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] proj/gnome:master commit in: dev-libs/libgweather/
Date: Fri, 11 May 2018 06:24:58
Message-Id: 1526019887.03338c6f6e5bfa72532c2753ac41d6edeae24d97.sobhan@gentoo
1 commit: 03338c6f6e5bfa72532c2753ac41d6edeae24d97
2 Author: Sobhan Mohammadpour <sobhan <AT> gentoo <DOT> org>
3 AuthorDate: Fri May 11 06:24:47 2018 +0000
4 Commit: Sobhan Mohammadpour <sobhan <AT> gentoo <DOT> org>
5 CommitDate: Fri May 11 06:24:47 2018 +0000
6 URL: https://gitweb.gentoo.org/proj/gnome.git/commit/?id=03338c6f
7
8 dev-libs/libgweather: bump
9
10 Package-Manager: Portage-2.3.36, Repoman-2.3.9
11 Manifest-Sign-Key: 0x7DF238CF0AA182E1
12
13 dev-libs/libgweather/libgweather-3.26.2.ebuild | 53 ++++++++++++++++++++++++++
14 1 file changed, 53 insertions(+)
15
16 diff --git a/dev-libs/libgweather/libgweather-3.26.2.ebuild b/dev-libs/libgweather/libgweather-3.26.2.ebuild
17 new file mode 100644
18 index 00000000..81bb7f83
19 --- /dev/null
20 +++ b/dev-libs/libgweather/libgweather-3.26.2.ebuild
21 @@ -0,0 +1,53 @@
22 +# Copyright 1999-2018 Gentoo Foundation
23 +# Distributed under the terms of the GNU General Public License v2
24 +
25 +EAPI=6
26 +VALA_USE_DEPEND="vapigen"
27 +
28 +inherit gnome2 vala
29 +
30 +DESCRIPTION="Library to access weather information from online services"
31 +HOMEPAGE="https://wiki.gnome.org/Projects/LibGWeather"
32 +
33 +LICENSE="GPL-2+"
34 +SLOT="2/3-6" # subslot = 3-(libgweather-3 soname suffix)
35 +
36 +IUSE="glade +introspection vala"
37 +REQUIRED_USE="vala? ( introspection )"
38 +
39 +KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~ia64 ~ppc ~ppc64 ~sh ~sparc ~x86 ~x86-fbsd ~amd64-linux ~x86-linux ~x86-solaris"
40 +
41 +COMMON_DEPEND="
42 + >=x11-libs/gtk+-3.13.5:3[introspection?]
43 + >=dev-libs/glib-2.35.1:2
44 + >=net-libs/libsoup-2.44:2.4
45 + >=dev-libs/libxml2-2.6.0:2
46 + sci-geosciences/geocode-glib
47 + >=sys-libs/timezone-data-2010k
48 +
49 + glade? ( >=dev-util/glade-3.16:3.10 )
50 + introspection? ( >=dev-libs/gobject-introspection-0.9.5:= )
51 +"
52 +RDEPEND="${COMMON_DEPEND}
53 + !<gnome-base/gnome-applets-2.22.0
54 +"
55 +DEPEND="${COMMON_DEPEND}
56 + >=dev-util/gtk-doc-am-1.11
57 + >=dev-util/intltool-0.50
58 + >=sys-devel/gettext-0.18
59 + virtual/pkgconfig
60 + vala? ( $(vala_depend) )
61 +"
62 +
63 +src_prepare() {
64 + use vala && vala_src_prepare
65 + gnome2_src_prepare
66 +}
67 +
68 +src_configure() {
69 + gnome2_src_configure \
70 + --disable-static \
71 + $(use_enable glade glade-catalog) \
72 + $(use_enable introspection) \
73 + $(use_enable vala)
74 +}