pkgsrc/news/slrn/options.mk
2011-03-23 21:44:24 +00:00

27 lines
577 B
Makefile

# $NetBSD: options.mk,v 1.1 2011/03/23 21:44:24 shattered Exp $
PKG_OPTIONS_VAR= PKG_OPTIONS.slrn
PKG_SUPPORTED_OPTIONS= ssl uulib
PKG_SUGGESTED_OPTIONS= ssl
.include "../../mk/bsd.options.mk"
###
### SSL support
###
.if !empty(PKG_OPTIONS:Mssl)
. include "../../security/openssl/buildlink3.mk"
CONFIGURE_ARGS+= --with-ssl=${SSLBASE:Q}
.else
CONFIGURE_ARGS+= --without-ssl
.endif
###
### uulib support
###
.if !empty(PKG_OPTIONS:Muulib)
. include "../../converters/uulib/buildlink3.mk"
CONFIGURE_ARGS+= --with-uudeview
.else
CONFIGURE_ARGS+= --without-uudeview
.endif