33 lines
747 B
Makefile
33 lines
747 B
Makefile
# $NetBSD: options.mk,v 1.6 2012/05/20 13:59:30 obache Exp $
|
|
|
|
PKG_OPTIONS_VAR= PKG_OPTIONS.mlterm
|
|
PKG_SUPPORTED_OPTIONS= libind m17nlib uim xft2
|
|
PKG_SUGGESTED_OPTIONS=
|
|
|
|
.include "../../mk/bsd.options.mk"
|
|
|
|
PLIST_VARS+= ind m17nlib uim xft2
|
|
|
|
.if !empty(PKG_OPTIONS:Mlibind)
|
|
CONFIGURE_ARGS+= --enable-ind
|
|
PLIST.ind= yes
|
|
LICENSE+= AND gnu-lgpl-v2
|
|
.endif
|
|
|
|
.if !empty(PKG_OPTIONS:Mm17nlib)
|
|
.include "../../devel/m17n-lib/buildlink3.mk"
|
|
CONFIGURE_ARGS+= --enable-m17nlib
|
|
PLIST.m17nlib= yes
|
|
.endif
|
|
|
|
.if !empty(PKG_OPTIONS:Muim)
|
|
.include "../../inputmethod/uim/buildlink3.mk"
|
|
CONFIGURE_ARGS+= --enable-uim
|
|
PLIST.uim= yes
|
|
LICENSE+= AND gnu-lgpl-v2
|
|
.endif
|
|
|
|
.if !empty(PKG_OPTIONS:Mxft2)
|
|
CONFIGURE_ARGS+= --with-type-engines=xft
|
|
PLIST.xft2= yes
|
|
.endif
|