mirror of
https://git.FreeBSD.org/ports.git
synced 2024-12-26 05:02:18 +00:00
1c0a1fd27d
It is a complete solution for every organization to create, collaborate, share and publish all its internal and external documents. You and your team can create and collaborate on: - Text documents - Spreadsheets (coming soon) - Presentations - Task Lists - E-mails - Calendars - Web Links - Contacts WWW: http://www.fengoffice.com/
47 lines
1.1 KiB
Makefile
47 lines
1.1 KiB
Makefile
# New ports collection makefile for: opengoo
|
|
# Date created: 2009-08-19
|
|
# Whom: Jose Alonso Cardenas Marquez <acm@FreeBSD.org>
|
|
#
|
|
# $FreeBSD$
|
|
#
|
|
|
|
PORTNAME= fengoffice
|
|
PORTVERSION= 1.7.5
|
|
CATEGORIES= deskutils
|
|
MASTER_SITES= SF/opengoo/${PORTNAME}/${PORTNAME}_${PORTVERSION}
|
|
DISTNAME= ${PORTNAME}_${PORTVERSION}
|
|
|
|
MAINTAINER= acm@FreeBSD.org
|
|
COMMENT= An open source web-based collaboration software
|
|
|
|
USE_ZIP= yes
|
|
NO_BUILD= yes
|
|
USE_PHP= mysql gd simplexml
|
|
DEFAULT_PHP_VER=5
|
|
IGNORE_WITH_PHP=4
|
|
WANT_PHP_WEB= yes
|
|
|
|
WRKSRC= ${WRKDIR}/${PORTNAME}
|
|
SUB_FILES= pkg-message
|
|
|
|
FENGOFFICE_DIR= www/${PORTNAME}
|
|
FENGOFFICE_WWWDIR= ${PREFIX}/${FENGOFFICE_DIR}
|
|
|
|
post-extract:
|
|
@${MKDIR} ${WRKDIR}/${PORTNAME}-docs
|
|
@${MV} ${WRKSRC}/readme.txt ${WRKDIR}/${PORTNAME}-docs/README
|
|
|
|
do-install:
|
|
@${MKDIR} ${FENGOFFICE_WWWDIR}
|
|
@cd ${WRKSRC} && ${COPYTREE_SHARE} . ${FENGOFFICE_WWWDIR}
|
|
@${CHOWN} -R ${WWWOWN}:${WWWGRP} ${FENGOFFICE_WWWDIR}
|
|
.if !defined (NOPORTDOCS)
|
|
@${MKDIR} ${DOCSDIR}
|
|
@${INSTALL_DATA} ${WRKDIR}/${PORTNAME}-docs/README ${DOCSDIR}
|
|
.endif
|
|
|
|
post-install:
|
|
@${CAT} ${PKGMESSAGE}
|
|
|
|
.include <bsd.port.mk>
|