games-roguelike/angband: fix build with sys-libs/ncurses[tinfo]
authorStefan Strogin <stefan.strogin@gmail.com>
Thu, 4 Apr 2019 01:48:42 +0000 (04:48 +0300)
committerMichał Górny <mgorny@gentoo.org>
Fri, 5 Apr 2019 05:13:20 +0000 (07:13 +0200)
Closes: https://bugs.gentoo.org/679942
Package-Manager: Portage-2.3.62, Repoman-2.3.12
Signed-off-by: Stefan Strogin <stefan.strogin@gmail.com>
Signed-off-by: Michał Górny <mgorny@gentoo.org>
games-roguelike/angband/angband-4.1.3.ebuild
games-roguelike/angband/files/angband-4.1.3-tinfo.patch [new file with mode: 0644]

index 8a55a74706332751721e442d1fdbd0689ae648a9..29f6be451fb60770403edd093b646948a5977f4d 100644 (file)
@@ -37,6 +37,8 @@ DEPEND="${RDEPEND}"
 BDEPEND="dev-python/docutils
        virtual/pkgconfig"
 
+PATCHES=( "${FILESDIR}"/${P}-tinfo.patch )
+
 src_prepare() {
        default
 
diff --git a/games-roguelike/angband/files/angband-4.1.3-tinfo.patch b/games-roguelike/angband/files/angband-4.1.3-tinfo.patch
new file mode 100644 (file)
index 0000000..8a1f487
--- /dev/null
@@ -0,0 +1,29 @@
+From de53f9644323af0ff084bc82ef17b26aa6db250e Mon Sep 17 00:00:00 2001
+From: Stefan Strogin <stefan.strogin@gmail.com>
+Date: Thu, 4 Apr 2019 04:24:49 +0300
+Subject: [PATCH] Link against tinfow or tinfo if needed
+
+It is needed on systems where libtinfo is separate from libncurses.
+See: https://bugs.gentoo.org/679942
+
+Upstream-Status: Submitted [https://github.com/angband/angband/pull/522]
+Signed-off-by: Stefan Strogin <stefan.strogin@gmail.com>
+---
+ configure.ac | 1 +
+ 1 file changed, 1 insertion(+)
+
+diff --git a/configure.ac b/configure.ac
+index 4a671f33..04fa8cae 100644
+--- a/configure.ac
++++ b/configure.ac
+@@ -244,6 +244,7 @@ if test "$enable_curses" = "yes"; then
+                       LIBS="${LIBS} -lncursesw"
+                       MAINFILES="${MAINFILES} \$(GCUMAINFILES)"
+               ])
++              AC_SEARCH_LIBS([keypad], [tinfow tinfo])
+       fi
+ fi
+-- 
+2.21.0
+