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/files: libmateweather-1.6.1-fix-mkdirp.patch libmateweather-1.5.0-fix-automagic-python-support.patch
Date: Fri, 28 Feb 2014 23:10:02
Message-Id: 20140228230959.3786D2004C@flycatcher.gentoo.org
1 tomwij 14/02/28 23:09:59
2
3 Added: libmateweather-1.6.1-fix-mkdirp.patch
4 libmateweather-1.5.0-fix-automagic-python-support.patch
5 Log:
6 New ebuild for dev-libs/libmateweather, MATE library to access weather information from online services; imported from the mate-overlay, reviewed and adjusted.
7
8 (Portage version: HEAD/cvs/Linux x86_64, signed Manifest commit with key 6D34E57D)
9
10 Revision Changes Path
11 1.1 dev-libs/libmateweather/files/libmateweather-1.6.1-fix-mkdirp.patch
12
13 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/libmateweather/files/libmateweather-1.6.1-fix-mkdirp.patch?rev=1.1&view=markup
14 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/libmateweather/files/libmateweather-1.6.1-fix-mkdirp.patch?rev=1.1&content-type=text/plain
15
16 Index: libmateweather-1.6.1-fix-mkdirp.patch
17 ===================================================================
18 diff -burN a/python/Makefile.am b/python/Makefile.am
19 --- a/python/Makefile.am 2012-06-22 01:08:01.978411103 +0200
20 +++ b/python/Makefile.am 2012-06-22 01:11:02.007416691 +0200
21 @@ -1,4 +1,7 @@
22 if BUILD_PYTHON
23 +
24 +MKDIR_P=@mkdir_p@
25 +
26 AM_CPPFLAGS = \
27 -I$(top_srcdir) \
28 $(PYTHON_INCLUDES) \
29
30
31
32 1.1 dev-libs/libmateweather/files/libmateweather-1.5.0-fix-automagic-python-support.patch
33
34 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/libmateweather/files/libmateweather-1.5.0-fix-automagic-python-support.patch?rev=1.1&view=markup
35 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/libmateweather/files/libmateweather-1.5.0-fix-automagic-python-support.patch?rev=1.1&content-type=text/plain
36
37 Index: libmateweather-1.5.0-fix-automagic-python-support.patch
38 ===================================================================
39 diff -burN libmateweather-1.5.1.orig/configure.ac libmateweather-1.5.1/configure.ac
40 --- libmateweather-1.5.1.orig/configure.ac 2013-02-04 15:53:55.420890494 +0100
41 +++ libmateweather-1.5.1/configure.ac 2013-02-04 15:55:19.618967277 +0100
42 @@ -215,7 +215,7 @@
43 AC_ARG_ENABLE(python,
44 [AC_HELP_STRING([--enable-python],
45 [Build libmateweather python bindings])],
46 - [enable_python=yes],
47 + [enable_python=$enableval],
48 [enable_python=no])
49 if test "$enable_python" = "yes"; then
50 AM_PATH_PYTHON()