* [gentoo-commits] repo/gentoo:master commit in: app-i18n/scim-bridge/files/, app-i18n/scim-bridge/
@ 2022-05-15 22:12 Sam James
0 siblings, 0 replies; 2+ messages in thread
From: Sam James @ 2022-05-15 22:12 UTC (permalink / raw
To: gentoo-commits
commit: 9471a43212eb183e3880f832d70e81f8046a7980
Author: orbea <orbea <AT> riseup <DOT> net>
AuthorDate: Sun May 15 18:01:05 2022 +0000
Commit: Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Sun May 15 22:09:43 2022 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9471a432
app-i18n/scim-bridge: Fix undefined references
With slibtool the gtk+2 build fails with undefined references for -lx11
which is missing entirely.
GNU libtool silently hides the bug by ignoring -no-undefined while
slibtool does not do this.
Bug: https://bugs.gentoo.org/779121
Upstream-PR: https://sourceforge.net/p/scim/patches/15/
Signed-off-by: orbea <orbea <AT> riseup.net>
Closes: https://github.com/gentoo/gentoo/pull/25505
Signed-off-by: Sam James <sam <AT> gentoo.org>
.../files/scim-bridge-0.4.16-slibtool.patch | 58 ++++++++++++++++++++++
app-i18n/scim-bridge/scim-bridge-0.4.16-r3.ebuild | 1 +
2 files changed, 59 insertions(+)
diff --git a/app-i18n/scim-bridge/files/scim-bridge-0.4.16-slibtool.patch b/app-i18n/scim-bridge/files/scim-bridge-0.4.16-slibtool.patch
new file mode 100644
index 000000000000..fdd5583d8ea6
--- /dev/null
+++ b/app-i18n/scim-bridge/files/scim-bridge-0.4.16-slibtool.patch
@@ -0,0 +1,58 @@
+From 9b46a64aea5adac5b992b4133065b52f527ec881 Mon Sep 17 00:00:00 2001
+From: orbea <orbea@riseup.net>
+Date: Sun, 15 May 2022 10:46:17 -0700
+Subject: [PATCH] client-gtk: Fix X11 undefined references
+
+With slibtool the client-gtk build fails with undefined references for
+-lx11. This happens because the build includes -no-undefined and then
+fails to test for the libX11 pkgconfig file.
+
+GNU libtool silently ignores -no-undefined and hides this issue while
+slibtool does not do this.
+---
+ client-gtk/Makefile.am | 7 ++++---
+ configure.ac | 6 ++++++
+ 2 files changed, 10 insertions(+), 3 deletions(-)
+
+diff --git a/client-gtk/Makefile.am b/client-gtk/Makefile.am
+index 4318519..27728b8 100644
+--- a/client-gtk/Makefile.am
++++ b/client-gtk/Makefile.am
+@@ -33,13 +33,14 @@ im_scim_bridge_la_SOURCES = im-scim-bridge-gtk.c \
+ scim-bridge-client-imcontext-gtk.c \
+ scim-bridge-client-key-event-utility-gtk.c
+
+-im_scim_bridge_la_CXXFLAGS=@GTK2_CFLAGS@
+-im_scim_bridge_la_CFLAGS =@GTK2_CFLAGS@
++im_scim_bridge_la_CXXFLAGS=@GTK2_CFLAGS@ @X11_CFLAGS@
++im_scim_bridge_la_CFLAGS =@GTK2_CFLAGS@ @X11_CFLAGS@
+
+ im_scim_bridge_la_LDFLAGS = -rpath $(moduledir) \
+ -avoid-version -no-undefined \
+ -module \
+- @GTK2_LIBS@
++ @GTK2_LIBS@ \
++ @X11_LIBS@
+
+ im_scim_bridge_la_LIBADD = $(top_srcdir)/common/libscimbridgecommon.la \
+ $(top_srcdir)/client-common/libscimbridgeclientcommon.la
+diff --git a/configure.ac b/configure.ac
+index 4c4b1fb..8b2a7a8 100644
+--- a/configure.ac
++++ b/configure.ac
+@@ -205,6 +205,12 @@ else
+ enable_qt4_immodule=no
+ fi
+
++if test "$SCIM_BRIDGE_BUILD_IMMODULE" = "1"; then
++ PKG_CHECK_MODULES(X11, [x11])
++ AC_SUBST(X11_LIBS)
++ AC_SUBST(X11_CFLAGS)
++fi
++
+ AM_CONDITIONAL(SCIM_BRIDGE_BUILD_TESTS,
+ [test "$enable_tests" = "yes"])
+
+--
+2.35.1
+
diff --git a/app-i18n/scim-bridge/scim-bridge-0.4.16-r3.ebuild b/app-i18n/scim-bridge/scim-bridge-0.4.16-r3.ebuild
index 9fe5ab6806ac..cb584cf64232 100644
--- a/app-i18n/scim-bridge/scim-bridge-0.4.16-r3.ebuild
+++ b/app-i18n/scim-bridge/scim-bridge-0.4.16-r3.ebuild
@@ -43,6 +43,7 @@ PATCHES=(
"${FILESDIR}/${P}+gcc-4.7.patch"
"${FILESDIR}/${P}-configure.ac.patch" #280887
"${FILESDIR}/${P}-fixes-send-function-call.patch" # 645168
+ "${FILESDIR}/${P}-slibtool.patch" # 779121
)
src_prepare() {
^ permalink raw reply related [flat|nested] 2+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: app-i18n/scim-bridge/files/, app-i18n/scim-bridge/
@ 2022-05-15 22:12 Sam James
0 siblings, 0 replies; 2+ messages in thread
From: Sam James @ 2022-05-15 22:12 UTC (permalink / raw
To: gentoo-commits
commit: c5188fb4153e8626cc2c0ba0a8aad7c5b4aa86c4
Author: orbea <orbea <AT> riseup <DOT> net>
AuthorDate: Sun May 15 17:23:38 2022 +0000
Commit: Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Sun May 15 22:09:42 2022 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c5188fb4
app-i18n/scim-bridge: Fix build with gcc7
Uses an old patch from Fedora.
Bug: https://bugs.gentoo.org/645168
Fedora Commit: https://src.fedoraproject.org/rpms/scim-bridge/c/0532ab48617e02f5bfb1edaba17b22e88d9beaf4
Signed-off-by: orbea <orbea <AT> riseup.net>
Signed-off-by: Sam James <sam <AT> gentoo.org>
.../scim-bridge-0.4.16-fixes-send-function-call.patch | 15 +++++++++++++++
app-i18n/scim-bridge/scim-bridge-0.4.16-r3.ebuild | 3 ++-
2 files changed, 17 insertions(+), 1 deletion(-)
diff --git a/app-i18n/scim-bridge/files/scim-bridge-0.4.16-fixes-send-function-call.patch b/app-i18n/scim-bridge/files/scim-bridge-0.4.16-fixes-send-function-call.patch
new file mode 100644
index 000000000000..fd894441a5a7
--- /dev/null
+++ b/app-i18n/scim-bridge/files/scim-bridge-0.4.16-fixes-send-function-call.patch
@@ -0,0 +1,15 @@
+From Fedora:
+https://src.fedoraproject.org/rpms/scim-bridge/c/0532ab48617e02f5bfb1edaba17b22e88d9beaf4
+Index: scim-bridge-0.4.16/agent/scim-bridge-agent-signal-listener.cpp
+===================================================================
+--- scim-bridge-0.4.16.orig/agent/scim-bridge-agent-signal-listener.cpp
++++ scim-bridge-0.4.16/agent/scim-bridge-agent-signal-listener.cpp
+@@ -64,7 +64,7 @@ static void sig_quit (int sig)
+ {
+ if (!signal_occurred) {
+ signal_occurred = true;
+- send (pipe_in, '\0', sizeof (char), MSG_NOSIGNAL);
++ send (pipe_in, "", sizeof (char), MSG_NOSIGNAL);
+ }
+ }
+
diff --git a/app-i18n/scim-bridge/scim-bridge-0.4.16-r3.ebuild b/app-i18n/scim-bridge/scim-bridge-0.4.16-r3.ebuild
index 09cdd8f522b3..9fe5ab6806ac 100644
--- a/app-i18n/scim-bridge/scim-bridge-0.4.16-r3.ebuild
+++ b/app-i18n/scim-bridge/scim-bridge-0.4.16-r3.ebuild
@@ -1,7 +1,7 @@
# Copyright 1999-2022 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
-EAPI="6"
+EAPI=8
inherit autotools gnome2-utils readme.gentoo-r1
@@ -42,6 +42,7 @@ PATCHES=(
"${FILESDIR}/${P}+gcc-4.4.patch"
"${FILESDIR}/${P}+gcc-4.7.patch"
"${FILESDIR}/${P}-configure.ac.patch" #280887
+ "${FILESDIR}/${P}-fixes-send-function-call.patch" # 645168
)
src_prepare() {
^ permalink raw reply related [flat|nested] 2+ messages in thread
end of thread, other threads:[~2022-05-15 22:12 UTC | newest]
Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2022-05-15 22:12 [gentoo-commits] repo/gentoo:master commit in: app-i18n/scim-bridge/files/, app-i18n/scim-bridge/ Sam James
-- strict thread matches above, loose matches on Subject: below --
2022-05-15 22:12 Sam James
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox