# HG changeset patch # User Hans-G?nter Theisgen # Date 1646989759 -3600 # Node ID 7de87766c29c9de32f50f2df249405e8ea425225 # Parent 80b94d3254bafdbea882c64aad5e8a99aa1f949c updated igmpproxy (0.2.1 -> 0.3) diff -r 80b94d3254ba -r 7de87766c29c icinga/description.txt --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/icinga/description.txt Fri Mar 11 10:09:19 2022 +0100 @@ -0,0 +1,6 @@ +Icinga is a monitoring system which checks the availability of +your network resources, notifies users of outages, and generates +performance data for reporting. + +Scalable and extensible, Icinga can monitor large, complex +environments across multiple locations. diff -r 80b94d3254ba -r 7de87766c29c icinga/receipt --- a/icinga/receipt Fri Mar 11 09:30:17 2022 +0100 +++ b/icinga/receipt Fri Mar 11 10:09:19 2022 +0100 @@ -46,15 +46,15 @@ $CONFIGURE_ARGS && make all && make install && - make install-api && make install-commandmode && make install-config && make install-idoutils && - make install-webconf && + make install-webconf } # Rules to gen a SliTaz package suitable for Tazpkg. genpkg_rules() { cook_copy_folders bin + cook_copy_folders etc } diff -r 80b94d3254ba -r 7de87766c29c igmpproxy/description.txt --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/igmpproxy/description.txt Fri Mar 11 10:09:19 2022 +0100 @@ -0,0 +1,1 @@ +IGMPproxy is a simple multicast router that only uses the IGMP protocol. diff -r 80b94d3254ba -r 7de87766c29c igmpproxy/receipt --- a/igmpproxy/receipt Fri Mar 11 09:30:17 2022 +0100 +++ b/igmpproxy/receipt Fri Mar 11 10:09:19 2022 +0100 @@ -1,7 +1,7 @@ # SliTaz package receipt. PACKAGE="igmpproxy" -VERSION="0.2.1" +VERSION="0.3" CATEGORY="network" SHORT_DESC="Simple forwarding of Multicast traffic between networks." MAINTAINER="pascal.bellard@slitaz.org" @@ -11,6 +11,8 @@ TARBALL="$PACKAGE-$VERSION.tar.gz" WGET_URL="$WEB_SITE/releases/download/$VERSION/$TARBALL" +CONFIG_FILES="/etc/igmpproxy.conf" + current_version() { wget -O - ${WGET_URL%/down*} 2>/dev/null | \ @@ -26,15 +28,13 @@ --sysconfdir=/etc \ --mandir=/usr/share/man \ $CONFIGURE_ARGS && - make -j 1 && - make DESTDIR=$DESTDIR install + make && + make install DESTDIR=$DESTDIR } # Rules to gen a SliTaz package suitable for Tazpkg. genpkg_rules() { - mkdir -p $fs/usr/ - - cp -a $install/etc $fs - cp -a $install/usr/sbin $fs/usr + cook_copy_folders etc + cook_copy_folders sbin }