Wed Jun 17 08:35:45 2015 UTC ()
Fix DEPENDS match when enabling the ldap option.


(jperkin)
diff -r1.9 -r1.10 pkgsrc/mail/roundcube/options.mk

cvs diff -r1.9 -r1.10 pkgsrc/mail/roundcube/options.mk (expand / switch to unified diff)

--- pkgsrc/mail/roundcube/options.mk 2015/06/06 05:33:39 1.9
+++ pkgsrc/mail/roundcube/options.mk 2015/06/17 08:35:45 1.10
@@ -1,14 +1,14 @@ @@ -1,14 +1,14 @@
1# $NetBSD: options.mk,v 1.9 2015/06/06 05:33:39 manu Exp $ 1# $NetBSD: options.mk,v 1.10 2015/06/17 08:35:45 jperkin Exp $
2 2
3PKG_OPTIONS_VAR= PKG_OPTIONS.roundcube 3PKG_OPTIONS_VAR= PKG_OPTIONS.roundcube
4 4
5PKG_OPTIONS_REQUIRED_GROUPS= db converters 5PKG_OPTIONS_REQUIRED_GROUPS= db converters
6PKG_OPTIONS_GROUP.db= mysql pgsql sqlite 6PKG_OPTIONS_GROUP.db= mysql pgsql sqlite
7PKG_OPTIONS_GROUP.converters= iconv multibyte 7PKG_OPTIONS_GROUP.converters= iconv multibyte
8 8
9PKG_SUPPORTED_OPTIONS= ldap sockets gd 9PKG_SUPPORTED_OPTIONS= ldap sockets gd
10PKG_SUGGESTED_OPTIONS= mysql iconv sockets gd 10PKG_SUGGESTED_OPTIONS= mysql iconv sockets gd
11 11
12.include "../../mk/bsd.options.mk" 12.include "../../mk/bsd.options.mk"
13 13
14### 14###
@@ -41,27 +41,27 @@ DEPENDS+= ${PHP_PKG_PREFIX}-iconv>=4.3.1 @@ -41,27 +41,27 @@ DEPENDS+= ${PHP_PKG_PREFIX}-iconv>=4.3.1
41 41
42### 42###
43### Use mbstring. 43### Use mbstring.
44### 44###
45.if !empty(PKG_OPTIONS:Mmultibyte) 45.if !empty(PKG_OPTIONS:Mmultibyte)
46DEPENDS+= ${PHP_PKG_PREFIX}-mbstring>=4.3.1:../../converters/php-mbstring 46DEPENDS+= ${PHP_PKG_PREFIX}-mbstring>=4.3.1:../../converters/php-mbstring
47.endif 47.endif
48 48
49### 49###
50### Use OpenLDAP for storing data. 50### Use OpenLDAP for storing data.
51### 51###
52.if !empty(PKG_OPTIONS:Mldap) 52.if !empty(PKG_OPTIONS:Mldap)
53DEPENDS+= ${PHP_PKG_PREFIX}-ldap>=4.3.1:../../databases/php-ldap 53DEPENDS+= ${PHP_PKG_PREFIX}-ldap>=4.3.1:../../databases/php-ldap
54DEPENDS+= pear-Net_LDAP3:../../net/pear-Net_LDAP3 54DEPENDS+= pear-Net_LDAP3-[0-9]*:../../net/pear-Net_LDAP3
55.endif 55.endif
56 56
57### 57###
58### Use sockets, required by managesieve and password plugins. 58### Use sockets, required by managesieve and password plugins.
59### 59###
60.if !empty(PKG_OPTIONS:Msockets) 60.if !empty(PKG_OPTIONS:Msockets)
61DEPENDS+= ${PHP_PKG_PREFIX}-sockets>=4.3.1:../../net/php-sockets 61DEPENDS+= ${PHP_PKG_PREFIX}-sockets>=4.3.1:../../net/php-sockets
62.endif 62.endif
63 63
64### 64###
65### Add support for gd 65### Add support for gd
66### 66###
67.if !empty(PKG_OPTIONS:Mgd) 67.if !empty(PKG_OPTIONS:Mgd)