summaryrefslogtreecommitdiff
path: root/news/slrn/options.mk
diff options
context:
space:
mode:
Diffstat (limited to 'news/slrn/options.mk')
-rw-r--r--news/slrn/options.mk27
1 files changed, 27 insertions, 0 deletions
diff --git a/news/slrn/options.mk b/news/slrn/options.mk
new file mode 100644
index 00000000000..45635766247
--- /dev/null
+++ b/news/slrn/options.mk
@@ -0,0 +1,27 @@
+# $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