Gentoo Archives: gentoo-commits

From: "Tom Wijsman (tomwij)" <tomwij@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in dev-libs/libmateweather: metadata.xml libmateweather-1.6.2.ebuild ChangeLog
Date: Fri, 28 Feb 2014 23:10:02
Message-Id: 20140228230959.65EB42004E@flycatcher.gentoo.org
1 tomwij 14/02/28 23:09:59
2
3 Added: metadata.xml libmateweather-1.6.2.ebuild ChangeLog
4 Log:
5 New ebuild for dev-libs/libmateweather, MATE library to access weather information from online services; imported from the mate-overlay, reviewed and adjusted.
6
7 (Portage version: HEAD/cvs/Linux x86_64, signed Manifest commit with key 6D34E57D)
8
9 Revision Changes Path
10 1.1 dev-libs/libmateweather/metadata.xml
11
12 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/libmateweather/metadata.xml?rev=1.1&view=markup
13 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/libmateweather/metadata.xml?rev=1.1&content-type=text/plain
14
15 Index: metadata.xml
16 ===================================================================
17 <?xml version="1.0" encoding="UTF-8"?>
18 <!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
19 <pkgmetadata>
20 <maintainer>
21 <email>TomWij@g.o</email>
22 <name>Tom Wijsman</name>
23 </maintainer>
24 </pkgmetadata>
25
26
27
28 1.1 dev-libs/libmateweather/libmateweather-1.6.2.ebuild
29
30 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/libmateweather/libmateweather-1.6.2.ebuild?rev=1.1&view=markup
31 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/libmateweather/libmateweather-1.6.2.ebuild?rev=1.1&content-type=text/plain
32
33 Index: libmateweather-1.6.2.ebuild
34 ===================================================================
35 # Copyright 1999-2014 Gentoo Foundation
36 # Distributed under the terms of the GNU General Public License v2
37 # $Header: /var/cvsroot/gentoo-x86/dev-libs/libmateweather/libmateweather-1.6.2.ebuild,v 1.1 2014/02/28 23:09:59 tomwij Exp $
38
39 EAPI="5"
40
41 GCONF_DEBUG="yes"
42 GNOME2_LA_PUNT="yes"
43 PYTHON_COMPAT=( python2_{6,7} )
44
45 inherit autotools gnome2 python-r1 versionator
46
47 MATE_BRANCH="$(get_version_component_range 1-2)"
48
49 SRC_URI="http://pub.mate-desktop.org/releases/${MATE_BRANCH}/${P}.tar.xz"
50 DESCRIPTION="MATE library to access weather information from online services"
51 HOMEPAGE="http://mate-desktop.org"
52
53 LICENSE="GPL-2"
54 SLOT="0"
55 KEYWORDS="~amd64"
56
57 IUSE="python"
58
59 REQUIRED_USE="python? ( ${PYTHON_REQUIRED_USE} )"
60
61 RDEPEND=">=dev-libs/glib-2.13:2[${PYTHON_USEDEP}]
62 >=dev-libs/libxml2-2.6.0:2
63 >=net-libs/libsoup-2.42.1:2.4
64 >=net-libs/libsoup-gnome-2.25.1:2.4
65 >=sys-libs/timezone-data-2010k:0
66 x11-libs/gdk-pixbuf:2
67 >=x11-libs/gtk+-2.11:2
68 sys-libs/glibc:2.2
69 virtual/libintl:0
70
71 python? (
72 ${PYTHON_DEPS}
73 >=dev-python/pygobject-2:2[${PYTHON_USEDEP}]
74 >=dev-python/pygtk-2:2[${PYTHON_USEDEP}]
75 )"
76
77 DEPEND="${RDEPEND}
78 >=dev-util/gtk-doc-1.9:0
79 >=dev-util/intltool-0.40.3:0
80 >=mate-base/mate-common-1.6:0
81 sys-devel/gettext:0
82 virtual/pkgconfig:0"
83
84 src_prepare() {
85 # Fix python automagic dependency in configure.in.
86 epatch "${FILESDIR}"/${PN}-1.5.0-fix-automagic-python-support.patch
87
88 # Fix undefined use of MKDIR_P in python/Makefile.am.
89 epatch "${FILESDIR}"/${PN}-1.6.1-fix-mkdirp.patch
90
91 eautoreconf
92
93 python_copy_sources
94 python_foreach_impl run_in_build_dir gnome2_src_prepare
95 }
96
97 src_configure() {
98 python_foreach_impl run_in_build_dir gnome2_src_configure \
99 --enable-locations-compression \
100 --disable-all-translations-in-one-xml \
101 $(use_enable python)
102 }
103
104 src_compile() {
105 python_foreach_impl run_in_build_dir gnome2_src_compile
106 }
107
108 DOCS="AUTHORS ChangeLog MAINTAINERS NEWS"
109
110 src_install() {
111 python_foreach_impl run_in_build_dir gnome2_src_install
112 }
113
114
115
116 1.1 dev-libs/libmateweather/ChangeLog
117
118 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/libmateweather/ChangeLog?rev=1.1&view=markup
119 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/libmateweather/ChangeLog?rev=1.1&content-type=text/plain
120
121 Index: ChangeLog
122 ===================================================================
123 # ChangeLog for dev-libs/libmateweather
124 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
125 # $Header: /var/cvsroot/gentoo-x86/dev-libs/libmateweather/ChangeLog,v 1.1 2014/02/28 23:09:59 tomwij Exp $
126
127 *libmateweather-1.6.2 (28 Feb 2014)
128
129 28 Feb 2014; Tom Wijsman <TomWij@g.o>
130 +files/libmateweather-1.5.0-fix-automagic-python-support.patch,
131 +files/libmateweather-1.6.1-fix-mkdirp.patch, +libmateweather-1.6.2.ebuild,
132 +metadata.xml:
133 New ebuild for dev-libs/libmateweather, MATE library to access weather
134 information from online services; imported from the mate-overlay, reviewed and
135 adjusted.