mirror of
https://git.FreeBSD.org/ports.git
synced 2024-12-08 02:15:08 +00:00
e71757d25d
Horde_ActiveSync 2.5.5 -> 2.5.6 Horde_Core 2.6.2 -> 2.6.4 Horde_Dav 1.0.1 -> 1.0.2 Horde_HashTable 1.0.1 -> 1.1.0 Horde_History 2.1.0 -> 2.1.4 Horde_Imap_Client 2.11.6 -> 2.12.0 Horde_SessionHandler 2.2.0 -> 2.2.1
40 lines
818 B
Makefile
40 lines
818 B
Makefile
# $FreeBSD$
|
|
|
|
PORTNAME= Horde_Imap_Client
|
|
PORTVERSION= 2.12.0
|
|
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>
|