29b715b81e
vairous fixes and some API addition.
20 lines
590 B
Makefile
20 lines
590 B
Makefile
# $NetBSD: options.mk,v 1.1 2014/12/06 07:41:16 obache Exp $
|
|
#
|
|
|
|
PKG_OPTIONS_VAR= PKG_OPTIONS.librest07
|
|
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.6.7
|
|
BUILDLINK_DEPMETHOD.gobject-introspection+= build
|
|
.include "../../devel/gobject-introspection/buildlink3.mk"
|
|
CONFIGURE_ARGS+= --enable-introspection=yes
|
|
.else
|
|
CONFIGURE_ARGS+= --enable-introspection=no
|
|
.endif
|