aboutsummaryrefslogtreecommitdiff
path: root/net-mgmt/zabbix3-frontend/Makefile
diff options
context:
space:
mode:
authorRene Ladan <rene@FreeBSD.org>2022-02-28 17:37:26 +0000
committerRene Ladan <rene@FreeBSD.org>2022-02-28 17:37:47 +0000
commit6d16a1701e7fdceb3195f4241affb82037614888 (patch)
tree2c7f79d083107418060bb6d73527c935b0277c25 /net-mgmt/zabbix3-frontend/Makefile
parent16e1229edf7cef69510e4002e9f169f27df7aa23 (diff)
downloadports-6d16a1701e7fdceb3195f4241affb82037614888.tar.gz
ports-6d16a1701e7fdceb3195f4241affb82037614888.zip
Diffstat (limited to 'net-mgmt/zabbix3-frontend/Makefile')
-rw-r--r--net-mgmt/zabbix3-frontend/Makefile47
1 files changed, 0 insertions, 47 deletions
diff --git a/net-mgmt/zabbix3-frontend/Makefile b/net-mgmt/zabbix3-frontend/Makefile
deleted file mode 100644
index 6a0c1e83e3c8..000000000000
--- a/net-mgmt/zabbix3-frontend/Makefile
+++ /dev/null
@@ -1,47 +0,0 @@
-# Created by: Pakhom Golynga <pg@pakhom.spb.ru>
-
-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"