Gentoo Archives: gentoo-commits

From: Lars Wendler <polynomial-c@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: app-text/hunspell/files/
Date: Sat, 14 Dec 2019 13:32:41
Message-Id: 1576330354.b31c8c01c55f707aa8c539408ede02e5efd7e478.polynomial-c@gentoo
1 commit: b31c8c01c55f707aa8c539408ede02e5efd7e478
2 Author: Lars Wendler <polynomial-c <AT> gentoo <DOT> org>
3 AuthorDate: Sat Dec 14 13:31:16 2019 +0000
4 Commit: Lars Wendler <polynomial-c <AT> gentoo <DOT> org>
5 CommitDate: Sat Dec 14 13:32:34 2019 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b31c8c01
7
8 app-text/hunspell: Adjusted tinfo patch
9
10 Package-Manager: Portage-2.3.81, Repoman-2.3.20
11 Signed-off-by: Lars Wendler <polynomial-c <AT> gentoo.org>
12
13 app-text/hunspell/files/hunspell-1.7.0-tinfo.patch | 10 +++++-----
14 1 file changed, 5 insertions(+), 5 deletions(-)
15
16 diff --git a/app-text/hunspell/files/hunspell-1.7.0-tinfo.patch b/app-text/hunspell/files/hunspell-1.7.0-tinfo.patch
17 index 1fb992b0c9d..121c53e4595 100644
18 --- a/app-text/hunspell/files/hunspell-1.7.0-tinfo.patch
19 +++ b/app-text/hunspell/files/hunspell-1.7.0-tinfo.patch
20 @@ -1,4 +1,4 @@
21 -From ce41cfc39129ee2be67667f2d9b78cc7f7d24dca Mon Sep 17 00:00:00 2001
22 +From b9a07b1ff100d5efeb5698d0ffe1c56935c681b8 Mon Sep 17 00:00:00 2001
23 From: zimous <zimous@××××××.cz>
24 Date: Mon, 2 Sep 2019 12:46:53 +0200
25 Subject: [PATCH] Fix build against ncurses with separate tinfo lib
26 @@ -9,7 +9,7 @@ Gentoo-bug: https://bugs.gentoo.org/692614
27 1 file changed, 18 insertions(+), 4 deletions(-)
28
29 diff --git a/configure.ac b/configure.ac
30 -index 9426a94..bc5e39d 100644
31 +index 9426a94..958375f 100644
32 --- a/configure.ac
33 +++ b/configure.ac
34 @@ -52,11 +52,23 @@ AC_ARG_WITH(
35 @@ -21,13 +21,13 @@ index 9426a94..bc5e39d 100644
36 + ])
37 ],[AC_CHECK_LIB([curses],[tparm],[
38 CURSESLIB=-lcurses
39 -+ AC_CHECK_LIB([tinfow],[tgetent], [
40 ++ AC_CHECK_LIB([tinfo],[tgetent], [
41 + CURSESLIB="$CURSESLIB -ltinfo"
42 + ])
43 ],[AC_CHECK_LIB([ncurses],[tparm],[
44 CURSESLIB=-lncurses
45 - ])])])
46 -+ AC_CHECK_LIB([tinfow],[tgetent], [
47 ++ AC_CHECK_LIB([tinfo],[tgetent], [
48 + CURSESLIB="$CURSESLIB -ltinfo"
49 + ])
50 + ],
51 @@ -57,5 +57,5 @@ index 9426a94..bc5e39d 100644
52 LDFLAGS="$LDFLAGS $TERMLIB"
53 AC_CHECK_LIB([readline],[readline],[
54 --
55 -2.23.0
56 +2.24.1