blob: 95fd6bcf0cfd1016f00c53045bc57e3a3f188636 (
plain) (
blame)
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
58
59
60
61
62
63
64
|
# New ports collection makefile for: egroupware
# Date created: 27 March 2001
# Whom: Jimmy Olgeni <olgeni@uli.it>
#
# $FreeBSD$
PORTNAME= eGroupWare
PORTVERSION= 1.2
CATEGORIES= deskutils
MASTER_SITES= ${MASTER_SITE_SOURCEFORGE}
MASTER_SITE_SUBDIR= egroupware
DISTNAME= ${PORTNAME}-${PORTVERSION}-1
MAINTAINER= kuriyama@FreeBSD.org
COMMENT= A web based GroupWare system
USE_BZIP2= yes
USE_PHP= pcre session xml
NO_BUILD= yes
WRKSRC= ${WRKDIR}/egroupware
.if defined(WITH_POSTGRESQL)
USE_PHP+= pgsql
.endif
.if defined(WITH_MBSTRING)
USE_PHP+= mbstring
.endif
.if defined(WITH_IMAP)
USE_PHP+= imap
.endif
.if defined(WITH_GD)
USE_PHP+= gd
.endif
DEST= ${PREFIX}/www/data-dist/egroupware
.include <bsd.port.pre.mk>
post-extract:
@${FIND} ${WRKSRC} -name CVS -type d | ${XARGS} ${RM} -rf
do-install:
-${MKDIR} ${DEST}
@${CP} -r ${WRKSRC}/.htaccess ${WRKSRC}/* ${DEST}/
${CHMOD} g+w ${DEST}/phpgwapi/images
${CHGRP} ${WWWGRP} ${DEST}/phpgwapi/images
# --- postgresql.conf
# tcpip_socket = true
# ports = 5432
#
# --- pg_hba.conf
# local $dbname trust
# host $dbname all 127.0.0.1 255.255.255.255 md5
#
# --- php.ini
# memory_limit = 16M (or above)
#
# createuser $dbuser -P -A -d
# createdb -U $dbuser $dbname
#
# Open http://localhost/egroupware/setup/index.php
.include <bsd.port.post.mk>
|