From: Lars Wendler Date: Sat, 23 Mar 2019 23:03:08 +0000 (+0100) Subject: sys-process/tiptop: Fixed build with sys-libs/ncurses[tinfo] X-Git-Url: http://git.tremily.us/gitweb.cgi?a=commitdiff_plain;h=0d430b51102b30ae55acf289fabca0cfcabaceed;p=gentoo.git sys-process/tiptop: Fixed build with sys-libs/ncurses[tinfo] Closes: https://bugs.gentoo.org/618124 Package-Manager: Portage-2.3.62, Repoman-2.3.12 Signed-off-by: Lars Wendler --- 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 index 000000000000..0f6c3c740a1e --- /dev/null +++ b/sys-process/tiptop/files/tiptop-2.3.1-tinfo.patch @@ -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 diff --git a/sys-process/tiptop/tiptop-2.3.1.ebuild b/sys-process/tiptop/tiptop-2.3.1.ebuild index 0f5fd18600fe..fcbc8c638170 100644 --- a/sys-process/tiptop/tiptop-2.3.1.ebuild +++ b/sys-process/tiptop/tiptop-2.3.1.ebuild @@ -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 +}