1
0
mirror of https://git.FreeBSD.org/ports.git synced 2025-01-08 06:48:28 +00:00
freebsd-ports/www/suitecrm/Makefile
Muhammad Moinur Rahman 6373a1df1f
*/*: Unbreak with php84
These ports were initially marked to IGNORE with php84 as their runtime
dependencies were BROKEN. As all of the runtime dependencies has been
fixed for ther requirements unmark these ports. Although these ports
build perfectly with php84 but there might still be runtime issues with
these ports with php84. The maintainers are requested to do some runtime
checks for these ports.

Approved by:	portmgr (blanket)
2024-08-03 20:59:37 +02:00

40 lines
1.1 KiB
Makefile

PORTNAME= suitecrm
PORTVERSION= 7.14.3
CATEGORIES= www
MASTER_SITES= https://suitecrm.com/download/141/suite714/563700/
MAINTAINER= wen@FreeBSD.org
COMMENT= Open source Customer Relationship Management (CRM) software solution
WWW= https://suitercrm.com/
LICENSE= AGPLv3
LICENSE_FILE= ${WRKSRC}/LICENSE.txt
USES= php
USE_PHP= curl ctype dom filter gd imap mysqli pdo posix \
session tokenizer xml mbstring zip zlib
NO_BUILD= yes
WRKSRC= ${WRKDIR}/SuiteCRM-${PORTVERSION}
PLIST= ${WRKDIR}/plist
CRMDIR= www/suitecrm
SUB_FILES+= pkg-message
pre-install:
@${ECHO_CMD} "@owner ${WWWOWN}" >> ${PLIST}
@${ECHO_CMD} "@group ${WWWGRP}" >> ${PLIST}
@${ECHO_CMD} "@mode 755" >> ${PLIST}
@${FIND} -s -d ${WRKSRC} -type f | ${SED} "s?${WRKSRC}?${CRMDIR}?g" >>${PLIST}
@${FIND} -s -d ${WRKSRC} -type d | ${SED} "s?${WRKSRC}?@dir ${CRMDIR}?g" >> ${PLIST}
@${ECHO_CMD} "@mode" >> ${PLIST}
@${ECHO_CMD} "@group" >> ${PLIST}
@${ECHO_CMD} "@owner" >> ${PLIST}
do-install:
@${MKDIR} ${STAGEDIR}/${WWWDIR}
@cd ${WRKSRC} && ${COPYTREE_SHARE} . ${STAGEDIR}/${WWWDIR}/
.include <bsd.port.mk>