sys-process/tiptop: Fixed build with sys-libs/ncurses[tinfo]
authorLars Wendler <polynomial-c@gentoo.org>
Sat, 23 Mar 2019 23:03:08 +0000 (00:03 +0100)
committerLars Wendler <polynomial-c@gentoo.org>
Sat, 23 Mar 2019 23:04:21 +0000 (00:04 +0100)
Closes: https://bugs.gentoo.org/618124
Package-Manager: Portage-2.3.62, Repoman-2.3.12
Signed-off-by: Lars Wendler <polynomial-c@gentoo.org>
sys-process/tiptop/files/tiptop-2.3.1-tinfo.patch [new file with mode: 0644]
sys-process/tiptop/tiptop-2.3.1.ebuild

diff --git a/sys-process/tiptop/files/tiptop-2.3.1-tinfo.patch b/sys-process/tiptop/files/tiptop-2.3.1-tinfo.patch
new file mode 100644 (file)
index 0000000..0f6c3c7
--- /dev/null
@@ -0,0 +1,12 @@
+https://bugs.gentoo.org/618124
+
+--- tiptop-2.3.1/configure.ac
++++ tiptop-2.3.1/configure.ac
+@@ -24,6 +24,7 @@
+                   AC_DEFINE([HAVE_LIBCURSES], [1], [Define to 1 if you have the `curses' library (-lcurses).])
+                   LIBS="-lcurses $LIBS"],
+              [have_curses=no])
++AC_CHECK_LIB([tinfo], [keypad], LIBS="-ltinfo $LIBS")
+ fi
+ if test ! x$disable_libxml2 = xno; then # check only if not disabled
index 0f5fd18600fe4c0b4bf250c19c62088a0d129cbd..fcbc8c638170261f1ec40efd432002811d4c7f0f 100644 (file)
@@ -1,7 +1,9 @@
-# Copyright 1999-2017 Gentoo Foundation
+# Copyright 1999-2019 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
-EAPI=5
+EAPI=7
+
+inherit autotools
 
 DESCRIPTION="top for performance counters"
 HOMEPAGE="http://tiptop.gforge.inria.fr/"
@@ -12,6 +14,17 @@ SLOT="0"
 KEYWORDS="~amd64 ~x86"
 IUSE=""
 
-RDEPEND="sys-libs/ncurses
-       dev-libs/libxml2"
+RDEPEND="
+       sys-libs/ncurses:0=
+       dev-libs/libxml2:=
+"
 DEPEND="${RDEPEND}"
+
+PATCHES=(
+       "${FILESDIR}"/${PN}-2.3.1-tinfo.patch #618124
+)
+
+src_prepare() {
+       default
+       eautoreconf #618124
+}