c3fa92ad5a
* Added the man of input-pad * Updated translations. * Fixed an error with gcc -Wformat -Werror=format-security * Enabled GTK3 by default. * Enalbed XTEST because glib2 uses XI2. * Enabled maintainer-mode in configure.ac. * Added data for Old English and Middle English. * Some unofficial IPA, labial-velars, laterals, nasal releases, More obsolete IPA, fixed output for wedge; added a precise, unofficial symbol for the alveolar flap.
37 lines
818 B
Makefile
37 lines
818 B
Makefile
# $NetBSD: options.mk,v 1.5 2013/12/07 11:32:31 obache Exp $
|
|
#
|
|
|
|
PKG_OPTIONS_VAR= PKG_OPTIONS.input-pad
|
|
PKG_SUPPORTED_OPTIONS= eekboard introspection xtest
|
|
PKG_SUGGESTED_OPTIONS= introspection xtest
|
|
|
|
.include "../../mk/bsd.options.mk"
|
|
|
|
PLIST_VARS+= eek introspection xtest
|
|
|
|
#
|
|
# Draw keyboard using libeek
|
|
#
|
|
.if !empty(PKG_OPTIONS:Meekboard)
|
|
.include "../../x11/eekboard/buildlink3.mk"
|
|
CONFIGURE_ARGS+= --enable-eek
|
|
PLIST.eek= yes
|
|
.endif
|
|
|
|
#
|
|
# Send keyboard event with xtest
|
|
#
|
|
.if !empty(PKG_OPTIONS:Mxtest)
|
|
.include "../../x11/libXtst/buildlink3.mk"
|
|
CONFIGURE_ARGS+= --enable-xtest=yes
|
|
PLIST.xtest= yes
|
|
.endif
|
|
|
|
#
|
|
# Introspection support
|
|
#
|
|
.if !empty(PKG_OPTIONS:Mintrospection)
|
|
BUILDLINK_DEPMETHOD.gobject-introspection= build
|
|
.include "../../devel/gobject-introspection/buildlink3.mk"
|
|
PLIST.introspection= yes
|
|
.endif
|