1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-12-17 03:25:46 +00:00
freebsd-ports/mail/horde-mimp/Makefile
Beech Rintoul 8fb172ad46 - Update to 1.1.4
- MIMP requires at least Horde version 3.2 and IMP version H3 (4.2) to run.
- Although not required to upgrade either Horde or IMP, it is STRONGLY
  RECOMMENDED you do as any bugfixes to core functionality will occur in
  these applications.

- Major changes compared to the MIMP H3 (1.1.3) version are:
     * Added Czech translation.
     * Updated Brazilian Portuguese, French, Hungarian, and Spanish
       translations.

- The full list of changes (from version H3 (1.1.3)) can be viewed here:

- http://cvs.horde.org/diff.php/mimp/docs/CHANGES?rt=horde&r1=1.46.2.39&r2=1.46.2.42&ty=h
2011-07-28 19:53:20 +00:00

68 lines
1.6 KiB
Makefile

# Ports collection makefile for: mimp3
# Date created: Mon Feb 05, 2007
# Whom: Beech Rintoul <beech@FreeBSD.org>
#
# $FreeBSD$
#
PORTNAME= mimp
PORTVERSION= 1.1.4
PORTEPOCH= 1
CATEGORIES= mail www
MAINTAINER= horde@FreeBSD.org
COMMENT= Mobile webmail system
#-----------------------------------------------------------------------
# You may define these options:
#
# - WITHOUT_LDAP if you do not need OpenLDAP;
#
# - WITHOUT_SMIME disable S/MIME;
#
# - WITHOUT_SUPPORTED_DB if you run a database not in the ports tree;
#
# - NOCRYPT if crypto is restricted in your country;
#
# - WITH_VALID_CERT if you own a valid SSL certificate;
#-----------------------------------------------------------------------
RUN_DEPENDS+= ${PEARDIR}/Auth/SASL.php:${PORTSDIR}/security/pear-Auth_SASL \
${HORBAS}/imp/index.php:${PORTSDIR}/mail/horde-imp
USE_PHP= imap
. if !defined(WITHOUT_LDAP)
USE_PHP+= ldap
. endif
.if !defined(WITHOUT_SMIME)
USE_PHP+= openssl
.endif
.if !defined(NOCRYPT)
RUN_DEPENDS+= ${LOCALBASE}/bin/gpg:${PORTSDIR}/security/gnupg
.endif
USE_HORDE= base
USE_GETTEXT= yes
PORTDOCS= README CHANGES CREDITS INSTALL RELEASE_NOTES
pre-configure:
.if !defined(NOCRYPT)
@${REINPLACE_CMD} -e "s:%%GPG%%:${LOCALBASE}/bin/gpg:" \
${WRKSRC}/config/conf.xml
.else
@${REINPLACE_CMD} -e "s:%%GPG%%::" ${WRKSRC}/config/conf.xml
.endif
pre-install:
.if !defined(BATCH)
@if ! ${GREP} -q -e 'CCLIENT_SSLENABLED "yes"' ${PORTREV_H}; then \
${ECHO_MSG} "" ; \
${ECHO_MSG} "Please configure c-client with SSL support." ; \
${ECHO_MSG} "" ; \
${FALSE} ; \
fi
.endif
.include "${.CURDIR}/../../www/horde-base/bsd.horde.mk"
.include <bsd.port.mk>