diff options
Diffstat (limited to 'app-editors/zile/zile-2.4.14.ebuild')
-rw-r--r-- | app-editors/zile/zile-2.4.14.ebuild | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/app-editors/zile/zile-2.4.14.ebuild b/app-editors/zile/zile-2.4.14.ebuild index 3438a470a0a9..6b6774de68e1 100644 --- a/app-editors/zile/zile-2.4.14.ebuild +++ b/app-editors/zile/zile-2.4.14.ebuild @@ -34,6 +34,17 @@ src_configure() { CURSES_LIB="$("$(tc-getPKG_CONFIG)" --libs ncurses)" } +src_test() { + if tput cup 0 0 >/dev/null || tput cuu1 >/dev/null; then + # We have a sane terminal that can move the cursor + emake check + else + ewarn "Terminal type \"${TERM}\" is too stupid to run zile" + ewarn "Running the tests with unset TERM instead" + ( unset TERM; emake check ) + fi +} + src_install() { emake DESTDIR="${D}" install |