wok rev 24949

updated nagios-nsca (2.9.2 -> 2.10.1)
author Hans-G?nter Theisgen
date Fri Apr 22 17:54:28 2022 +0100 (2022-04-22)
parents ba547239b9e3
children cf5131fd17f5
files nagios-nsca/description.txt nagios-nsca/receipt
line diff
     1.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     1.2 +++ b/nagios-nsca/description.txt	Fri Apr 22 17:54:28 2022 +0100
     1.3 @@ -0,0 +1,4 @@
     1.4 +NSCA - Nagios Service Check Acceptor
     1.5 +
     1.6 +The purpose of this addon is to allow you to send service check results
     1.7 +to a central monitoring server running Nagios in a secure manner.
     2.1 --- a/nagios-nsca/receipt	Fri Apr 22 17:47:12 2022 +0100
     2.2 +++ b/nagios-nsca/receipt	Fri Apr 22 17:54:28 2022 +0100
     2.3 @@ -1,20 +1,20 @@
     2.4  # SliTaz package receipt.
     2.5  
     2.6  PACKAGE="nagios-nsca"
     2.7 -VERSION="2.9.2"
     2.8 +VERSION="2.10.1"
     2.9  CATEGORY="network"
    2.10  SHORT_DESC="Service and network monitoring program, remote monitoring."
    2.11  MAINTAINER="erjo@slitaz.org"
    2.12  LICENSE="GPL2"
    2.13  WEB_SITE="https://www.nagios.org/"
    2.14 +REPOLOGY="nsca"
    2.15  
    2.16  SOURCE="nsca"
    2.17  TARBALL="$SOURCE-$VERSION.tar.gz"
    2.18 -#WGET_URL="$SF_MIRROR/nagios/$TARBALL"
    2.19 -WGET_URL="http://prdownloads.sourceforge.net/sourceforge/nagios/$TARBALL"
    2.20 +WGET_URL="https://github.com/NagiosEnterprises/$SOURCE/archive/refs/tags/$TARBALL"
    2.21  
    2.22 -BUILD_DEPENDS="libmcrypt-dev perl libwrap-dev"
    2.23  DEPENDS="libmcrypt"
    2.24 +BUILD_DEPENDS="libmcrypt-dev libwrap-dev perl"
    2.25  
    2.26  # What is the latest version available today?
    2.27  current_version()
    2.28 @@ -43,18 +43,18 @@
    2.29  		--with-nsca-port=5667		\
    2.30  		--mandir=/usr/share/man		\
    2.31  		$CONFIGURE_ARGS &&
    2.32 -	make all 
    2.33 +	make all
    2.34  }
    2.35  
    2.36  # Rules to gen a SliTaz package suitable for Tazpkg.
    2.37  genpkg_rules()
    2.38  {
    2.39 +	mkdir -p $fs/etc/nagios
    2.40  	mkdir -p $fs/usr/sbin
    2.41 -	mkdir -p $fs/etc/nagios
    2.42  
    2.43  	cp -a $src/src/nsca		$fs/usr/sbin
    2.44  	cp -a $src/src/send_nsca	$fs/usr/sbin
    2.45 -	
    2.46 -	install -m 0644 $src/sample-config/nsca.cfg	$fs/etc/nagios
    2.47 -	install -m 0644 $src/sample-config/send_nsca.cfg $fs/etc/nagios
    2.48 +
    2.49 +	install -m 0644 $src/sample-config/nsca.cfg		$fs/etc/nagios
    2.50 +	install -m 0644 $src/sample-config/send_nsca.cfg	$fs/etc/nagios
    2.51  }