mirror of
https://git.freebsd.org/ports.git
synced 2025-06-26 15:10:35 -04:00
archivers/pear-Horde_Compress 1.0.7 -> 1.0.8 databases/pear-Horde_Db 1.2.1 -> 1.2.2 deskutils/horde4-groupware 4.0.8 -> 4.0.9 deskutils/horde4-kronolith 3.0.17 -> 3.0.18 deskutils/horde4-mnemo 3.0.6 -> 3.0.7 deskutils/horde4-nag 3.0.8 -> 3.0.9 devel/pear-Horde_Alarm 1.0.7 -> 1.0.8 devel/pear-Horde_Cache 1.0.5 -> 1.0.6 devel/pear-Horde_Core 1.9.2 -> 1.9.3 devel/pear-Horde_Date 1.0.11 -> 1.0.12 devel/pear-Horde_Nls 1.1.6 -> 1.1.7 mail/horde4-imp 5.0.23 -> 5.0.24 mail/horde4-ingo 2.0.9 -> 2.0.10 mail/horde4-turba 3.0.15 -> 3.0.16 mail/horde4-webmail 4.0.8 -> 4.0.9 mail/pear-Horde_Imap_Client 1.5.5 -> 1.5.11 mail/pear-Horde_Mime 1.6.1 -> 1.6.2 mail/pear-Horde_Mime_Viewer 1.0.8 -> 1.0.9 security/pear-Horde_Auth 1.4.9 -> 1.4.10 security/pear-Horde_Secret 1.0.2 -> 1.0.4 textproc/pear-Horde_Text_Filter 1.1.5 -> 1.1.6 www/horde4-ansel 2.0.1 -> 2.0.2 www/horde4-base 4.0.15 -> 4.0.16 www/horde4-wicked 1.0.1 -> 1.0.2 www/pear-Horde_Browser 1.0.8 -> 1.0.9 www/pear-Horde_Service_Weather 1.1.2 -> 1.1.3 www/pear-Horde_SessionHandler 1.0.5 -> 1.0.6 Feature safe: yes
37 lines
859 B
Makefile
37 lines
859 B
Makefile
# Ports collection makefile for: pear-Horde_Imap_Client
|
|
# Date created: 6 July 2011
|
|
# Whom: Martin Matuska <mm@FreeBSD.org>
|
|
#
|
|
# $FreeBSD$
|
|
|
|
PORTNAME= Horde_Imap_Client
|
|
PORTVERSION= 1.5.11
|
|
CATEGORIES= mail www pear
|
|
PKGNAMEPREFIX= pear-
|
|
|
|
MAINTAINER= horde@FreeBSD.org
|
|
COMMENT= Horde IMAP abstraction interface
|
|
|
|
OPTIONS= IMAP "Require PHP imap extension" On \
|
|
MBSTRING "Require PHP mbstring extension" On \
|
|
SASL "Support SASL Authentication" On
|
|
|
|
USE_PHP= hash
|
|
USE_HORDE_RUN= Horde_Exception Horde_Mime Horde_Util
|
|
|
|
.include <bsd.port.pre.mk>
|
|
|
|
.if !defined(WITHOUT_IMAP)
|
|
USE_PHP+= imap
|
|
.endif
|
|
|
|
.if !defined(WITHOUT_MBSTRING)
|
|
USE_PHP+= mbstring
|
|
.endif
|
|
|
|
.if !defined(WITHOUT_SASL)
|
|
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>
|