summaryrefslogtreecommitdiff
path: root/x11/kdebase3/options.mk
diff options
context:
space:
mode:
Diffstat (limited to 'x11/kdebase3/options.mk')
-rw-r--r--x11/kdebase3/options.mk34
1 files changed, 34 insertions, 0 deletions
diff --git a/x11/kdebase3/options.mk b/x11/kdebase3/options.mk
new file mode 100644
index 00000000000..d7a960da6d0
--- /dev/null
+++ b/x11/kdebase3/options.mk
@@ -0,0 +1,34 @@
+# $NetBSD: options.mk,v 1.1 2007/01/26 02:49:25 markd Exp $
+
+PKG_OPTIONS_VAR= PKG_OPTIONS.kdebase
+PKG_SUPPORTED_OPTIONS= sasl samba debug pam
+PKG_SUGGESTED_OPTIONS= sasl
+
+.include "../../mk/bsd.options.mk"
+
+.if !empty(PKG_OPTIONS:Msamba)
+.include "../../net/samba/buildlink3.mk"
+LIBS+= -L${BUILDLINK_PREFIX.samba}/lib/samba ${COMPILER_RPATH_FLAG}${BUILDLINK_PREFIX.samba}/lib/samba
+PLIST_SUBST+= HAVE_SMB=""
+.else
+PLIST_SUBST+= HAVE_SMB="@comment "
+.endif
+
+.if !empty(PKG_OPTIONS:Mdebug)
+CC+= -ggdb
+CXX+= -ggdb
+CONFIGURE_ARGS+= --enable-debug=full
+CONFIGURE_ENV+= INSTALL_STRIP_FLAG=
+INSTALL_UNSTRIPPED= yes
+.endif
+
+.if !empty(PKG_OPTIONS:Mpam)
+. include "../../mk/pam.buildlink3.mk"
+CONFIGURE_ARGS+= --with-pam
+.else
+CONFIGURE_ARGS+= --without-pam
+.endif
+
+.if !empty(PKG_OPTIONS:Msasl)
+.include "../../security/cyrus-sasl/buildlink3.mk"
+.endif