b91213616b
Noteworthy changes in version 1.0.2 (2014-09-09) ------------------------------------------------ * Migrate to libgee 0.8 from 0.6 (Issue#29). * rules: new ACT09 rule contributed by Naoki Mizuno (Issue#28). * Consume key event for "commit" command (Issue#26). Use "commit-unhandled" for the previous behavior. * Comsume C-j in abbrev mode (Issue#24).
20 lines
588 B
Makefile
20 lines
588 B
Makefile
# $NetBSD: options.mk,v 1.1 2014/09/10 09:34:45 obache Exp $
|
|
#
|
|
|
|
PKG_OPTIONS_VAR= PKG_OPTIONS.libskk
|
|
PKG_SUPPORTED_OPTIONS= introspection
|
|
PKG_SUGGESTED_OPTIONS= introspection
|
|
|
|
.include "../../mk/bsd.options.mk"
|
|
|
|
PLIST_VARS+= introspection
|
|
|
|
.if !empty(PKG_OPTIONS:Mintrospection)
|
|
PLIST.introspection= yes
|
|
BUILDLINK_API_DEPENDS.gobject-introspection+= gobject-introspection>=0.9.0
|
|
BUILDLINK_DEPMETHOD.gobject-introspection+= build
|
|
.include "../../devel/gobject-introspection/buildlink3.mk"
|
|
CONFIGURE_ARGS+= --enable-introspection=yes
|
|
.else
|
|
CONFIGURE_ARGS+= --enable-introspection=no
|
|
.endif
|