d6a16d0ddb
Major changes in 1.14.1 are: * prefs dialog: don't crash on toggling "Show hidden and backup files" * GTK+-3 theming: add a CSS file for caja, and initialize it at startup * GTK+3: add style class caja-desktop-window at top level * translation update
19 lines
541 B
Makefile
19 lines
541 B
Makefile
# $NetBSD: options.mk,v 1.2 2016/06/13 22:31:25 youri Exp $
|
|
|
|
PKG_OPTIONS_VAR= PKG_OPTIONS.caja
|
|
PKG_SUPPORTED_OPTIONS= introspection
|
|
PKG_SUGGESTED_OPTIONS=
|
|
|
|
.include "../../mk/bsd.options.mk"
|
|
|
|
PLIST_VARS+= introspection
|
|
|
|
.if !empty(PKG_OPTIONS:Mintrospection)
|
|
BUILDLINK_DEPMETHOD.gobject-introspection+= build
|
|
.include "../../devel/gobject-introspection/buildlink3.mk"
|
|
.include "../../graphics/cairo-gobject/buildlink3.mk"
|
|
CONFIGURE_ARGS+= --enable-introspection
|
|
PLIST.introspection= yes
|
|
.else
|
|
CONFIGURE_ARGS+= --disable-introspection
|
|
.endif
|