1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-12-21 04:06:46 +00:00

phpcollab is project management and collaboration over the internet.

phpCollab is an open source internet-enabled system for use in
projects that require collaboration over the internet. Those
organizations, such as consulting firms, that rely on a division
between firm-side and client-side information will benefit most
from use of phpCollab.

WWW: http://www.php-collab.org/

PR:		ports/153679
Submitted by:	Marian Jamrich <jamrich.majo@gmail.com>
This commit is contained in:
Wen Heping 2011-01-06 00:21:03 +00:00
parent c74701c59d
commit 5d5fd5bc3a
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=267437
6 changed files with 1097 additions and 0 deletions

View File

@ -208,6 +208,7 @@
SUBDIR += p5-ZConf-Runner-GUI-GTK
SUBDIR += pal
SUBDIR += parcellite
SUBDIR += phpcollab
SUBDIR += phpgroupware
SUBDIR += phpicalendar
SUBDIR += phprojekt

View File

@ -0,0 +1,53 @@
# New ports collection makefile for: phpcollab
# Date created: 4 Januar 2011
# Whom: jamrich.majo@gmail.com
#
# $FreeBSD$
#
PORTNAME= phpcollab
PORTVERSION= 2.5
CATEGORIES= deskutils
MASTER_SITES= SF/phpcollab/final/${PORTVERSION}/
DISTNAME= phpcollab-${PORTVERSION}
MAINTAINER= jamrich.majo@gmail.com
COMMENT= PHPcollab is project management and collaboration over the internet
USE_ZIP= yes
USE_PHP+= mysql
USE_MYSQL= yes
NO_BUILD= yes
WWWOWN= www
WWWGRP= ${WWWOWN}
PKGMESSAGE= ${WRKDIR}/${PORTNAME}/pkg-message
SUB_FILES= pkg-message
PLIST_DIRSTRY= %%WWWDIR%%
OPTIONS= POSTGRE "Use PostgreSQL Database" off \
APACHE "Use Apache webserver" on \
LIGHTTPD "Use Lighttpd webserver" off
.include <bsd.port.options.mk>
.if defined(WITH_POSTGRE)
USE_PHP+= pgsql
RUN_DEPENDS+= ${LOCALBASE}/lib/php/${PHP_EXT_DIR}/pdo_pgsql.so:${PORTSDIR}/databases/php5-pdo_pgsql
.endif
.if defined(WITH_APACHE)
USE_APACHE= 22
.endif
.if defined(WITH_LIGHTTPD)
RUN_DEPENDS+= lighttpd:${PORTSDIR}/www/lighttpd
.endif
do-install:
@${MKDIR} ${WWWDIR}
@${CP} -r ${WRKDIR}/phpcollab/* ${WWWDIR}
@${CHOWN} -R ${WWWOWN}:${WWWGRP} ${WWWDIR}
post-install:
@${CAT} ${PKGMESSAGE}
.include <bsd.port.mk>

View File

@ -0,0 +1,2 @@
SHA256 (phpcollab-2.5.zip) = 8e436b58bf38ce65f654e0924bc28c85cb8201face9362677110f0be9b41515e
SIZE (phpcollab-2.5.zip) = 2351469

View File

@ -0,0 +1,15 @@
---------------------------------------------------------------------------------------------
Installation has successfully completed!
---------------------------------------------------------------------------------------------
phpcollab is now installed in documentoroot: %%WWWDIR%%.
1) Create user and MySQL database:
mysql -u root -p'your_root_password'
create database phpcollab;
create user 'phpcollab'@'localhost' identified by 'your_password';
grant all privileges on phpcollab.* to 'phpcollab'@'localhost' identified by 'your_password';
Now you can try http://your-server/phpcollab and setup your database.
---------------------------------------------------------------------------------------------

View File

@ -0,0 +1,7 @@
phpCollab is an open source internet-enabled system for use in
projects that require collaboration over the internet. Those
organizations, such as consulting firms, that rely on a division
between firm-side and client-side information will benefit most
from use of phpCollab.
WWW: http://www.php-collab.org/

File diff suppressed because it is too large Load Diff