28b5b11e65
- fix introspection option News in 4.8.0, 2020-09-12 ------------------------- * Translation updates News in 4.7.90, 2020-08-07 -------------------------- * Bump GTK requirement to 3.24 for gdk_window_move_to_rect() * Use gdk_window_move_to_rect() to more reliably position completion windows * erb.lang: initial support for ERB * javascript.lang, typescript.lang: various correctness and performance improvements. * Translation updates News in 4.6.1, 2020-06-26 ------------------------- * Fix various G-I annotations * Improve draw-spaces coloring in solarized-light * javascript.lang: Performance improvements * c.lang: Fixes for #include preprocessor * sql.lang: Language completeness improvements * latex.lang: additional keywords * sh.lang: improved parameter expansion * yara.lang: initial support for YARA * Translation updates
16 lines
481 B
Makefile
16 lines
481 B
Makefile
# $NetBSD: options.mk,v 1.2 2020/10/01 13:40:33 prlw1 Exp $
|
|
|
|
PKG_OPTIONS_VAR= PKG_OPTIONS.gtksourceview4
|
|
PKG_SUPPORTED_OPTIONS= introspection
|
|
PKG_SUGGESTED_OPTIONS= introspection
|
|
PLIST_VARS+= introspection
|
|
|
|
.include "../../mk/bsd.options.mk"
|
|
|
|
.if !empty(PKG_OPTIONS:Mintrospection)
|
|
PLIST.introspection= yes
|
|
BUILDLINK_API_DEPENDS.gobject-introspection+= gobject-introspection>=1.42.0
|
|
.include "../../devel/gobject-introspection/buildlink3.mk"
|
|
.else
|
|
MESON_ARGS+= -Dgir=false
|
|
.endif
|