blob: c1eba0601ab1c9c89704967a4be6535ce73c1435 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
# $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
|