blob: d81197ac527758cb5279b245058383a8868b7d77 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
|
# Created by: rflynn@acsalaska.net
# $FreeBSD$
PORTNAME= observium
PORTVERSION= 0.14.4.5229
PORTREVISION= 1
CATEGORIES= net-mgmt
MASTER_SITES= http://www.observium.org/
DISTNAME= ${PORTNAME}-community-latest
DIST_SUBDIR= ${PORTNAME}-${PORTVERSION}
MAINTAINER= feld@FreeBSD.org
COMMENT= Autodiscovering PHP/MySQL/SNMP based network monitoring
LICENSE= GPLv3
WRKSRC= ${WRKDIR}/${PORTNAME}
USES= shebangfix
SHEBANG_FILES= mibs/process.pl html/js/makemini.pl \
scripts/watchmaillog/watchmaillog.pl \
scripts/agent-local/postgresql.pl \
scripts/removespikes.pl scripts/add_ds.pl
USE_PHP= snmp ctype gd mysql session xml
WANT_PHP_CLI= yes
NO_BUILD= yes
RUN_DEPENDS+= rrdtool:${PORTSDIR}/databases/rrdtool \
dot:${PORTSDIR}/graphics/graphviz \
Magick-config:${PORTSDIR}/graphics/ImageMagick \
mtr:${PORTSDIR}/net/mtr-nox11 \
${LOCALBASE}/share/pear/Net/IPv4.php:${PORTSDIR}/net/pear-Net_IPv4 \
${LOCALBASE}/share/pear/Net/IPv6.php:${PORTSDIR}/net/pear-Net_IPv6 \
snmpget:${PORTSDIR}/net-mgmt/net-snmp
OPTIONS_DEFINE= APACHEMOD MYSQLD
OPTIONS_DEFAULT= APACHEMOD
APACHEMOD_DESC= Use PHP with Apache 2.2+ module
MYSQLD_DESC= Use local MySQL server
.include <bsd.port.options.mk>
SUB_FILES+= pkg-message
SUB_LIST+= PHP="${PHPBASE}/bin/php"
ROOT_FILES= rename_device.php snmptrap.php .scrutinizer.yml add_device.php \
snmpd.conf.example check-errors.php config_to_json.php delete_device.php \
syslog.php irc.php snmp.conf.example adduser.php discovery.php \
check-services.php poller.php config.php.default poller-wrapper.py
ROOT_DIRS= html scripts includes update mibs
PORTDOCS= INSTALL README
PORTEXAMPLES= snmp.conf.example snmpd.conf.example
.if ${PORT_OPTIONS:MAPACHEMOD} && !defined(PACKAGE_BUILDING)
WANT_PHP_MOD= yes
USE_APACHE_RUN= 22+
.else
# Package builder doesn't create php5 with module
WANT_PHP_WEB= yes
.endif
.if ${PORT_OPTIONS:MMYSQLD}
USE_MYSQL= server
.else
USE_MYSQL= client
.endif
do-install:
@${MKDIR} ${STAGEDIR}/${WWWDIR}
.for dir in ${ROOT_DIRS}
@${MKDIR} ${STAGEDIR}/${WWWDIR}/${dir}
@cd ${WRKSRC}/${dir} && ${COPYTREE_SHARE} . ${STAGEDIR}/${WWWDIR}/${dir}
.endfor
.for f in ${ROOT_FILES}
@${INSTALL_DATA} ${WRKSRC}/${f} ${STAGEDIR}/${WWWDIR}
.endfor
# Create empty rrd dir writable by www
@${INSTALL} -d -o www -g www ${STAGEDIR}/${WWWDIR}/rrd
# Files in scripts dir should be executable
@${FIND} ${STAGEDIR}/${WWWDIR}/scripts -type f -exec ${CHMOD} +x {} \;
.if ${PORT_OPTIONS:MDOCS}
@${MKDIR} ${STAGEDIR}/${DOCSDIR}
.for f in ${PORTDOCS}
@${INSTALL_DATA} ${WRKSRC}/${f} ${STAGEDIR}/${DOCSDIR}
.endfor
.endif
.if ${PORT_OPTIONS:MEXAMPLES}
@${MKDIR} ${STAGEDIR}/${EXAMPLESDIR}
.for f in ${PORTEXAMPLES}
@${INSTALL_DATA} ${WRKSRC}/${f} ${STAGEDIR}/${EXAMPLESDIR}
.endfor
.endif
post-install:
@${ECHO_CMD}; ${CAT} ${PKGMESSAGE}; ${ECHO_CMD}
.include <bsd.port.mk>
|