mirror of
https://git.FreeBSD.org/ports.git
synced 2024-11-20 00:21:35 +00:00
adb93122cb
For ports that already use the licenses framwork, merge the content of RESTRICTED/NO_CDROM/LEGAL* entries into LICENSEs. Approved by: rene Differential Revision: https://reviews.freebsd.org/D30010
65 lines
1.9 KiB
Makefile
65 lines
1.9 KiB
Makefile
# Created by: Aron Schlesinger <as@bsdgroup.de>
|
|
|
|
PORTNAME= groupoffice
|
|
DISTVERSIONPREFIX= com-
|
|
DISTVERSION= 6.4.231
|
|
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 PERSONAL
|
|
LICENSE_COMB= multi
|
|
LICENSE_NAME_PERSONAL= Personal use
|
|
LICENSE_TEXT_PERSONAL= Free for personal use only
|
|
LICENSE_PERMS_PERSONAL= auto-accept
|
|
|
|
USES= mysql shebangfix php:web python
|
|
|
|
NO_ARCH= yes
|
|
NO_BUILD= yes
|
|
USE_PHP= ctype curl dom fileinfo filter hash intl json mbstring \
|
|
mysqli openssl pcre pdo pdo_mysql phar posix session \
|
|
simplexml soap sysvshm sysvsem tokenizer xml xmlreader \
|
|
xmlwriter zip zlib
|
|
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/modules/community/serverclient/model/HttpClient.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>
|