* [gentoo-commits] repo/gentoo:master commit in: sci-calculators/transcalc/, sci-calculators/transcalc/files/
@ 2024-10-14 3:54 Matt Jolly
0 siblings, 0 replies; only message in thread
From: Matt Jolly @ 2024-10-14 3:54 UTC (permalink / raw
To: gentoo-commits
commit: 749751c44811dc075d210f6801374235f6393a5e
Author: Brahmajit Das <brahmajit.xyz <AT> gmail <DOT> com>
AuthorDate: Fri Apr 26 11:15:05 2024 +0000
Commit: Matt Jolly <kangie <AT> gentoo <DOT> org>
CommitDate: Mon Oct 14 03:54:04 2024 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=749751c4
sci-calculators/transcalc: Fix passing incompatible pointer type
Closes: https://bugs.gentoo.org/927899
Signed-off-by: Brahmajit Das <brahmajit.xyz <AT> gmail.com>
Closes: https://github.com/gentoo/gentoo/pull/36432
Signed-off-by: Matt Jolly <kangie <AT> gentoo.org>
.../files/transcalc-0.14-gcc14-build-fix.patch | 15 ++++++++++
sci-calculators/transcalc/transcalc-0.14-r3.ebuild | 33 ++++++++++++++++++++++
2 files changed, 48 insertions(+)
diff --git a/sci-calculators/transcalc/files/transcalc-0.14-gcc14-build-fix.patch b/sci-calculators/transcalc/files/transcalc-0.14-gcc14-build-fix.patch
new file mode 100644
index 000000000000..2da5c78df8ad
--- /dev/null
+++ b/sci-calculators/transcalc/files/transcalc-0.14-gcc14-build-fix.patch
@@ -0,0 +1,15 @@
+Bug: https://bugs.gentoo.org/927899
+--- a/src/print_trans.c
++++ b/src/print_trans.c
+@@ -61,8 +61,9 @@ get_trans_text ()
+ gchar *retval = NULL;
+ trans_label *tlabel;
+ int i;
+- const gchar *newch1=NULL, *newch2 = NULL;
+- const gchar *tmpstr=NULL;
++ gchar *newch1=NULL;
++ const gchar *newch2 = NULL;
++ gchar *tmpstr=NULL;
+ GString *s = g_string_new (NULL);
+
+
diff --git a/sci-calculators/transcalc/transcalc-0.14-r3.ebuild b/sci-calculators/transcalc/transcalc-0.14-r3.ebuild
new file mode 100644
index 000000000000..f0297d08efd1
--- /dev/null
+++ b/sci-calculators/transcalc/transcalc-0.14-r3.ebuild
@@ -0,0 +1,33 @@
+# Copyright 1999-2024 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+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"
+
+RDEPEND="x11-libs/gtk+:2"
+DEPEND="${RDEPEND}"
+
+# patch from debian
+PATCHES=(
+ "${FILESDIR}"/${P}-fd-perm.patch
+ "${FILESDIR}"/${P}-fno-common.patch
+ "${FILESDIR}"/${P}-gcc14-build-fix.patch
+)
+
+src_prepare() {
+ default
+
+ # respect flags
+ sed -i -e 's|^CFLAGS=|#CFLAGS=|g' configure || die
+ # syntax errors
+ sed -i \
+ -e 's/ythesize/ynthesize/g' \
+ src/{setup_menu.c,help.h} docs/transcalc.sgml README || die
+}
^ permalink raw reply related [flat|nested] only message in thread
only message in thread, other threads:[~2024-10-14 3:54 UTC | newest]
Thread overview: (only message) (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2024-10-14 3:54 [gentoo-commits] repo/gentoo:master commit in: sci-calculators/transcalc/, sci-calculators/transcalc/files/ Matt Jolly
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox