Files
pkgsrc-ng/sysutils/libnotify07/options.mk
2013-09-26 17:14:40 +02:00

26 lines
732 B
Makefile

# $NetBSD: options.mk,v 1.2 2013/04/22 12:33:47 obache Exp $
PKG_OPTIONS_VAR= PKG_OPTIONS.libnotify07
PKG_SUPPORTED_OPTIONS= doc introspection
PKG_SUGGESTED_OPTIONS+= # blank
PLIST_VARS+= doc introspection
.include "../../mk/bsd.options.mk"
.if !empty(PKG_OPTIONS:Mdoc)
BUILD_DEPENDS+= xmlto-[0-9]*:../../textproc/xmlto
CONFIGURE_ARGS+= --enable-docbook-docs
PLIST.doc= yes
.else
CONFIGURE_ARGS+= --disable-docbook-docs
.endif
.if !empty(PKG_OPTIONS:Mintrospection)
BUILDLINK_API_DEPENDS.gobject-introspection+= gobject-introspection>=0.9.12
.include "../../devel/gobject-introspection/buildlink3.mk"
CONFIGURE_ARGS+= --enable-introspection=yes
PLIST.introspection= yes
.else
CONFIGURE_ARGS+= --enable-introspection=no
.endif