wok rev 24660

updated igmpproxy (0.2.1 -> 0.3)
author Hans-G?nter Theisgen
date Fri Mar 11 10:09:19 2022 +0100 (2022-03-11)
parents 80b94d3254ba
children b6f35b7563f0
files icinga/description.txt icinga/receipt igmpproxy/description.txt igmpproxy/receipt
line diff
     1.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     1.2 +++ b/icinga/description.txt	Fri Mar 11 10:09:19 2022 +0100
     1.3 @@ -0,0 +1,6 @@
     1.4 +Icinga is a monitoring system which checks the availability of
     1.5 +your network resources, notifies users of outages, and generates
     1.6 +performance data for reporting.
     1.7 +
     1.8 +Scalable and extensible, Icinga can monitor large, complex
     1.9 +environments across multiple locations.
     2.1 --- a/icinga/receipt	Fri Mar 11 09:30:17 2022 +0100
     2.2 +++ b/icinga/receipt	Fri Mar 11 10:09:19 2022 +0100
     2.3 @@ -46,15 +46,15 @@
     2.4  		$CONFIGURE_ARGS &&
     2.5  	make	all &&
     2.6  	make	install &&
     2.7 -	make	install-api &&
     2.8  	make	install-commandmode &&
     2.9  	make	install-config &&
    2.10  	make	install-idoutils &&
    2.11 -	make	install-webconf &&
    2.12 +	make	install-webconf
    2.13  }
    2.14  
    2.15  # Rules to gen a SliTaz package suitable for Tazpkg.
    2.16  genpkg_rules()
    2.17  {
    2.18  	cook_copy_folders	bin
    2.19 +	cook_copy_folders	etc
    2.20  }
     3.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     3.2 +++ b/igmpproxy/description.txt	Fri Mar 11 10:09:19 2022 +0100
     3.3 @@ -0,0 +1,1 @@
     3.4 +IGMPproxy is a simple multicast router that only uses the IGMP protocol.
     4.1 --- a/igmpproxy/receipt	Fri Mar 11 09:30:17 2022 +0100
     4.2 +++ b/igmpproxy/receipt	Fri Mar 11 10:09:19 2022 +0100
     4.3 @@ -1,7 +1,7 @@
     4.4  # SliTaz package receipt.
     4.5  
     4.6  PACKAGE="igmpproxy"
     4.7 -VERSION="0.2.1"
     4.8 +VERSION="0.3"
     4.9  CATEGORY="network"
    4.10  SHORT_DESC="Simple forwarding of Multicast traffic between networks."
    4.11  MAINTAINER="pascal.bellard@slitaz.org"
    4.12 @@ -11,6 +11,8 @@
    4.13  TARBALL="$PACKAGE-$VERSION.tar.gz"
    4.14  WGET_URL="$WEB_SITE/releases/download/$VERSION/$TARBALL"
    4.15  
    4.16 +CONFIG_FILES="/etc/igmpproxy.conf"
    4.17 +
    4.18  current_version()
    4.19  {
    4.20  	wget -O - ${WGET_URL%/down*} 2>/dev/null | \
    4.21 @@ -26,15 +28,13 @@
    4.22  		--sysconfdir=/etc		\
    4.23  		--mandir=/usr/share/man		\
    4.24  		$CONFIGURE_ARGS &&
    4.25 -	make -j 1 &&
    4.26 -	make DESTDIR=$DESTDIR install
    4.27 +	make &&
    4.28 +	make install DESTDIR=$DESTDIR
    4.29  }
    4.30  
    4.31  # Rules to gen a SliTaz package suitable for Tazpkg.
    4.32  genpkg_rules()
    4.33  {
    4.34 -	mkdir -p $fs/usr/
    4.35 -
    4.36 -	cp -a $install/etc	$fs
    4.37 -	cp -a $install/usr/sbin	$fs/usr
    4.38 +	cook_copy_folders	etc
    4.39 +	cook_copy_folders	sbin
    4.40  }