--- /dev/null
+--- a/configure.ac
++++ b/configure.ac
+@@ -101,8 +101,11 @@
+ # (On Solaris 11.3, ncurses builds and links for us, but curses does not.)
+ [AC_SEARCH_LIBS(
+ [initscr], [ncurses curses],
+- [AC_DEFINE([HAVE_CURSES], [1], [Define if a curses library available])],
+- [with_ncurses=no])
++ AC_SEARCH_LIBS(
++ [raw], [ncurses curses cursesX tinfo],
++ [AC_DEFINE([HAVE_CURSES], [1], [Define if a curses library available])],
++ [with_ncurses=no]),
++ [with_ncurses=no])
+ ])
+ AM_CONDITIONAL([WITH_CURSES], [test "x$with_ncurses" = xyes])
+
-# Copyright 1999-2016 Gentoo Foundation
+# Copyright 1999-2017 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Id$
LICENSE="GPL-2"
SLOT="0"
KEYWORDS=""
-IUSE="gtk ipv6"
+IUSE="gtk ipv6 ncurses"
RDEPEND="
- sys-libs/ncurses:0=
gtk? (
dev-libs/glib:2
x11-libs/gtk+:2
)
+ ncurses? ( sys-libs/ncurses:0= )
"
DEPEND="
${RDEPEND}
DOCS=( AUTHORS FORMATS NEWS README SECURITY TODO )
FILECAPS=( cap_net_raw /usr/sbin/mtr )
PATCHES=(
- "${FILESDIR}"/${PN}-0.80-impl-dec.patch
+ "${FILESDIR}"/${PN}-9999-tinfo.patch
)
src_unpack() {
}
src_prepare() {
- default
-
# Keep this comment and following mv, even in case ebuild does not need
# it: kept gtk-2.0.m4 in SRC_URI but you'll have to mv it before autoreconf
mv "${WORKDIR}"/gtk-2.0-for-mtr.m4 gtk-2.0.m4 || die #222909
- eapply_user
+ default
AT_M4DIR="." eautoreconf
}
src_configure() {
# In the source's configure script -lresolv is commented out. Apparently it
- # is needed for 64bit macos still.
+ # is still needed for 64-bit MacOS.
[[ ${CHOST} == *-darwin* ]] && append-libs -lresolv
econf \
$(use_enable ipv6) \
- $(use_with gtk)
+ $(use_with gtk) \
+ $(use_with ncurses)
}