0ac3a69555
- 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)
51 lines
1.2 KiB
Makefile
51 lines
1.2 KiB
Makefile
PORTNAME= frontaccounting
|
|
DISTVERSION= 2.3.25
|
|
CATEGORIES= finance www
|
|
MASTER_SITES= SF/${PORTNAME}/FrontAccounting-2.3/${PORTVERSION}
|
|
|
|
MAINTAINER= ek@purplehat.org
|
|
COMMENT= Simple, powerful system for the entire ERP chain
|
|
WWW= https://www.frontaccounting.com/
|
|
|
|
LICENSE= GPLv3+
|
|
LICENSE_FILE= ${WRKSRC}/doc/license.txt
|
|
|
|
USES= cpe
|
|
USE_PHP+= mysqli session ctype zlib
|
|
|
|
WRKSRC= ${WRKDIR}/${PORTNAME}
|
|
|
|
NO_BUILD= yes
|
|
SUB_FILES= pkg-deinstall pkg-message
|
|
PORTDOCSARGS=
|
|
|
|
OPTIONS_DEFINE= APACHE LIGHTTPD NGINX MYSQL_SERVER NLS DOCS
|
|
OPTIONS_DEFAULT= APACHE MYSQL_SERVER
|
|
|
|
MYSQL_SERVER_DESC= MySQL server support
|
|
NGINX_DESC= NGINX web server
|
|
|
|
APACHE_USES= apache:run php:web
|
|
LIGHTTPD_RUN_DEPENDS= lighttpd:www/lighttpd
|
|
LIGHTTPD_USES= php:web
|
|
NGINX_RUN_DEPENDS= nginx:www/nginx
|
|
NGINX_USES= php:web
|
|
MYSQL_SERVER_USES= mysql:server
|
|
NLS_USES= gettext
|
|
|
|
.include <bsd.port.options.mk>
|
|
|
|
.if !${PORT_OPTIONS:MAPACHE} && !${PORT_OPTIONS:MLIGHTTPD} && !{PORT_OPTIONS:MNGINX}
|
|
USES+= php
|
|
.endif
|
|
|
|
.if !${PORT_OPTIONS:MDOCS}
|
|
PORTDOCSARGS= '-not -path "./doc*"'
|
|
.endif
|
|
|
|
do-install:
|
|
@${MKDIR} ${STAGEDIR}${WWWDIR}
|
|
(cd ${WRKSRC} && ${COPYTREE_SHARE} . \
|
|
${STAGEDIR}${WWWDIR} ${PORTDOCSARGS})
|
|
|
|
.include <bsd.port.mk>
|