From owner-svn-ports-all@freebsd.org Wed Aug 2 16:09:45 2017 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 7CBCBDD41E2; Wed, 2 Aug 2017 16:09:45 +0000 (UTC) (envelope-from lme@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::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 584FB6AE4B; Wed, 2 Aug 2017 16:09:45 +0000 (UTC) (envelope-from lme@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id v72G9i4L005608; Wed, 2 Aug 2017 16:09:44 GMT (envelope-from lme@FreeBSD.org) Received: (from lme@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id v72G9hBC005599; Wed, 2 Aug 2017 16:09:43 GMT (envelope-from lme@FreeBSD.org) Message-Id: <201708021609.v72G9hBC005599@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: lme set sender to lme@FreeBSD.org using -f From: Lars Engels Date: Wed, 2 Aug 2017 16:09:43 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r447117 - in head: net-mgmt/icinga-core net-mgmt/icinga-core/files net-mgmt/icinga2 net-mgmt/icinga2/files net-mgmt/pnp net-mgmt/pnp/files www/dhttpd www/dhttpd/files X-SVN-Group: ports-head X-SVN-Commit-Author: lme X-SVN-Commit-Paths: in head: net-mgmt/icinga-core net-mgmt/icinga-core/files net-mgmt/icinga2 net-mgmt/icinga2/files net-mgmt/pnp net-mgmt/pnp/files www/dhttpd www/dhttpd/files X-SVN-Commit-Revision: 447117 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 02 Aug 2017 16:09:45 -0000 Author: lme Date: Wed Aug 2 16:09:43 2017 New Revision: 447117 URL: https://svnweb.freebsd.org/changeset/ports/447117 Log: - Add descr variable to all my ports' rc scripts - Bump PORTREVISION Modified: head/net-mgmt/icinga-core/Makefile head/net-mgmt/icinga-core/files/icinga.in head/net-mgmt/icinga-core/files/ido2db.in head/net-mgmt/icinga2/Makefile head/net-mgmt/icinga2/files/icinga2.in head/net-mgmt/pnp/Makefile head/net-mgmt/pnp/files/npcd.in head/www/dhttpd/Makefile head/www/dhttpd/files/dhttpd.in Modified: head/net-mgmt/icinga-core/Makefile ============================================================================== --- head/net-mgmt/icinga-core/Makefile Wed Aug 2 15:55:30 2017 (r447116) +++ head/net-mgmt/icinga-core/Makefile Wed Aug 2 16:09:43 2017 (r447117) @@ -3,6 +3,7 @@ PORTNAME= icinga-core DISTNAME= icinga-${PORTVERSION} +PORTREVISION= 1 COMMENT= Enterprise grade open source monitoring system based on Nagios Modified: head/net-mgmt/icinga-core/files/icinga.in ============================================================================== --- head/net-mgmt/icinga-core/files/icinga.in Wed Aug 2 15:55:30 2017 (r447116) +++ head/net-mgmt/icinga-core/files/icinga.in Wed Aug 2 16:09:43 2017 (r447117) @@ -19,6 +19,7 @@ . /etc/rc.subr name="icinga" +desc="Icinga 1 monitoring (core)" rcvar=icinga_enable load_rc_config "${name}" Modified: head/net-mgmt/icinga-core/files/ido2db.in ============================================================================== --- head/net-mgmt/icinga-core/files/ido2db.in Wed Aug 2 15:55:30 2017 (r447116) +++ head/net-mgmt/icinga-core/files/ido2db.in Wed Aug 2 16:09:43 2017 (r447117) @@ -15,6 +15,7 @@ . /etc/rc.subr name="ido2db" +desc="Icinga 1 database connection daemon" rcvar=ido2db_enable load_rc_config "${name}" Modified: head/net-mgmt/icinga2/Makefile ============================================================================== --- head/net-mgmt/icinga2/Makefile Wed Aug 2 15:55:30 2017 (r447116) +++ head/net-mgmt/icinga2/Makefile Wed Aug 2 16:09:43 2017 (r447117) @@ -3,7 +3,7 @@ PORTNAME= icinga2 DISTVERSIONPREFIX= v DISTVERSION= 2.6.3 -PORTREVISION= 1 +PORTREVISION= 2 CATEGORIES= net-mgmt MAINTAINER= lme@FreeBSD.org Modified: head/net-mgmt/icinga2/files/icinga2.in ============================================================================== --- head/net-mgmt/icinga2/files/icinga2.in Wed Aug 2 15:55:30 2017 (r447116) +++ head/net-mgmt/icinga2/files/icinga2.in Wed Aug 2 16:09:43 2017 (r447117) @@ -24,6 +24,7 @@ export PATH=$PATH:%%LOCALBASE%%/bin:%%PREFIX%%/sbin name="icinga2" +desc="Icinga 2 monitoring (core)" rcvar=icinga2_enable load_rc_config "${name}" Modified: head/net-mgmt/pnp/Makefile ============================================================================== --- head/net-mgmt/pnp/Makefile Wed Aug 2 15:55:30 2017 (r447116) +++ head/net-mgmt/pnp/Makefile Wed Aug 2 16:09:43 2017 (r447117) @@ -3,7 +3,7 @@ PORTNAME= pnp PORTVERSION= 0.6.25 -PORTREVISION= 5 +PORTREVISION= 6 CATEGORIES= net-mgmt MASTER_SITES= SF/pnp4nagios/PNP-0.6 DISTNAME= pnp4nagios-${DISTVERSIONPREFIX}${DISTVERSION}${DISTVERSIONSUFFIX} Modified: head/net-mgmt/pnp/files/npcd.in ============================================================================== --- head/net-mgmt/pnp/files/npcd.in Wed Aug 2 15:55:30 2017 (r447116) +++ head/net-mgmt/pnp/files/npcd.in Wed Aug 2 16:09:43 2017 (r447117) @@ -19,6 +19,7 @@ . /etc/rc.subr name="npcd" +desc="Nagios performance C daemon" rcvar=npcd_enable command="%%PREFIX%%/bin/npcd" Modified: head/www/dhttpd/Makefile ============================================================================== --- head/www/dhttpd/Makefile Wed Aug 2 15:55:30 2017 (r447116) +++ head/www/dhttpd/Makefile Wed Aug 2 16:09:43 2017 (r447117) @@ -3,6 +3,7 @@ PORTNAME= dhttpd PORTVERSION= 1.02a +PORTREVISION= 1 CATEGORIES= www MASTER_SITES= http://bsd-geek.de/FreeBSD/distfiles/ EXTRACT_SUFX= .tgz Modified: head/www/dhttpd/files/dhttpd.in ============================================================================== --- head/www/dhttpd/files/dhttpd.in Wed Aug 2 15:55:30 2017 (r447116) +++ head/www/dhttpd/files/dhttpd.in Wed Aug 2 16:09:43 2017 (r447117) @@ -14,6 +14,7 @@ . /etc/rc.subr name="dhttpd" +desc="Secure and efficient personal HTTP server" rcvar=dhttpd_enable load_rc_config $name