mirror of
https://git.freebsd.org/ports.git
synced 2025-05-07 19:30:46 -04:00
- Remove USE_PHP=hash which is available in default php installation of all versions of php * security/pear-Horde_Crypt_Blowfish: Remove OPTION MHASH - Remove USE_PHP=json which is available in default php installation of all versions of php * devel/pear-PHPTAL: Remove OPTION JSON * www/ilias: Remove OPTION SCORM2004 - Remove USE_PHP=mssql which is no longer available in php from php80 and later and has been replaced with sqlsrv module which is Windows only * www/codeigniter: Remove OPTION MSSQL * www/moodle311: Remove OPTION MSSQL * www/moodle39: Remove OPTION MSSQL * www/moodle40: Remove OPTION MSSQL * www/moodle41: Remove OPTION MSSQL - Remove USE_PHP=openssl which is available in default php installation of all versions of php * databases/phpmyadmin: Remove OPTION OPENSSL * databases/phpmyadmin5: Remove OPTION OPENSSL * security/pear-Horde_Crypt_Blowfish: Remove OPTION OPENSSL * www/nextcloud: Remove OPTION SSL * www/owncloud: Remove OPTION SSL - Remove USE_PHP=pcre which is available in default php installation of all versions of php * sysutils/racktables: Remove OPTION PCRE - Remove USE_PHP=postgresql which should be USE_PHP=pgsql and update following ports * www/typo3-11 * www/typo3-12 - Remove USE_PHP=pdf which is no longer available as php module * databases/phpmyadmin: Remove OPTION PDF - Remove USE_PHP=spl which is available in default php installation of all versions of php - Remove USE_PHP=sqlsrv which was never imported into FreeBSD as that is Windows only php module * www/typo3-11: Remove OPTION SQLSRV * www/typo3-12: Remove OPTION SQLSRV - Bump where DEFAULT OPTIONS are affected Sponsored by: Bounce Experts Approved by: portmgr(blanket)
48 lines
1.2 KiB
Makefile
48 lines
1.2 KiB
Makefile
PORTNAME= gitlist
|
|
DISTVERSION= 1.1.1
|
|
CATEGORIES= devel www
|
|
MASTER_SITES= https://github.com/klaussilveira/gitlist/releases/download/${DISTVERSION}/ \
|
|
https://freebsd.ark-ict.nl/ports/
|
|
|
|
MAINTAINER= freebsd-ports@misc.ark-ict.nl
|
|
COMMENT= Web based Git repository browser written in PHP
|
|
WWW= https://gitlist.org
|
|
|
|
LICENSE= BSD3CLAUSE
|
|
LICENSE_FILE= ${WRKSRC}/LICENSE.txt
|
|
|
|
RUN_DEPENDS= git:devel/git
|
|
|
|
NO_BUILD= yes
|
|
USES= cpe php:web zip
|
|
USE_PHP= ctype simplexml
|
|
|
|
PLIST= ${WRKDIR}/plist
|
|
NO_WRKSUBDIR= yes
|
|
|
|
USERS?= ${WWWOWN}
|
|
GROUPS?= ${WWWGRP}
|
|
SUB_FILES= pkg-message
|
|
|
|
post-patch:
|
|
${MKDIR} ${WRKSRC}/cache
|
|
cd ${WRKSRC}; \
|
|
${REINPLACE_CMD} -e 's|/usr/bin/git|/usr/local/bin/git|g' config.ini-example; \
|
|
${FIND} . ! -type d | ${SORT} | ${SED} -e "s,^\.,%%WWWDIR%%," > ${PLIST};
|
|
${ECHO} "@dir(${WWWOWN},${WWWGRP},) %%WWWDIR%%/vendor/twig/twig/doc" >> ${PLIST}
|
|
${ECHO} "@dir(${WWWOWN},${WWWGRP},) %%WWWDIR%%/cache" >> ${PLIST}
|
|
|
|
do-install:
|
|
cd ${WRKSRC}; \
|
|
IFS="$$(printf '\n\t')"; \
|
|
for src in $$( ${FIND} . ); do \
|
|
dst="${STAGEDIR}${WWWDIR}$${src#.}"; \
|
|
if ${TEST} -d "$$src"; then \
|
|
${MKDIR} "$$dst"; \
|
|
else \
|
|
${INSTALL_DATA} "$$src" "$$dst"; \
|
|
fi \
|
|
done
|
|
${RM} -r "${WWWDIR}/cache/views"
|
|
|
|
.include <bsd.port.mk>
|