f5070ffee3
mpop is a small, fast, and portable POP3 client. Its features include header-based email filtering (filter junk mail before downloading it), delivery to mbox files, maildir folders, or a mail delivery agent, a very fast POP3 implementation, many authentication methods, and good support for TLS/SSL.
25 lines
663 B
Makefile
25 lines
663 B
Makefile
# $NetBSD: options.mk,v 1.1.1.1 2005/11/13 03:09:20 minskim Exp $
|
|
#
|
|
|
|
PKG_OPTIONS_VAR= PKG_OPTIONS.mpop
|
|
PKG_SUPPORTED_OPTIONS= gsasl
|
|
PKG_OPTIONS_OPTIONAL_GROUPS= ssl
|
|
PKG_OPTIONS_GROUP.ssl= gnutls ssl
|
|
PKG_SUGGESTED_OPTIONS= ssl
|
|
|
|
.include "../../mk/bsd.options.mk"
|
|
|
|
.if !empty(PKG_OPTIONS:Mgnutls)
|
|
CONFIGURE_ARGS+= --with-ssl=gnutls
|
|
. include "../../security/gnutls/buildlink3.mk"
|
|
.elif !empty(PKG_OPTIONS:Mssl)
|
|
CONFIGURE_ARGS+= --with-ssl=openssl
|
|
. include "../../security/openssl/buildlink3.mk"
|
|
.else
|
|
CONFIGURE_ARGS+= --disable-ssl
|
|
.endif
|
|
|
|
.if !empty(PKG_OPTIONS:Mgsasl)
|
|
CONFIGURE_ARGS+= --enable-gsasl
|
|
. include "../../security/gsasl/buildlink3.mk"
|
|
.endif
|