pkgsrc-wip/couchdb-glib/options.mk
Blue Rats b8276dbfda Update couchdb-glib to 0.7.4. On the pkgsrc side: passes pkglint (mostly)
and verifypc (mostly). Use newer libuuid in devel/ instead of wip/
(scheduled for removal). Include openssl's buildlink3.mk in Makefile and
add p5-XML-LibXML to BUILD_DEPENDS. Remove libsoup24 and libuuid from
buildlink3.mk - nothing links against them and nothing includes them in
the headers. Add options framework to enable the user to build with
gobject-introspection support (requires that json-glib is build with
introspection support too - update coming). Fulfills and exceeds update
request.
2013-04-18 01:25:26 +00:00

16 lines
467 B
Makefile

# $NetBSD: options.mk,v 1.1 2013/04/18 01:25:26 othyro Exp $
PKG_OPTIONS_VAR= PKG_OPTIONS.couchdb-glib
PKG_SUPPORTED_OPTIONS= introspection
PKG_SUGGESTED_OPTIONS+= introspection
PLIST_VARS+= introspection
.include "../../mk/bsd.options.mk"
.if !empty(PKG_OPTIONS:Mintrospection)
CONFIGURE_ARGS+= --enable-introspection=yes
.include "../../devel/gobject-introspection/buildlink3.mk"
PLIST.introspection= yes
.else
CONFIGURE_ARGS+= --enable-introspection=no
.endif