View | Details | Raw Unified | Return to bug 219477
Collapse All | Expand All

(-)Makefile (-3 / +13 lines)
Lines 2-10 Link Here
2
# $FreeBSD$
2
# $FreeBSD$
3
3
4
PORTNAME=	lnav
4
PORTNAME=	lnav
5
PORTVERSION=	0.8.1
5
PORTVERSION=	0.8.2
6
DISTVERSIONPREFIX=	v
6
DISTVERSIONPREFIX=	v
7
PORTREVISION=	1
8
CATEGORIES=	sysutils
7
CATEGORIES=	sysutils
9
8
10
MAINTAINER=	tom@hur.st
9
MAINTAINER=	tom@hur.st
Lines 17-26 Link Here
17
USE_GITHUB=	yes
16
USE_GITHUB=	yes
18
GH_ACCOUNT=	tstack
17
GH_ACCOUNT=	tstack
19
18
20
USES=		autoreconf execinfo gmake ncurses python sqlite readline
19
USES=		autoreconf compiler:c++14-lang execinfo gmake ncurses sqlite readline
21
GNU_CONFIGURE=	yes
20
GNU_CONFIGURE=	yes
22
CONFIGURE_ARGS=	--disable-static
21
CONFIGURE_ARGS=	--disable-static
23
22
24
PLIST_FILES=	bin/lnav man/man1/lnav.1.gz
23
PLIST_FILES=	bin/lnav man/man1/lnav.1.gz
25
24
25
OPTIONS_DEFINE=	CURL
26
OPTIONS_DEFAULT=CURL
27
CURL_DESC=	Use libcurl for remote log file support
28
29
CURL_LIB_DEPENDS=	libcurl.so:ftp/curl
30
CURL_CONFIGURE_WITH=	libcurl
31
32
do-install:
33
	${INSTALL_PROGRAM} ${WRKSRC}/src/lnav ${STAGEDIR}${PREFIX}/bin
34
	${INSTALL_MAN} ${WRKSRC}/lnav.1 ${STAGEDIR}${MAN1PREFIX}/man/man1
35
26
.include <bsd.port.mk>
36
.include <bsd.port.mk>
(-)distinfo (-3 / +3 lines)
Lines 1-3 Link Here
1
TIMESTAMP = 1472227481
1
TIMESTAMP = 1492605871
2
SHA256 (tstack-lnav-v0.8.1_GH0.tar.gz) = 7f5f5f453f291db03036b26c1eb20933c8a9eb095108edeb3d6b65ab79187009
2
SHA256 (tstack-lnav-v0.8.2_GH0.tar.gz) = 50afb1dec659d6169ba7f6f16642e53cc680eade6f460d73a180f9e9470d6016
3
SIZE (tstack-lnav-v0.8.1_GH0.tar.gz) = 856480
3
SIZE (tstack-lnav-v0.8.2_GH0.tar.gz) = 930155
(-)files/patch-src_extension-functions.cc (+11 lines)
Line 0 Link Here
1
--- src/extension-functions.cc.orig	2017-04-19 14:17:53 UTC
2
+++ src/extension-functions.cc
3
@@ -269,7 +269,7 @@ static const int xtra_utf8_bits[] =  {
4
 ** masking the character with utf8_mask[N] must produce a non-zero
5
 ** result.  Otherwise, we have an (illegal) overlong encoding.
6
 */
7
-static const long utf_mask[] = {
8
+static const unsigned long utf_mask[] = {
9
   0x00000000,
10
   0xffffff80,
11
   0xfffff800,
(-)files/patch-src_logfile.cc (+16 lines)
Line 0 Link Here
1
--- src/logfile.cc.orig	2017-05-23 18:53:47 UTC
2
+++ src/logfile.cc
3
@@ -92,10 +92,10 @@ throw (error)
4
 
5
         loo.loo_fd.close_on_exec();
6
 
7
-        log_info("Creating logfile: fd=%d; size=%d; mtime=%d; filename=%s",
8
+        log_info("Creating logfile: fd=%d; size=%" PRId64 "; mtime=%" PRId64 "; filename=%s",
9
                  (int) loo.loo_fd,
10
-                 this->lf_stat.st_size,
11
-                 this->lf_stat.st_mtime,
12
+                 (long long) this->lf_stat.st_size,
13
+                 (long long) this->lf_stat.st_mtime,
14
                  filename.c_str());
15
 
16
         this->lf_valid_filename = true;

Return to bug 219477