gloox is a C++ library creating an easy to use framework for XMPP/Jabber applications, modules, and servers. Builds from the 1.0 (Beta) branch of SVN.
31 lines
780 B
Makefile
31 lines
780 B
Makefile
# $NetBSD: options.mk,v 1.1.1.1 2009/09/06 06:52:51 schnoebe Exp $
|
|
|
|
PKG_OPTIONS_VAR= PKG_OPTIONS.gloox
|
|
PKG_OPTIONS_REQUIRED_GROUPS= tls
|
|
# TLS selections
|
|
PKG_OPTIONS_GROUP.tls= gnutls openssl
|
|
# debugging
|
|
PKG_SUPPORTED_OPTIONS+= debug
|
|
PKG_SUGGESTED_OPTIONS= gnutls
|
|
|
|
.include "../../mk/bsd.options.mk"
|
|
|
|
PLIST_VARS+= gnutls openssl
|
|
|
|
.if !empty(PKG_OPTIONS:Mgnutls)
|
|
PLIST.gnutls= yes
|
|
CONFIGURE_ARGS+= --with-gnutls=${BUILDLINK_PREFIX.gnutls}
|
|
. include "../../security/gnutls/buildlink3.mk"
|
|
.else
|
|
CONFIGURE_ARGS+= --without-gnutls
|
|
.endif
|
|
|
|
.if !empty(PKG_OPTIONS:Mopenssl)
|
|
PLIST.openssl= yes
|
|
CONFIGURE_ARGS+= --with-openssl=${BUILDLINK_PREFIX.openssl}
|
|
. include "../../security/openssl/buildlink3.mk"
|
|
.endif
|
|
|
|
.if !empty(PKG_OPTIONS:Mdebug)
|
|
CONFIGURE_ARGS+= --enable-debug
|
|
.endif
|