# HG changeset patch # User Hans-G?nter Theisgen # Date 1582899828 -3600 # Node ID eba8234042aa1733c0f6d59958a5ceebaa58d845 # Parent 7002c9273ff2a4c514c4bee4f7c0c6fd0c020627 updated iproute2 (3.6.0 -> 5.5.0) diff -r 7002c9273ff2 -r eba8234042aa iproute2/receipt --- a/iproute2/receipt Fri Feb 28 15:11:56 2020 +0100 +++ b/iproute2/receipt Fri Feb 28 15:23:48 2020 +0100 @@ -1,36 +1,41 @@ # SliTaz package receipt. PACKAGE="iproute2" -VERSION="3.6.0" +VERSION="5.5.0" CATEGORY="network" -SHORT_DESC="utilites for networking and traffic control" +TAGS="network route" +SHORT_DESC="Utilites for networking and traffic control." MAINTAINER="allan316@gmail.com" LICENSE="GPL2" +WEB_SITE="https://wiki.linuxfoundation.org/networking/iproute2" + TARBALL="$PACKAGE-$VERSION.tar.xz" -WEB_SITE="http://www.linuxfoundation.org/collaborate/workgroups/networking/iproute2" WGET_URL="http://kernel.org/pub/linux/utils/net/$PACKAGE/$TARBALL" -TAGS="network route" -DEPENDS="iptables db" -BUILD_DEPENDS="bison flex iptables-dev db-dev libnl-dev" +DEPENDS="db iptables" +BUILD_DEPENDS="bison db-dev flex iptables-dev libmnl-dev libnl-dev" # Rules to configure and make the package. compile_rules() { - cd $src - sed -i 's//\n#include /' ip/link_gre.c - ./configure --prefix=/usr && \ - make && \ - make DESTDIR=$DESTDIR install + sed -i 's//\n#include /' \ + ip/link_gre.c + + ./configure \ + --prefix=/usr \ + $CONFIGURE_ARGS && + make && + make DESTDIR=$DESTDIR install } # Rules to gen a SliTaz package suitable for Tazpkg. genpkg_rules() { mkdir -p $fs/bin - cp -a $install/usr $fs/ - cp -a $install/etc $fs/ - cp -a $install/var $fs/ - cp -a $install/sbin $fs/ + + cp -a $install/usr $fs + cp -a $install/etc $fs + cp -a $install/var $fs + cp -a $install/sbin $fs ln $fs/sbin/ip $fs/sbin/ss /$fs/bin/ }