From owner-svn-ports-head@FreeBSD.ORG Wed May 27 14:31:02 2015 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 58BB075A; Wed, 27 May 2015 14:31:02 +0000 (UTC) (envelope-from feld@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 2D0585F6; Wed, 27 May 2015 14:31:02 +0000 (UTC) (envelope-from feld@FreeBSD.org) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.9/8.14.9) with ESMTP id t4REV2c1023464; Wed, 27 May 2015 14:31:02 GMT (envelope-from feld@FreeBSD.org) Received: (from feld@localhost) by svn.freebsd.org (8.14.9/8.14.9/Submit) id t4REV28u023463; Wed, 27 May 2015 14:31:02 GMT (envelope-from feld@FreeBSD.org) Message-Id: <201505271431.t4REV28u023463@svn.freebsd.org> X-Authentication-Warning: svn.freebsd.org: feld set sender to feld@FreeBSD.org using -f From: Mark Felder Date: Wed, 27 May 2015 14:31:02 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r387609 - head/net-mgmt/observium X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 27 May 2015 14:31:02 -0000 Author: feld Date: Wed May 27 14:31:01 2015 New Revision: 387609 URL: https://svnweb.freebsd.org/changeset/ports/387609 Log: Add PYPOLLER option to add support for the Python poller wrapper Submitted by: mat Modified: head/net-mgmt/observium/Makefile Modified: head/net-mgmt/observium/Makefile ============================================================================== --- head/net-mgmt/observium/Makefile Wed May 27 14:26:18 2015 (r387608) +++ head/net-mgmt/observium/Makefile Wed May 27 14:31:01 2015 (r387609) @@ -3,7 +3,7 @@ PORTNAME= observium PORTVERSION= 0.14.11.6000 -PORTREVISION= 1 +PORTREVISION= 2 CATEGORIES= net-mgmt MASTER_SITES= http://www.observium.org/ DISTNAME= ${PORTNAME}-community-latest @@ -16,7 +16,7 @@ LICENSE= GPLv3 WRKSRC= ${WRKDIR}/${PORTNAME} -USES= shebangfix +USES= python shebangfix SHEBANG_FILES= mibs/process.pl html/js/makemini.pl \ scripts/watchmaillog/watchmaillog.pl \ scripts/agent-local/postgresql.pl \ @@ -34,19 +34,21 @@ RUN_DEPENDS+= rrdtool:${PORTSDIR}/databa ${LOCALBASE}/share/pear/Net/IPv6.php:${PORTSDIR}/net/pear-Net_IPv6 \ snmpget:${PORTSDIR}/net-mgmt/net-snmp -OPTIONS_DEFINE= APACHEMOD FPING IPMITOOL LIBVIRT MYSQLD NAGPLUGINS NMAP SVN WMIC -OPTIONS_DEFAULT= APACHEMOD FPING IPMITOOL LIBVIRT NAGPLUGINS NMAP SVN WMIC +OPTIONS_DEFINE= APACHEMOD FPING IPMITOOL LIBVIRT MYSQLD NAGPLUGINS NMAP PYPOLLER SVN WMIC +OPTIONS_DEFAULT= APACHEMOD FPING IPMITOOL LIBVIRT NAGPLUGINS NMAP PYPOLLER SVN WMIC APACHEMOD_DESC= Use PHP with Apache 2.2+ module FPING_DESC= Enable fping support ping monitoring IPMITOOL_DESC= Enable support for monitoring hardware IPMI MYSQLD_DESC= Use local MySQL server WMIC_DESC= Enable support for WMI polling +PYPOLLER_DESC= Enable Python Poller Wrapper FPING_RUN_DEPENDS= fping:${PORTSDIR}/net/fping IPMITOOL_RUN_DEPENDS= ipmitool:${PORTSDIR}/sysutils/ipmitool LIBVIRT_RUN_DEPENDS= virsh:${PORTSDIR}/devel/libvirt NAGPLUGINS_RUN_DEPENDS= ${LOCALBASE}/libexec/nagios/check_nagios:${PORTSDIR}/net-mgmt/nagios-plugins NMAP_RUN_DEPENDS= nmap:${PORTSDIR}/security/nmap +PYPOLLER_RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}MySQLdb>0:${PORTSDIR}/databases/py-MySQLdb SVN_RUN_DEPENDS= svn:${PORTSDIR}/devel/subversion WMIC_RUN_DEPENDS= wmic:${PORTSDIR}/net-mgmt/wmi-client