Fri Feb 3 09:57:19 2012 UTC ()
PR/45696 -- add 'ssl' option (not turned on by default).


(shattered)
diff -r1.5 -r1.6 pkgsrc/sysutils/bacula-clientonly/options.mk

cvs diff -r1.5 -r1.6 pkgsrc/sysutils/bacula-clientonly/options.mk (expand / switch to unified diff)

--- pkgsrc/sysutils/bacula-clientonly/options.mk 2011/08/17 20:23:11 1.5
+++ pkgsrc/sysutils/bacula-clientonly/options.mk 2012/02/03 09:57:19 1.6
@@ -1,18 +1,23 @@ @@ -1,18 +1,23 @@
1# $NetBSD: options.mk,v 1.5 2011/08/17 20:23:11 shattered Exp $ 1# $NetBSD: options.mk,v 1.6 2012/02/03 09:57:19 shattered Exp $
2 2
3PKG_OPTIONS_VAR= PKG_OPTIONS.bacula-clientonly 3PKG_OPTIONS_VAR= PKG_OPTIONS.bacula-clientonly
4PKG_SUPPORTED_OPTIONS= bacula-static 4PKG_SUPPORTED_OPTIONS= bacula-static ssl
5 5
6.include "../../mk/bsd.options.mk" 6.include "../../mk/bsd.options.mk"
7 7
8.if !empty(PKG_OPTIONS:Mbacula-static) 8.if !empty(PKG_OPTIONS:Mbacula-static)
9CONFIGURE_ARGS+= --enable-static-cons 9CONFIGURE_ARGS+= --enable-static-cons
10CONFIGURE_ARGS+= --enable-static-dir 10CONFIGURE_ARGS+= --enable-static-dir
11CONFIGURE_ARGS+= --enable-static-fd 11CONFIGURE_ARGS+= --enable-static-fd
12CONFIGURE_ARGS+= --enable-static-sd 12CONFIGURE_ARGS+= --enable-static-sd
13CONFIGURE_ARGS+= --enable-static-tools 13CONFIGURE_ARGS+= --enable-static-tools
14CONFIGURE_ARGS+= --disable-libtool 14CONFIGURE_ARGS+= --disable-libtool
15PLIST_SUBST+= STATIC= 15PLIST_SUBST+= STATIC=
16.else 16.else
17PLIST_SUBST+= STATIC="@comment " 17PLIST_SUBST+= STATIC="@comment "
18.endif 18.endif
 19
 20.if !empty(PKG_OPTIONS:Mssl)
 21. include "../../security/openssl/buildlink3.mk"
 22CONFIGURE_ARGS+= --with-openssl=${BUILDLINK_PREFIX.openssl}
 23.endif