pkgsrc/mail/alpine/options.mk
obache 8c98f4ac5f Exactly disable ldap support if ldap option is off (enabled by default in
configure script) to avoid hidden dependency.

Bump PKGREVISION.
2011-05-10 01:33:12 +00:00

43 lines
1.2 KiB
Makefile

# $NetBSD: options.mk,v 1.3 2011/05/10 01:33:12 obache Exp $
#
PKG_OPTIONS_VAR= PKG_OPTIONS.alpine
PKG_SUPPORTED_OPTIONS= fancythreads ldap maildir pinepwd alpinesearchheader
PKG_SUGGESTED_OPTIONS= pinepwd
.include "../../mk/bsd.options.mk"
.if !empty(PKG_OPTIONS:Mfancythreads)
PATCH_SITES+=http://staff.washington.edu/chappa/alpine/patches/${DISTNAME}/
PATCHFILES+= fancy.patch.gz
PATCH_DIST_STRIP= -p1
.endif
# not tested
#.if !empty(PKG_OPTIONS:Mkerberos)
#CONFIGURE_ARGS+= --with-krb5
#.include "../../mk/krb5.buildlink3.mk"
#.endif
.if !empty(PKG_OPTIONS:Mldap)
CONFIGURE_ARGS+= --with-ldap-dir=${BUILDLINK_PREFIX.openldap-client}
.include "../../databases/openldap-client/buildlink3.mk"
.else
CONFIGURE_ARGS+= --without-ldap
.endif
.if !empty(PKG_OPTIONS:Mmaildir)
PATCH_SITES+=http://staff.washington.edu/chappa/alpine/patches/${DISTNAME}/
PATCHFILES+= maildir.patch.gz
PATCH_DIST_STRIP= -p1
.endif
.if !empty(PKG_OPTIONS:Mpinepwd)
CONFIGURE_ARGS+= --with-passfile=.pinepwd
.endif
.if !empty(PKG_OPTIONS:Malpinesearchheader)
PATCH_SITES+=http://staff.washington.edu/chappa/alpine/patches/${DISTNAME}/
PATCHFILES+= searchheader.patch.gz
PATCH_DIST_STRIP= -p1
.endif