media-radio/xdx: Fix building with -fno-common
authorThomas Beierlein <tomjbe@gentoo.org>
Sat, 8 Feb 2020 09:29:52 +0000 (10:29 +0100)
committerThomas Beierlein <tomjbe@gentoo.org>
Sat, 8 Feb 2020 09:31:04 +0000 (10:31 +0100)
Bump to EAPI=7

Closes: https://bugs.gentoo.org/708376
Package-Manager: Portage-2.3.87, Repoman-2.3.20
Signed-off-by: Thomas Beierlein <tomjbe@gentoo.org>
media-radio/xdx/files/xdx-2.5.0-fno-common.patch [new file with mode: 0644]
media-radio/xdx/xdx-2.5.0.ebuild

diff --git a/media-radio/xdx/files/xdx-2.5.0-fno-common.patch b/media-radio/xdx/files/xdx-2.5.0-fno-common.patch
new file mode 100644 (file)
index 0000000..a707d09
--- /dev/null
@@ -0,0 +1,25 @@
+diff --git a/src/gui.c b/src/gui.c
+index a3af442..5298c11 100644
+--- a/src/gui.c
++++ b/src/gui.c
+@@ -76,6 +76,7 @@ extern preferencestype preferences;
+ static void on_highcheck_toggled(GtkToggleButton *togglebutton, gpointer user_data);
+ static void on_soundcheck_toggled(GtkToggleButton *togglebutton, gpointer user_data);
++guitype *gui;
+ /**********************************MAIN WINDOW********************************/
+ guitype *
+diff --git a/src/gui.h b/src/gui.h
+index 77b442f..6ba406f 100644
+--- a/src/gui.h
++++ b/src/gui.h
+@@ -53,7 +53,7 @@ typedef struct guitype {
+     gchar           *high8tagname;
+ } guitype;
+-guitype *gui;
++extern guitype *gui;
+ guitype *new_gui(void);
+ void create_mainwindow(void);
index 92511501a99dac35a9386d3c2c41b71f32c713cf..ed0eaf1b2f520e4e64f82bdd353d1b551204aa89 100644 (file)
@@ -1,7 +1,7 @@
-# Copyright 1999-2015 Gentoo Foundation
+# Copyright 1999-2020 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
-EAPI="5"
+EAPI="7"
 
 inherit eutils
 
@@ -19,13 +19,16 @@ DEPEND="${RDEPEND}
        virtual/pkgconfig
        nls? ( sys-devel/gettext )"
 
+PATCHES=( "${FILESDIR}/"${P}-fno-common.patch )
+DOCS=( AUTHORS ChangeLog NEWS README TODO )
+
 src_configure() {
        econf $(use_enable nls)
 }
 
 src_install() {
        emake DESTDIR="${D}" install
-       dodoc AUTHORS ChangeLog NEWS README TODO
+       einstalldocs
 }
 
 pkg_postinst() {