ef00a1fa4b
Add LICENSE setting, near as I can tell "modified-bsd". Bump PKGREVISION.
46 lines
1.1 KiB
Makefile
46 lines
1.1 KiB
Makefile
# $NetBSD: options.mk,v 1.35 2017/07/24 16:33:22 he Exp $
|
|
|
|
.include "../../mk/bsd.prefs.mk"
|
|
|
|
PKG_OPTIONS_VAR= PKG_OPTIONS.openssh
|
|
PKG_SUPPORTED_OPTIONS= kerberos openssl pam
|
|
PKG_SUGGESTED_OPTIONS= openssl
|
|
|
|
.if ${OPSYS} == "NetBSD"
|
|
PKG_SUGGESTED_OPTIONS+= pam
|
|
.endif
|
|
|
|
.include "../../mk/bsd.options.mk"
|
|
|
|
.if !empty(PKG_OPTIONS:Mopenssl)
|
|
.include "../../security/openssl/buildlink3.mk"
|
|
CONFIGURE_ARGS+= --with-ssl-dir=${SSLBASE:Q}
|
|
.else
|
|
CONFIGURE_ARGS+= --without-openssl
|
|
.endif
|
|
|
|
.if !empty(PKG_OPTIONS:Mkerberos)
|
|
. include "../../mk/krb5.buildlink3.mk"
|
|
CONFIGURE_ARGS+= --with-kerberos5=${KRB5BASE}
|
|
. if ${KRB5_TYPE} == "mit-krb5"
|
|
CONFIGURE_ENV+= ac_cv_search_k_hasafs=no
|
|
. endif
|
|
.endif
|
|
|
|
#.if !empty(PKG_OPTIONS:Mhpn-patch)
|
|
#PATCHFILES= openssh-7.1p1-hpn-20150822.diff.bz2
|
|
#PATCH_SITES= ftp://ftp.NetBSD.org/pub/NetBSD/misc/openssh/
|
|
#PATCH_DIST_STRIP= -p1
|
|
#.endif
|
|
|
|
PLIST_VARS+= pam
|
|
|
|
.if !empty(PKG_OPTIONS:Mpam)
|
|
.include "../../mk/pam.buildlink3.mk"
|
|
CONFIGURE_ARGS+= --with-pam
|
|
MESSAGE_SRC+= ${.CURDIR}/MESSAGE.pam
|
|
MESSAGE_SUBST+= EGDIR=${EGDIR}
|
|
. if ${OPSYS} == "Linux"
|
|
PLIST.pam= yes
|
|
. endif
|
|
.endif
|