relative_time.cc: In member function 'void relative_time::rollover()': relative_time.cc:308: error: call of overloaded 'abs(int64_t&)' is ambiguous /usr/include/stdlib.h:83: note: candidates are: int abs(int) /usr/include/c++/4.2/cstdlib:143: note: long int std::abs(long int) relative_time.cc:313: error: call of overloaded 'abs(int64_t&)' is ambiguous /usr/include/stdlib.h:83: note: candidates are: int abs(int) /usr/include/c++/4.2/cstdlib:143: note: long int std::abs(long int) Approved by: portmgr blanket
27 lines
541 B
Makefile
27 lines
541 B
Makefile
# Created by: Thomas Hurst <tom@hur.st>
|
|
# $FreeBSD$
|
|
|
|
PORTNAME= lnav
|
|
PORTVERSION= 0.8.1
|
|
DISTVERSIONPREFIX= v
|
|
CATEGORIES= sysutils
|
|
|
|
MAINTAINER= tom@hur.st
|
|
COMMENT= Terminal based log file navigator
|
|
|
|
LICENSE= BSD2CLAUSE
|
|
|
|
BUILD_DEPENDS= ${LOCALBASE}/lib/libpcre.a:devel/pcre \
|
|
${LOCALBASE}/lib/libsqlite3.a:databases/sqlite3
|
|
|
|
BROKEN_FreeBSD_9_i386= does not build
|
|
|
|
USE_GITHUB= yes
|
|
GH_ACCOUNT= tstack
|
|
|
|
GNU_CONFIGURE= yes
|
|
USES= autoreconf execinfo gmake ncurses python readline
|
|
|
|
PLIST_FILES= bin/lnav man/man1/lnav.1.gz
|
|
|
|
.include <bsd.port.mk>
|