freebsd-ports/deskutils/egroupware/Makefile
Jun Kuriyama 89bdf4a409 It seems Kris marked as broken based on previous version (1.0.00.005).
I cannot reproduce plist breakage with current version.

Let's go without $BROKEN and see what happens.
2004-12-10 04:22:50 +00:00

63 lines
1.3 KiB
Makefile

# New ports collection makefile for: egroupware
# Date created: 27 March 2001
# Whom: Jimmy Olgeni <olgeni@uli.it>
#
# $FreeBSD$
PORTNAME= eGroupWare
PORTVERSION= 1.0.00.006
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:
@${CP} -r ${WRKSRC} ${PREFIX}/www/data-dist/
${CHMOD} g+w ${DEST}/phpgwapi/images ${DEST}/fudforum
${CHGRP} ${WWWGRP} ${DEST}/phpgwapi/images ${DEST}/fudforum
# --- 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>