57 lines
1.3 KiB
Makefile
57 lines
1.3 KiB
Makefile
# $NetBSD: options.mk,v 1.4 2012/09/11 00:30:13 manu Exp $
|
|
#
|
|
PKG_OPTIONS_VAR= PKG_OPTIONS.netatalk
|
|
PKG_SUPPORTED_OPTIONS= cups debug kerberos pam slp ldap
|
|
|
|
.include "../../mk/bsd.options.mk"
|
|
|
|
.if !empty(PKG_OPTIONS:Mcups)
|
|
.include "../../print/cups/buildlink3.mk"
|
|
CONFIGURE_ARGS+= --enable-cups
|
|
.else
|
|
CONFIGURE_ARGS+= --disable-cups
|
|
.endif
|
|
|
|
PLIST_VARS+= debug
|
|
.if !empty(PKG_OPTIONS:Mdebug)
|
|
# Debugging
|
|
CONFIGURE_ARGS+= --enable-debug1
|
|
CONFIGURE_ARGS+= --enable-debug
|
|
CONFIGURE_ARGS+= --enable-debugging
|
|
CFLAGS+= -g3
|
|
INSTALL_UNSTRIPPED= yes
|
|
.endif
|
|
|
|
PLIST_VARS+= gssapi
|
|
.if !empty(PKG_OPTIONS:Mkerberos)
|
|
.include "../../mk/krb5.buildlink3.mk"
|
|
CONFIGURE_ARGS+= --with-gssapi --enable-krbV-uam
|
|
CONFIGURE_ENV+= GSSAPI_LIBS="-lkrb5 -lroken -lasn1 -lcrypto -lcom_err"
|
|
PLIST.gssapi= yes
|
|
.else
|
|
CONFIGURE_ARGS+= --without-gssapi
|
|
.endif
|
|
|
|
PLIST_VARS+= pam
|
|
.if !empty(PKG_OPTIONS:Mpam)
|
|
.include "../../mk/pam.buildlink3.mk"
|
|
CONFIGURE_ARGS+= --with-pam
|
|
PLIST.pam= yes
|
|
MESSAGE_SRC+= MESSAGE MESSAGE.pam
|
|
.else
|
|
CONFIGURE_ARGS+= --without-pam
|
|
.endif
|
|
|
|
.if !empty(PKG_OPTIONS:Mslp)
|
|
.include "../../net/openslp/buildlink3.mk"
|
|
CONFIGURE_ARGS+= --enable-srvloc
|
|
.else
|
|
CONFIGURE_ARGS+= --disable-srvloc
|
|
.endif
|
|
|
|
.if !empty(PKG_OPTIONS:Mldap)
|
|
.include "../../databases/openldap-client/buildlink3.mk"
|
|
CONFIGURE_ARGS+= --with-ldap=yes
|
|
.else
|
|
CONFIGURE_ARGS+= --with-ldap=no
|
|
.endif
|