f0f5dfcc7a
USE_PHP=mysql no longer works since PHP 5.6 was removed. PR: 235940
48 lines
913 B
Makefile
48 lines
913 B
Makefile
# Created by: Pakhom Golynga <pg@pakhom.spb.ru>
|
|
# $FreeBSD$
|
|
|
|
PORTNAME= zabbix3
|
|
CATEGORIES= net-mgmt
|
|
PKGNAMESUFFIX= -frontend
|
|
|
|
MASTERDIR= ${.CURDIR}/../zabbix3-server
|
|
|
|
NO_BUILD= yes
|
|
NO_ARCH= yes
|
|
PATCHDIR=
|
|
PLIST= ${PKGDIR}/pkg-plist.frontend
|
|
|
|
USE_PHP= bcmath ctype dom gd gettext json ldap mbstring pcre \
|
|
session simplexml snmp sockets xml xmlreader xmlwriter
|
|
|
|
USES= php:web gettext
|
|
|
|
OPTIONS_DEFINE= MYSQLI PGSQL SQLITE ORACLE
|
|
OPTIONS_DEFAULT= MYSQLI
|
|
MYSQLI_DESC= MySQLI backend
|
|
|
|
.include <bsd.port.options.mk>
|
|
|
|
.if ${PORT_OPTIONS:MMYSQLI}
|
|
USE_PHP+= mysqli
|
|
.endif
|
|
|
|
.if ${PORT_OPTIONS:MPGSQL}
|
|
USE_PHP+= pgsql
|
|
.endif
|
|
|
|
.if ${PORT_OPTIONS:MSQLITE}
|
|
USE_PHP+= sqlite3
|
|
.endif
|
|
|
|
.if ${PORT_OPTIONS:MORACLE}
|
|
ZABBIX_REQUIRE=
|
|
CONFIGURE_ARGS+= --with-oracle
|
|
.endif
|
|
|
|
do-install:
|
|
@${MKDIR} ${STAGEDIR}${WWWDIR}
|
|
(cd ${WRKSRC}/frontends/php && \
|
|
${COPYTREE_SHARE} . ${STAGEDIR}${WWWDIR})
|
|
|
|
.include "${MASTERDIR}/Makefile"
|