blob: 6cd79930df176a48f1dfe0869580c65b760311f3 (
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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
|
# New ports collection makefile for: php4-horde
# Date created: 11 September 2003
# Whom: Thierry Thomas <thierry@pompo.net>
#
# $FreeBSD$
#
CATEGORIES= lang www
PKGNAMESUFFIX= -horde
MAINTAINER= thierry@pompo.net
COMMENT= A default PHP configured for the Horde framework
#-----------------------------------------------------------------------
# You may define these options:
#
# - WITHOUT_MYSQL: this port is built with MySQL by default
# but you might choose any other database
# supported by PHP (e.g. WITH_POSTGRESQL).
#
# - WITHOUT_IMP: this port is intended to build a default
# package for IMP; use this knob if for
# example you only need Chora.
#
# - WITHOUT_LDAP: if you do not need OpenLDAP.
#
# - WITHOUT_MCAL: if you don't plan to install Kronolith.
#
# - WITHOUT_FTP: if you don't plan to install Gollem.
#
#-----------------------------------------------------------------------
WITH_DOMXML= yes
WITH_GETTEXT= yes
WITH_SESSION= yes
.if !defined(NOCRYPT)
WITH_MCRYPT= yes
.endif
.if !defined(WITHOUT_MYSQL)
WITH_MYSQL= yes
.endif
.if !defined(WITHOUT_LDAP)
WITH_OPENLDAP= yes
.endif
.if !defined(WITHOUT_IMP)
WITH_IMAP= yes
.endif
.if !defined(WITHOUT_MCAL)
WITH_MCAL= yes
.endif
.if !defined(WITHOUT_FTP)
WITH_FTP= yes
.endif
MASTERDIR= ${.CURDIR}/../../lang/php4
.include "${MASTERDIR}/Makefile"
|