public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
* [gentoo-commits] repo/gentoo:master commit in: sci-calculators/transcalc/files/, sci-calculators/transcalc/
@ 2021-01-02 19:16 David Seifert
  0 siblings, 0 replies; only message in thread
From: David Seifert @ 2021-01-02 19:16 UTC (permalink / raw
  To: gentoo-commits

commit:     bc87905acb5f7f3bca89b62a0ca543352aaba78f
Author:     David Seifert <soap <AT> gentoo <DOT> org>
AuthorDate: Sat Jan  2 19:16:01 2021 +0000
Commit:     David Seifert <soap <AT> gentoo <DOT> org>
CommitDate: Sat Jan  2 19:16:01 2021 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=bc87905a

sci-calculators/transcalc: Fix -fno-common

Closes: https://bugs.gentoo.org/707536
Package-Manager: Portage-3.0.12, Repoman-3.0.2
Signed-off-by: David Seifert <soap <AT> gentoo.org>

 .../files/transcalc-0.14-fno-common.patch          | 70 ++++++++++++++++++++++
 sci-calculators/transcalc/transcalc-0.14-r2.ebuild | 14 +++--
 2 files changed, 78 insertions(+), 6 deletions(-)

diff --git a/sci-calculators/transcalc/files/transcalc-0.14-fno-common.patch b/sci-calculators/transcalc/files/transcalc-0.14-fno-common.patch
new file mode 100644
index 00000000000..1e9288c74b9
--- /dev/null
+++ b/sci-calculators/transcalc/files/transcalc-0.14-fno-common.patch
@@ -0,0 +1,70 @@
+--- a/src/transcalc.c
++++ b/src/transcalc.c
+@@ -37,6 +37,15 @@
+ extern gint trc_file_load (FILE *, short);
+ 
+ char version[] = "transcalc " VERSION;
++GtkWidget *main_body_window;
++GtkWidget *transtype_combo;
++
++short current_transtype;
++trans_win *twin;
++short statusint;
++trans_gui *tgui;
++gboolean statusexists;
++int main_window_width, main_window_height;
+ 
+ 
+ /*
+--- a/src/transcalc.h
++++ b/src/transcalc.h
+@@ -53,8 +53,8 @@
+ #endif /* HAVE_STRCPY */
+ 
+ 
+-GtkWidget *main_body_window;
+-GtkWidget *transtype_combo;
++extern GtkWidget *main_body_window;
++extern GtkWidget *transtype_combo;
+ /*GtkWidget *status;*/
+ 
+ #define MICROSTRIP 0
+@@ -163,12 +163,12 @@
+   gfloat electrical_params_value[NUMELECPARS];
+ } trans_value;
+ 
+-short current_transtype;
+-trans_win *twin;
+-short statusint;
+-trans_gui *tgui;
+-gboolean statusexists;
+-int main_window_width, main_window_height;
++extern short current_transtype;
++extern trans_win *twin;
++extern short statusint;
++extern trans_gui *tgui;
++extern gboolean statusexists;
++extern int main_window_width, main_window_height;
+ 
+ void error_mes(gchar * text);
+ 
+--- a/src/unitscombo.c
++++ b/src/unitscombo.c
+@@ -33,6 +33,7 @@
+ #include "transcalc.h"
+ #include "body.h"
+ 
++short length_unit, freq_unit, res_unit, ang_unit;
+ 
+ gchar *length_unit_name[] = { "mil",
+ 			      "cm",
+--- a/src/units.h
++++ b/src/units.h
+@@ -77,6 +77,6 @@
+ #define ohm_to_kohm(a) (a/1000.0)
+ */
+ 
+-short length_unit, freq_unit, res_unit, ang_unit;
++extern short length_unit, freq_unit, res_unit, ang_unit;
+ 
+ #endif

diff --git a/sci-calculators/transcalc/transcalc-0.14-r2.ebuild b/sci-calculators/transcalc/transcalc-0.14-r2.ebuild
index 02376bc9ed7..b6c144a8b7f 100644
--- a/sci-calculators/transcalc/transcalc-0.14-r2.ebuild
+++ b/sci-calculators/transcalc/transcalc-0.14-r2.ebuild
@@ -1,28 +1,30 @@
-# Copyright 1999-2016 Gentoo Foundation
+# Copyright 1999-2021 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
-EAPI=6
+EAPI=7
 
 DESCRIPTION="Microwave and RF transmission line calculator"
 HOMEPAGE="http://transcalc.sourceforge.net"
 SRC_URI="http://transcalc.sourceforge.net/${P}.tar.gz"
 
 LICENSE="GPL-2"
-
 SLOT="0"
 KEYWORDS="~amd64 ~x86 ~amd64-linux ~x86-linux"
-IUSE=""
 
 RDEPEND="x11-libs/gtk+:2"
 DEPEND="${RDEPEND}"
 
 # patch from debian
-PATCHES=( "${FILESDIR}"/${P}-fd-perm.patch )
+PATCHES=(
+	"${FILESDIR}"/${P}-fd-perm.patch
+	"${FILESDIR}"/${P}-fno-common.patch
+)
 
 src_prepare() {
+	default
+
 	# respect flags
 	sed -i -e 's|^CFLAGS=|#CFLAGS=|g' configure || die
-	default
 	# syntax errors
 	sed -i \
 		-e 's/ythesize/ynthesize/g' \


^ permalink raw reply related	[flat|nested] only message in thread

only message in thread, other threads:[~2021-01-02 19:16 UTC | newest]

Thread overview: (only message) (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2021-01-02 19:16 [gentoo-commits] repo/gentoo:master commit in: sci-calculators/transcalc/files/, sci-calculators/transcalc/ David Seifert

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox