# HG changeset patch # User Hans-G?nter Theisgen # Date 1585056367 -3600 # Node ID 9ec990a361cda14202fc2b8ca7566d3d46e04e0a # Parent fba21b999b620886856b2a3011d166b69a264c11 updated net-snmp and net-snmp-dev (5.6.1 -> 5.8) diff -r fba21b999b62 -r 9ec990a361cd net-snmp-dev/receipt --- a/net-snmp-dev/receipt Tue Mar 24 14:08:58 2020 +0100 +++ b/net-snmp-dev/receipt Tue Mar 24 14:26:07 2020 +0100 @@ -1,21 +1,22 @@ # SliTaz package receipt. PACKAGE="net-snmp-dev" -VERSION="5.6.1" +VERSION="5.8" CATEGORY="development" -SHORT_DESC="dev files for net-snmp" +SHORT_DESC="Development files for net-snmp." MAINTAINER="allan316@gmail.com" LICENSE="BSD" WEB_SITE="http://net-snmp.sourceforge.net" -WANTED="net-snmp" DEPENDS="net-snmp" +WANTED="net-snmp" # Rules to gen a SliTaz package suitable for Tazpkg. genpkg_rules() { mkdir -p $fs/usr/lib - cp -a $install/usr/lib/*.a $fs/usr/lib - cp -a $install/usr/lib/*.la $fs/usr/lib - cp -a $install/usr/include $fs/usr + + cp -a $install/usr/lib/*.a $fs/usr/lib + cp -a $install/usr/lib/*.la $fs/usr/lib + cp -a $install/usr/include $fs/usr } diff -r fba21b999b62 -r 9ec990a361cd net-snmp/receipt --- a/net-snmp/receipt Tue Mar 24 14:08:58 2020 +0100 +++ b/net-snmp/receipt Tue Mar 24 14:26:07 2020 +0100 @@ -1,41 +1,44 @@ # SliTaz package receipt. PACKAGE="net-snmp" -VERSION="5.6.1" +VERSION="5.8" CATEGORY="network" -SHORT_DESC="snmp tools" +TAGS="snmp" +SHORT_DESC="SNMP tools." MAINTAINER="allan316@gmail.com" LICENSE="BSD" +WEB_SITE="https://sourceforge.net/projects/net-snmp/" + TARBALL="$PACKAGE-$VERSION.tar.gz" -WEB_SITE="http://net-snmp.sourceforge.net" WGET_URL="$SF_MIRROR/$PACKAGE/$TARBALL" -TAGS="snmp" DEPENDS="openssl" -BUILD_DEPENDS="perl openssl-dev file" +BUILD_DEPENDS="file openssl-dev perl" # Rules to configure and make the package. compile_rules() { - ./configure \ - --prefix=/usr \ - --with-default-snmp-version="1" \ - --with-sys-contact="user@localhost" \ - --with-sys-location="unknown" \ - --with-logfile="/var/log/snmpd.log" \ - --with-persistent-directory="/var/net-snmp" \ + ./configure \ + --prefix=/usr \ + --with-default-snmp-version="1" \ + --with-sys-contact="user@localhost" \ + --with-sys-location="unknown" \ + --with-logfile="/var/log/snmpd.log" \ + --with-persistent-directory="/var/net-snmp" \ $CONFIGURE_ARGS && - make -j 1 && make -j 1 DESTDIR=$DESTDIR install + make -j 1 && + make -j 1 DESTDIR=$DESTDIR install } # Rules to gen a SliTaz package suitable for Tazpkg. genpkg_rules() { mkdir -p $fs/usr/lib/ - cp -a $install/usr/bin $fs/usr - cp -a $install/usr/sbin $fs - cp -a $install/usr/share $fs/usr - cp -a $install/usr/lib/*so* $fs/usr/lib - cp -a $install/usr/lib/perl5 $fs/usr/lib + + cp -a $install/usr/bin $fs/usr + cp -a $install/usr/sbin $fs + cp -a $install/usr/share $fs/usr + cp -a $install/usr/lib/*so* $fs/usr/lib + cp -a $install/usr/lib/perl5 $fs/usr/lib }