summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLars Wendler <polynomial-c@gentoo.org>2019-07-18 16:31:49 +0200
committerLars Wendler <polynomial-c@gentoo.org>2019-07-18 16:32:02 +0200
commit22e8fe9d148be427cd278dbc7de4b512e744627a (patch)
tree708fe6524b92e97e8630176fd8f08c54c10d3b14 /media-sound/gom/files
parentsys-libs/ncurses: sparc stable wrt bug #690050 (diff)
downloadgentoo-22e8fe9d148be427cd278dbc7de4b512e744627a.tar.gz
gentoo-22e8fe9d148be427cd278dbc7de4b512e744627a.tar.bz2
gentoo-22e8fe9d148be427cd278dbc7de4b512e744627a.zip
media-sound/gom: Fixed build with sys-libs/ncurses[tinfo]
Closes: https://bugs.gentoo.org/690092 Package-Manager: Portage-2.3.69, Repoman-2.3.16 Signed-off-by: Lars Wendler <polynomial-c@gentoo.org>
Diffstat (limited to 'media-sound/gom/files')
-rw-r--r--media-sound/gom/files/gom-0.29.103-tinfo.patch29
1 files changed, 29 insertions, 0 deletions
diff --git a/media-sound/gom/files/gom-0.29.103-tinfo.patch b/media-sound/gom/files/gom-0.29.103-tinfo.patch
new file mode 100644
index 000000000000..bb93fc2d39cd
--- /dev/null
+++ b/media-sound/gom/files/gom-0.29.103-tinfo.patch
@@ -0,0 +1,29 @@
+https://bugs.gentoo.org/690092
+
+--- gom-0.29.103/configure.in
++++ gom-0.29.103/configure.in
+@@ -25,6 +25,7 @@
+ AC_PROG_CC
+ AC_PROG_INSTALL
+ AC_PROG_LN_S
++PKG_PROG_PKG_CONFIG
+
+
+ dnl Custom options to configure
+@@ -39,11 +40,11 @@
+
+ dnl Checks for libraries.
+
+-AC_CHECK_LIB(ncurses, beep)
+-if [[ "$ac_cv_lib_ncurses_beep" != "yes" ]]
+- then AC_MSG_ERROR("Need ncurses library for terminal gomii!")
+-fi
+-
++PKG_CHECK_MODULES(NCURSES, ncurses, [
++ LIBS="$LIBS $NCURSES_LIBS"
++ ],[
++ AC_MSG_ERROR([Need ncurses library for terminal gomii!])
++ ])
+
+ if [[ "$enable_x_gomii" = "yes" ]]; then
+ AC_CHECK_LIB(X11, main)