comms/pear-Horde_ActiveSync 2.16.1 -> 2.16.9 security/pear-Horde_Auth 2.1.4 -> 2.1.5 devel/pear-Horde_Core 2.11.1 -> 2.11.2 security/pear-Horde_Crypt 2.4.3 -> 2.5.0 devel/pear-Horde_Data 2.0.5 -> 2.1.0 devel/pear-Horde_Date 2.0.10 -> 2.0.11 www/pear-Horde_Dav 1.0.6 -> 1.0.7 databases/pear-Horde_Db 2.1.2 -> 2.1.3 security/pear-Horde_Group 2.0.3 -> 2.0.4 databases/pear-Horde_HashTable 1.1.2 -> 1.1.3 devel/pear-Horde_Icalendar 2.0.8 -> 2.0.9 graphics/pear-Horde_Image 2.0.8 -> 2.1.0 mail/pear-Horde_Imap_Client 2.20.0 -> 2.23.1 mail/pear-Horde_ListHeaders 1.1.2 -> 1.1.5 mail/pear-Horde_Mapi 1.0.2 -> 1.0.3 mail/pear-Horde_Mime 2.3.5 -> 2.4.2 security/pear-Horde_Secret 2.0.2 -> 2.0.3 mail/pear-Horde_Smtp 1.5.0 -> 1.5.2 net/pear-Horde_Socket_Client 1.1.1 -> 1.1.2 textproc/pear-Horde_Text_Diff 2.0.2 -> 2.1.0 net/pear-Horde_Url 2.2.2 -> 2.2.3 devel/horde-content 2.0.3 -> 2.0.4 www/horde-base 5.1.6 -> 5.1.7 mail/horde-imp 6.1.7 -> 6.1.8 mail/horde-ingo 3.1.4 -> 3.1.5 deskutils/horde-kronolith 4.1.5 -> 4.1.6 deskutils/horde-nag 4.1.4 -> 4.1.5 mail/horde-turba 4.1.4 -> 4.1.5 mail/horde-webmail 5.1.4 -> 5.1.5 deskutils/horde-groupware 5.1.4 -> 5.1.5
39 lines
818 B
Makefile
39 lines
818 B
Makefile
# $FreeBSD$
|
|
|
|
PORTNAME= Horde_Imap_Client
|
|
PORTVERSION= 2.23.1
|
|
CATEGORIES= mail www pear
|
|
PKGNAMEPREFIX= pear-
|
|
|
|
MAINTAINER= horde@FreeBSD.org
|
|
COMMENT= Horde IMAP abstraction interface
|
|
|
|
USE_PHP= hash
|
|
USE_HORDE_RUN= Horde_Exception \
|
|
Horde_Mail \
|
|
Horde_Mime \
|
|
Horde_Stream \
|
|
Horde_Util
|
|
|
|
OPTIONS_DEFAULT= IMAP MBSTRING SASL
|
|
OPTIONS_DEFINE= IMAP MBSTRING SASL
|
|
IMAP_DESC= Require PHP imap extension
|
|
MBSTRING_DESC= Require PHP mbstring extension
|
|
SASL_DESC= Support SASL Authentication
|
|
|
|
.include <bsd.port.pre.mk>
|
|
|
|
.if ${PORT_OPTIONS:MIMAP}
|
|
USE_PHP+= imap
|
|
.endif
|
|
|
|
.if ${PORT_OPTIONS:MMBSTRING}
|
|
USE_PHP+= mbstring
|
|
.endif
|
|
|
|
.if ${PORT_OPTIONS:MSASL}
|
|
RUN_DEPENDS+= ${PEARDIR}/Auth/SASL.php:${PORTSDIR}/security/pear-Auth_SASL
|
|
.endif
|
|
|
|
.include "${PORTSDIR}/devel/pear-channel-horde/bsd.horde.mk"
|
|
.include <bsd.port.post.mk>
|