From the Changelog : Support for spell checking with Enchant, many bugfixes and improvements Be careful, spellchecking-related options have changed a little in the configuration file.
34 lines
817 B
Makefile
34 lines
817 B
Makefile
# $NetBSD: options.mk,v 1.3 2009/11/14 11:37:23 zul_ Exp $
|
|
|
|
PKG_OPTIONS_VAR= PKG_OPTIONS.mcabber
|
|
PKG_SUPPORTED_OPTIONS= ssl gpgme otr aspell enchant
|
|
PKG_SUGGESTED_OPTIONS= gpgme ssl
|
|
|
|
.include "../../mk/bsd.options.mk"
|
|
|
|
.if !empty(PKG_OPTIONS:Mgpgme)
|
|
.include "../../security/gpgme/buildlink3.mk"
|
|
.else
|
|
CONFIGURE_ARGS+= --disable-gpgme
|
|
.endif
|
|
|
|
.if !empty(PKG_OPTIONS:Motr)
|
|
.include "../../chat/libotr/buildlink3.mk"
|
|
CONFIGURE_ARGS+= --enable-otr
|
|
.endif
|
|
|
|
.if !empty(PKG_OPTIONS:Maspell)
|
|
.include "../../textproc/aspell/buildlink3.mk"
|
|
CONFIGURE_ARGS+= --enable-aspell
|
|
.endif
|
|
|
|
.if !empty(PKG_OPTIONS:Menchant)
|
|
.include "../../textproc/enchant/buildlink3.mk"
|
|
CONFIGURE_ARGS+= --enable-enchant
|
|
.endif
|
|
|
|
.if !empty(PKG_OPTIONS:Mssl)
|
|
.include "../../security/openssl/buildlink3.mk"
|
|
.else
|
|
CONFIGURE_ARGS+= --disable-ssl
|
|
.endif
|