0db5ecdc25
- No need to bump PORTREVISION, since the master port (zabbix-server) is upgraded from 1.8 to 1.8.1. PR: ports/143251 Submitted by: Anselm Strauss <amsibamsi@gmail.com> Approved by: Jim Riggs <ports@christianserving.org> (maintainer)
48 lines
893 B
Makefile
48 lines
893 B
Makefile
# New ports collection makefile for: zabbix-frontend
|
|
# Date created: 2009-12-09
|
|
# Whom: Jim Riggs <ports@christianserving.org>
|
|
#
|
|
# $FreeBSD$
|
|
#
|
|
|
|
PORTNAME= zabbix
|
|
PKGNAMESUFFIX= -frontend
|
|
|
|
MASTERDIR= ${.CURDIR}/../zabbix-server
|
|
|
|
NO_BUILD= yes
|
|
PATCHDIR=
|
|
PLIST= ${PKGDIR}/pkg-plist.frontend
|
|
|
|
USE_PHP= bcmath ctype gd pcre snmp sockets
|
|
IGNORE_WITH_PHP= 4
|
|
WANT_PHP_WEB= yes
|
|
|
|
OPTIONSFILE= ${PORT_DBDIR}/${PORTNAME}${PKGNAMESUFFIX}/options
|
|
OPTIONS= MYSQL "Use MySQL backend" on \
|
|
PGSQL "Use PostgreSQL backend" off \
|
|
SQLITE "Use SQLite backend" off
|
|
|
|
.include <bsd.port.options.mk>
|
|
|
|
.ifndef WITHOUT_MYSQL
|
|
USE_PHP+= mysql
|
|
.endif
|
|
|
|
.ifdef WITH_MYSQLI
|
|
USE_PHP+= mysqli
|
|
.endif
|
|
|
|
.ifdef WITH_PGSQL
|
|
USE_PHP+= pgsql
|
|
.endif
|
|
|
|
.ifdef WITH_SQLITE
|
|
USE_PHP+= sqlite
|
|
.endif
|
|
|
|
do-install:
|
|
@${INSTALL} -d ${WWWDIR}
|
|
@cd ${WRKSRC}/frontends/php/ && ${COPYTREE_SHARE} . ${WWWDIR}
|
|
|
|
.include "${MASTERDIR}/Makefile"
|