View | Details | Raw Unified | Return to bug 214695 | Differences between
and this patch

Collapse All | Expand All

(-)tig/Makefile (-2 / +2 lines)
Lines 2-10 Link Here
2
# $FreeBSD: head/devel/tig/Makefile 423383 2016-10-05 19:57:02Z amdmi3 $
2
# $FreeBSD: head/devel/tig/Makefile 423383 2016-10-05 19:57:02Z amdmi3 $
3
3
4
PORTNAME=	tig
4
PORTNAME=	tig
5
PORTVERSION=	2.2
5
PORTVERSION=	2.2.1
6
CATEGORIES=	devel
6
CATEGORIES=	devel
7
MASTER_SITES=	http://jonas.nitro.dk/tig/releases/
7
MASTER_SITES=	https://github.com/jonas/tig/releases/download/${DISTNAME}/
8
8
9
MAINTAINER=	darcsis@gmail.com
9
MAINTAINER=	darcsis@gmail.com
10
COMMENT=	Text-mode interface for git
10
COMMENT=	Text-mode interface for git
(-)tig/distinfo (-3 / +3 lines)
Lines 1-3 Link Here
1
TIMESTAMP = 1470883142
1
TIMESTAMP = 1479353524
2
SHA256 (tig-2.2.tar.gz) = 8f5213d3abb45ca9a79810b8d2a2a12d941112bc4682bcfa91f34db74942754c
2
SHA256 (tig-2.2.1.tar.gz) = 0b48080896de59179c45c980080b4b414bb235df65ad08d661a9c9e169c3fa71
3
SIZE (tig-2.2.tar.gz) = 1030062
3
SIZE (tig-2.2.1.tar.gz) = 1028479
(-)tig/files/patch-tools_ax__lib__readline.m4 (-26 lines)
Lines 1-26 Link Here
1
--- tools/ax_lib_readline.m4.orig	2016-08-11 02:38:59 UTC
2
+++ tools/ax_lib_readline.m4
3
@@ -33,17 +33,19 @@ _bash_needmsg=
4
 fi
5
 AC_CACHE_VAL(bash_cv_termcap_lib,
6
 [AC_CHECK_FUNC(tgetent, bash_cv_termcap_lib=libc,
7
-  [AC_CHECK_LIB(termcap, tgetent, bash_cv_termcap_lib=libtermcap,
8
-    [AC_CHECK_LIB(tinfo, tgetent, bash_cv_termcap_lib=libtinfo,
9
-        bash_cv_termcap_lib=gnutermcap
10
 if test "$ax_cv_curses_which" = "ncursesw"; then
11
         [AC_CHECK_LIB(ncursesw, tgetent, bash_cv_termcap_lib=libncursesw)]
12
 elif test "$ax_cv_curses_which" = "ncurses"; then
13
         [AC_CHECK_LIB(ncurses, tgetent, bash_cv_termcap_lib=libncurses)]
14
 elif test "$ax_cv_curses_which" = "plaincurses"; then
15
         [AC_CHECK_LIB(curses, tgetent, bash_cv_termcap_lib=libcurses)]
16
+else
17
+  [AC_CHECK_LIB(termcap, tgetent, bash_cv_termcap_lib=libtermcap,
18
+    [AC_CHECK_LIB(tinfo, tgetent, bash_cv_termcap_lib=libtinfo,
19
+        bash_cv_termcap_lib=gnutermcap
20
+  )])]
21
 fi
22
-)])])])
23
+)])
24
 if test "X$_bash_needmsg" = "Xyes"; then
25
 AC_MSG_CHECKING(which library has the termcap functions)
26
 fi
(-)tig/pkg-descr (-1 / +1 lines)
Lines 10-13 Link Here
10
Using it as a pager, it will display input from stdin
10
Using it as a pager, it will display input from stdin
11
and colorize it.
11
and colorize it.
12
12
13
WWW: http://jonas.nitro.dk/tig/
13
WWW: https://jonas.github.io/tig/

Return to bug 214695