From owner-svn-ports-head@FreeBSD.ORG Mon Sep 30 20:05:12 2013 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTP id 0DC868C6; Mon, 30 Sep 2013 20:05:12 +0000 (UTC) (envelope-from lme@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)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id E100D2135; Mon, 30 Sep 2013 20:05:11 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.7/8.14.7) with ESMTP id r8UK5BQT099574; Mon, 30 Sep 2013 20:05:11 GMT (envelope-from lme@svn.freebsd.org) Received: (from lme@localhost) by svn.freebsd.org (8.14.7/8.14.5/Submit) id r8UK5Bdm099538; Mon, 30 Sep 2013 20:05:11 GMT (envelope-from lme@svn.freebsd.org) Message-Id: <201309302005.r8UK5Bdm099538@svn.freebsd.org> From: Lars Engels Date: Mon, 30 Sep 2013 20:05:11 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r328858 - in head/net-mgmt: . icli 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.14 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: Mon, 30 Sep 2013 20:05:12 -0000 Author: lme Date: Mon Sep 30 20:05:10 2013 New Revision: 328858 URL: http://svnweb.freebsd.org/changeset/ports/328858 Log: Add new port net-mgmt/icli: Command line interface to Icinga. Features: - Listing of service/host states, check queue or downtimes - Detailed service/host info - Scheduling of service rechecks, acknowledging of problems - Detailed filtering (host(group)/service name, state, passive, acknowledged, etc.) - Mostly nagios-compatible http://finalrewind.org/projects/icli/ Added: head/net-mgmt/icli/ head/net-mgmt/icli/Makefile (contents, props changed) head/net-mgmt/icli/distinfo (contents, props changed) head/net-mgmt/icli/pkg-descr (contents, props changed) Modified: head/net-mgmt/Makefile Modified: head/net-mgmt/Makefile ============================================================================== --- head/net-mgmt/Makefile Mon Sep 30 20:03:35 2013 (r328857) +++ head/net-mgmt/Makefile Mon Sep 30 20:05:10 2013 (r328858) @@ -84,6 +84,7 @@ SUBDIR += hawk SUBDIR += horde3-nic SUBDIR += icinga + SUBDIR += icli SUBDIR += icmpmonitor SUBDIR += icmpquery SUBDIR += ifgraph Added: head/net-mgmt/icli/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/net-mgmt/icli/Makefile Mon Sep 30 20:05:10 2013 (r328858) @@ -0,0 +1,31 @@ +# $FreeBSD$ + +PORTNAME= icli +DISTVERSION= 0.46 +CATEGORIES= net-mgmt perl5 +MASTER_SITES= http://finalrewind.org/projects/icli/ + +MAINTAINER= lme@FreeBSD.org +COMMENT= Command line interface to Icinga + +LICENSE= ICLI +LICENSE_NAME= ICLI license +LICENSE_FILE= ${WRKSRC}/COPYING +LICENSE_PERMS= dist-mirror dist-sell pkg-mirror pkg-sell auto-accept + +RUN_DEPENDS= p5-List-MoreUtils>=0:${PORTSDIR}/lang/p5-List-MoreUtils \ + p5-Term-Size>=0:${PORTSDIR}/devel/p5-Term-Size \ + icinga:${PORTSDIR}/net-mgmt/icinga + +CONFIGURE_ARGS+= --destdir ${STAGEDIR} + +USES= perl5 +USE_PERL5= modbuild + +PLIST_FILES= bin/${PORTNAME} man/man1/${PORTNAME}.1.gz + +post-patch: + @${REINPLACE_CMD} -i '' 's|/var/[^/]*/icinga|/var/spool/icinga|' \ + ${WRKSRC}/bin/${PORTNAME} + +.include Added: head/net-mgmt/icli/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/net-mgmt/icli/distinfo Mon Sep 30 20:05:10 2013 (r328858) @@ -0,0 +1,2 @@ +SHA256 (icli-0.46.tar.gz) = cf63d74fe99288b8b6c77e9e5fe258fc9d7c6546a7fbc5c0cae04fe1ed4d5106 +SIZE (icli-0.46.tar.gz) = 35591 Added: head/net-mgmt/icli/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/net-mgmt/icli/pkg-descr Mon Sep 30 20:05:10 2013 (r328858) @@ -0,0 +1,12 @@ +Command line interface to Icinga. + +Features: + +- Listing of service/host states, check queue or downtimes +- Detailed service/host info +- Scheduling of service rechecks, acknowledging of problems +- Detailed filtering (host(group)/service name, state, passive, acknowledged, + etc.) +- Mostly nagios-compatible + +WWW: http://finalrewind.org/projects/icli/