mirror of
https://git.FreeBSD.org/ports.git
synced 2025-01-01 05:45:45 +00:00
435ba88b04
Sponsored by: Netzkommune GmbH
63 lines
1.7 KiB
Makefile
63 lines
1.7 KiB
Makefile
# Created by: Aron Schlesinger <as@bsdgroup.de>
|
|
# $FreeBSD$
|
|
|
|
PORTNAME= groupoffice
|
|
DISTVERSIONPREFIX= com-
|
|
DISTVERSION= 6.4.43
|
|
CATEGORIES= www
|
|
MASTER_SITES= SF/group-office/${DISTVERSION:R}
|
|
DISTNAME= ${PORTNAME}-${DISTVERSION}-php-71
|
|
|
|
MAINTAINER= joneum@FreeBSD.org
|
|
COMMENT= Modular web application framework for office
|
|
|
|
LICENSE= AGPLv3
|
|
|
|
USES= mysql shebangfix php:web python
|
|
|
|
RESTRICTED= Free for personal use only
|
|
|
|
NO_ARCH= yes
|
|
NO_BUILD= yes
|
|
USE_PHP= mysqli session mbstring pcre xml
|
|
SHEBANG_FILES= groupoffice \
|
|
groupofficecli.php \
|
|
modules/postfixadmin/scripts/vacation.pl \
|
|
vendor/sabre/dav/bin/naturalselection \
|
|
vendor/sabre/dav/bin/googlecode_upload.py \
|
|
vendor/bin/../sabre/dav/bin/naturalselection \
|
|
vendor/swiftmailer/swiftmailer/lib/swiftmailer_generate_mimes_config.php
|
|
|
|
WWWDIR?= ${PREFIX}/www/${PORTNAME}${DISTVERSION:R:R}
|
|
|
|
SUB_FILES= pkg-message
|
|
|
|
OPTIONS_DEFINE= IMAP GD CALENDAR WBXML
|
|
OPTIONS_DEFAULT=IMAP GD CALENDAR
|
|
CALENDAR_DESC= Calendar holiday support
|
|
IMAP_DESC= IMAP support
|
|
GD_DESC= Gallery support (GD)
|
|
WBXML_DESC= Synchronization Support
|
|
|
|
CALENDAR_USE= PHP=calendar
|
|
GD_USE= PHP=gd
|
|
IMAP_USE= PHP=iconv imap
|
|
WBXML_LIB_DEPENDS= libwbxml2.so:textproc/wbxml2
|
|
|
|
post-patch:
|
|
@${REINPLACE_CMD} 's|%%LOCALBASE%%|${LOCALBASE}|g' \
|
|
${WRKSRC}/go/base/Config.php
|
|
@${REINPLACE_CMD} 's|/etc/groupoffice|${PREFIX}&|g' \
|
|
${WRKSRC}/go/base/Config.php \
|
|
${WRKSRC}/go/modules/community/serverclient/model/HttpClient.php \
|
|
${WRKSRC}/go/modules/community/serverclient/controller/Serverclient.php \
|
|
${WRKSRC}/install/configfile.php \
|
|
${WRKSRC}/modules/site/index.php
|
|
|
|
do-install:
|
|
@${MKDIR} ${STAGEDIR}${WWWDIR}
|
|
cd ${WRKSRC} && ${COPYTREE_SHARE} . ${STAGEDIR}${WWWDIR}
|
|
@${TOUCH} ${STAGEDIR}${WWWDIR}/config.php.sample
|
|
|
|
.include <bsd.port.mk>
|