blob: 92d528db296acef0ab0fbb7608ea19dda178ee00 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
# $NetBSD: options.mk,v 1.2 2013/08/31 22:20:24 adam Exp $
PKG_OPTIONS_VAR= PKG_OPTIONS.harfbuzz
PKG_SUPPORTED_OPTIONS+= icu
.include "../../mk/bsd.options.mk"
PLIST_VARS+= icu
.if !empty(PKG_OPTIONS:Micu)
.include "../../textproc/icu/buildlink3.mk"
CONFIGURE_ARGS+= --with-icu=yes
PLIST.icu= yes
.else
CONFIGURE_ARGS+= --with-icu=no
.endif
|