freebsd-ports/www/matomo/Makefile
Muhammad Moinur Rahman 0ac3a69555 */*: Remove merged or non-existent USE_PHP directives
- 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)
2023-04-16 20:09:23 +02:00

48 lines
1.3 KiB
Makefile

PORTNAME= matomo
PORTVERSION= 4.13.3
CATEGORIES= www
MASTER_SITES= http://builds.matomo.org/
PKGNAMEPREFIX= ${PHP_PKGNAMEPREFIX}
MAINTAINER= joneum@FreeBSD.org
COMMENT= Open Source Web Analytics Software Program
WWW= https://www.matomo.org/
LICENSE= GPLv3
LICENSE_FILE= ${WRKSRC}/LICENSE
USES= cpe shebangfix php:flavors
USE_PHP= ctype curl dom fileinfo filter gd iconv intl \
mbstring mcrypt memcache mysqli opcache pdo \
pdo_mysql posix readline session simplexml soap sockets \
sqlite3 tidy tokenizer xml zlib
NO_ARCH= yes
NO_BUILD= yes
SHEBANG_FILES= misc/log-analytics/import_logs.py
SUB_FILES= pkg-message
PLIST_SUB+= WWWOWN=${WWWOWN} WWWGRP=${WWWGRP}
WRKSRC= ${WRKDIR}/${PORTNAME}
OPTIONS_DEFINE= PHPPDOMYSQL PHPMYSQLI
OPTIONS_DEFAULT= PHPPDOMYSQL
PHPPDOMYSQL_DESC= Use pdo_mysql php module
PHPPDOMYSQL_USE= PHP=pdo_mysql
PHPMYSQLI_DESC= Use mysqli php module
PHPMYSQLI_USE= PHP=mysqli
pre-install:
@if [ ! -f ${LOCALBASE}/bin/php ]; then \
echo " It seems you installed PHP without CLI enabled. "; \
echo " This will cause problems when using Matomo. "; \
echo " If you want to reconsider, press Ctrl-C now to cancel. "; \
echo " Then reinstall PHP with CLI enabled. "; \
sleep 3; \
fi
do-install:
${MKDIR} ${STAGEDIR}${WWWDIR}/tmp/cache/tracker
@(cd ${WRKSRC} && ${COPYTREE_SHARE} . ${STAGEDIR}${WWWDIR})
.include <bsd.port.mk>