commit:     dacd3a7b9111a3a590da3ce4a4a04dff012e5790
Author:     Alfredo Tupone <tupone <AT> gentoo <DOT> org>
AuthorDate: Wed Dec 20 21:55:59 2023 +0000
Commit:     Alfredo Tupone <tupone <AT> gentoo <DOT> org>
CommitDate: Wed Dec 20 21:56:31 2023 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=dacd3a7b

dev-lang/gnucobol: fix undefined symbol

Closes: https://bugs.gentoo.org/913558
Signed-off-by: Alfredo Tupone <tupone <AT> gentoo.org>

 dev-lang/gnucobol/files/gnucobol-3.1.2-ncurses.patch | 20 ++++++++++++++++++++
 dev-lang/gnucobol/gnucobol-3.1.2.ebuild              |  7 +++++--
 2 files changed, 25 insertions(+), 2 deletions(-)

diff --git a/dev-lang/gnucobol/files/gnucobol-3.1.2-ncurses.patch 
b/dev-lang/gnucobol/files/gnucobol-3.1.2-ncurses.patch
new file mode 100644
index 000000000000..b778f57764b1
--- /dev/null
+++ b/dev-lang/gnucobol/files/gnucobol-3.1.2-ncurses.patch
@@ -0,0 +1,20 @@
+--- a/configure.ac     2023-12-20 22:48:44.764596449 +0100
++++ b/configure.ac     2023-12-20 22:50:10.493170634 +0100
+@@ -1109,7 +1109,7 @@
+            USE_CURSES="missing_header"
+          fi], [])], [])
+     if test "$USE_CURSES" = "ncursesw"; then
+-      LIBCOB_LIBS="$LIBCOB_LIBS -lncursesw"
++      LIBCOB_LIBS="$LIBCOB_LIBS $(ncursesw6-config --libs)"
+     fi
+   else
+     if test "$USE_CURSES" = "ncursesw"; then
+@@ -1128,7 +1128,7 @@
+               USE_CURSES="missing_header"
+             fi], [])], [])], [])
+     if test "$USE_CURSES" = "ncurses"; then
+-      LIBCOB_LIBS="$LIBCOB_LIBS -lncurses"
++      LIBCOB_LIBS="$LIBCOB_LIBS $(ncurses6-config --libs)"
+     fi
+   else
+     if test "$USE_CURSES" = "ncurses"; then

diff --git a/dev-lang/gnucobol/gnucobol-3.1.2.ebuild 
b/dev-lang/gnucobol/gnucobol-3.1.2.ebuild
index b6419a90cf82..bfd13e668871 100644
--- a/dev-lang/gnucobol/gnucobol-3.1.2.ebuild
+++ b/dev-lang/gnucobol/gnucobol-3.1.2.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2022 Gentoo Authors
+# Copyright 1999-2023 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=8
@@ -26,7 +26,10 @@ BDEPEND="sys-devel/libtool"
 
 DOCS=( AUTHORS ChangeLog NEWS README README.md )
 
-PATCHES=( "${FILESDIR}"/${P}-gentoo.patch )
+PATCHES=(
+       "${FILESDIR}"/${P}-gentoo.patch
+       "${FILESDIR}"/${P}-ncurses.patch
+)
 
 src_prepare() {
        default

Reply via email to