commit:     218ed79926574f50c582795dafb2d6dd4d29465d
Author:     Bernard Cafarelli <voyageur <AT> gentoo <DOT> org>
AuthorDate: Sun Mar 29 11:17:12 2020 +0000
Commit:     Bernard Cafarelli <voyageur <AT> gentoo <DOT> org>
CommitDate: Sun Mar 29 11:35:24 2020 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=218ed799

x11-plugins/wmweather: fix build with -fno-common

Closes: https://bugs.gentoo.org/714802
Package-Manager: Portage-2.3.96, Repoman-2.3.22
Signed-off-by: Bernard Cafarelli <voyageur <AT> gentoo.org>

 .../files/wmweather-2.4.7-fno-common.patch         | 23 ++++++++++++++++++++++
 x11-plugins/wmweather/wmweather-2.4.7.ebuild       |  9 ++++++++-
 2 files changed, 31 insertions(+), 1 deletion(-)

diff --git a/x11-plugins/wmweather/files/wmweather-2.4.7-fno-common.patch 
b/x11-plugins/wmweather/files/wmweather-2.4.7-fno-common.patch
new file mode 100644
index 00000000000..5db5fbcc2e3
--- /dev/null
+++ b/x11-plugins/wmweather/files/wmweather-2.4.7-fno-common.patch
@@ -0,0 +1,23 @@
+diff -Naur wmweather-2.4.7.orig/src/wmgeneral.h wmweather-2.4.7/src/wmgeneral.h
+--- wmweather-2.4.7.orig/src/wmgeneral.h       2019-02-13 20:54:48.000000000 
+0100
++++ wmweather-2.4.7/src/wmgeneral.h    2020-03-29 13:14:19.373976239 +0200
+@@ -36,7 +36,7 @@
+  /* Global variable */
+ /*******************/
+ 
+-Display               *display;
++extern Display                *display;
+ 
+   /***********************/
+  /* Function Prototypes */
+diff -Naur wmweather-2.4.7.orig/src/wmweather.c wmweather-2.4.7/src/wmweather.c
+--- wmweather-2.4.7.orig/src/wmweather.c       2019-02-13 20:54:49.000000000 
+0100
++++ wmweather-2.4.7/src/wmweather.c    2020-03-29 13:14:57.254963956 +0200
+@@ -56,6 +56,7 @@
+ static void update(int);
+ static size_t curl_callback(void*, size_t, size_t, void*);
+ 
++Display *display;
+ CURL
+       *curl       = NULL;
+ static struct memory

diff --git a/x11-plugins/wmweather/wmweather-2.4.7.ebuild 
b/x11-plugins/wmweather/wmweather-2.4.7.ebuild
index 2109007a6f6..174e4977f14 100644
--- a/x11-plugins/wmweather/wmweather-2.4.7.ebuild
+++ b/x11-plugins/wmweather/wmweather-2.4.7.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2019 Gentoo Authors
+# Copyright 1999-2020 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=6
@@ -27,3 +27,10 @@ DOCS=(
        "${WORKDIR}"/${P}/CHANGES
        "${WORKDIR}"/${P}/README
        )
+
+src_prepare() {
+       default
+
+       pushd "${WORKDIR}"/${P} || die
+       eapply "${FILESDIR}"/${P}-fno-common.patch
+}

Reply via email to