blob: 817211788fa0f858cba3e560737d61b03f1ea395 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
|
# Ports collection makefile for: vacation3
# Date created: Thu Mar 08, 2007
# Whom: Beech Rintoul <beech@FreeBSD.org>
#
# $FreeBSD$
#
PORTNAME= vacation
PORTVERSION= 3.2.1
PORTREVISION= 3
CATEGORIES= mail www
DIST_SUBDIR= horde
MAINTAINER= horde@FreeBSD.org
COMMENT= E-mail auto-responder
#-----------------------------------------------------------------------
# You may define these options:
#
# - WITHOUT_LDAP if you do not need OpenLDAP;
#
# - WITHOUT_FTP disable FTP support;
#-----------------------------------------------------------------------
RUN_DEPENDS+= ${PEARDIR}/Auth/SASL.php:${PORTSDIR}/security/pear-Auth_SASL
. if !defined(WITHOUT_LDAP)
USE_PHP+= ldap
. endif
.if !defined(WITHOUT_FTP)
USE_PHP+= ftp
.endif
USE_HORDE= base pkg-message
USES= gettext
PORTDOCS= CHANGES CREDITS INSTALL RELEASE_NOTES TODO
.include "${.CURDIR}/../../www/horde3-base/bsd.horde.mk"
.include <bsd.port.mk>
|