0ccbe1982c
GoAccess is an open source real-time web log analyzer and interactive viewer that runs in a terminal in *nix systems. It provides fast and valuable HTTP statistics for system administrators that require a visual server report on the fly.
19 lines
535 B
Makefile
19 lines
535 B
Makefile
# $NetBSD: options.mk,v 1.1 2014/01/27 21:40:38 wiedi Exp $
|
|
|
|
PKG_OPTIONS_VAR= PKG_OPTIONS.goaccess
|
|
PKG_SUPPORTED_OPTIONS= geoip wide-curses
|
|
PKG_SUGGESTED_OPTIONS= wide-curses
|
|
|
|
.include "../../mk/bsd.options.mk"
|
|
|
|
.if !empty(PKG_OPTIONS:Mgeoip)
|
|
. include "../../net/GeoIP/buildlink3.mk"
|
|
CONFIGURE_ARGS+= --enable-geoip
|
|
.endif # option geoip
|
|
|
|
.if !empty(PKG_OPTIONS:Mwide-curses)
|
|
. include "../../devel/ncursesw/buildlink3.mk"
|
|
CONFIGURE_ARGS+= --enable-utf8
|
|
.else
|
|
. include "../../devel/ncurses/buildlink3.mk"
|
|
.endif # option wide-curses
|