blob: b2d43a07d0850e7ceee49da4a9261e1d22119eb8 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
|
# $NetBSD: options.mk,v 1.2 2008/04/03 09:44:21 abs 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
.include "../../databases/openldap-client/buildlink3.mk"
.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
|