From dc25f3e8b2a28216646cbd7e80ffa4b8f9bcdcf0 Mon Sep 17 00:00:00 2001 From: Mario Preksavec Date: Thu, 10 Dec 2020 10:52:30 +0100 Subject: network/fping3: Renamed to 'fping' and updated for version 5.0. Signed-off-by: Mario Preksavec Signed-off-by: Willy Sudiarto Raharjo --- network/fping/README | 7 +++ network/fping/fping.SlackBuild | 103 +++++++++++++++++++++++++++++++++++++++ network/fping/fping.info | 10 ++++ network/fping/slack-desc | 19 ++++++++ network/fping3/README | 7 --- network/fping3/fping3.SlackBuild | 103 --------------------------------------- network/fping3/fping3.info | 10 ---- network/fping3/slack-desc | 19 -------- 8 files changed, 139 insertions(+), 139 deletions(-) create mode 100644 network/fping/README create mode 100644 network/fping/fping.SlackBuild create mode 100644 network/fping/fping.info create mode 100644 network/fping/slack-desc delete mode 100644 network/fping3/README delete mode 100644 network/fping3/fping3.SlackBuild delete mode 100644 network/fping3/fping3.info delete mode 100644 network/fping3/slack-desc diff --git a/network/fping/README b/network/fping/README new file mode 100644 index 0000000000000..1fa2dc57cbc1c --- /dev/null +++ b/network/fping/README @@ -0,0 +1,7 @@ +fping (send ICMP ECHO_REQUEST packets to network hosts) + +fping is a program to send ICMP echo probes to network hosts, similar to ping, +but much better performing when pinging multiple hosts. + +NOTE: Old fping and fping6 packages are no longer needed, and should probably +be removed before installing this one. diff --git a/network/fping/fping.SlackBuild b/network/fping/fping.SlackBuild new file mode 100644 index 0000000000000..070a4beda978e --- /dev/null +++ b/network/fping/fping.SlackBuild @@ -0,0 +1,103 @@ +#!/bin/sh + +# Slackware build script for fping + +# Copyright 2015, 2016, 2020 Mario Preksavec, Zagreb, Croatia +# All rights reserved. +# +# Redistribution and use of this script, with or without modification, is +# permitted provided that the following conditions are met: +# +# 1. Redistributions of this script must retain the above copyright +# notice, this list of conditions and the following disclaimer. +# +# THIS SOFTWARE IS PROVIDED BY THE AUTHOR "AS IS" AND ANY EXPRESS OR IMPLIED +# WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF +# MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO +# EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, +# SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, +# PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; +# OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, +# WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR +# OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF +# ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. + +PRGNAM=fping +VERSION=${VERSION:-5.0} +BUILD=${BUILD:-1} +TAG=${TAG:-_SBo} + +if [ -z "$ARCH" ]; then + case "$( uname -m )" in + i?86) ARCH=i486 ;; + arm*) ARCH=arm ;; + *) ARCH=$( uname -m ) ;; + esac +fi + +CWD=$(pwd) +TMP=${TMP:-/tmp/SBo} +PKG=$TMP/package-$PRGNAM +OUTPUT=${OUTPUT:-/tmp} + +if [ "$ARCH" = "i486" ]; then + SLKCFLAGS="-O2 -march=i486 -mtune=i686" + LIBDIRSUFFIX="" +elif [ "$ARCH" = "i686" ]; then + SLKCFLAGS="-O2 -march=i686 -mtune=i686" + LIBDIRSUFFIX="" +elif [ "$ARCH" = "x86_64" ]; then + SLKCFLAGS="-O2 -fPIC" + LIBDIRSUFFIX="64" +else + SLKCFLAGS="-O2" + LIBDIRSUFFIX="" +fi + +set -e + +rm -rf $PKG +mkdir -p $TMP $PKG $OUTPUT +cd $TMP +rm -rf $PRGNAM-$VERSION +tar xvf $CWD/$PRGNAM-$VERSION.tar.gz +cd $PRGNAM-$VERSION +chown -R root:root . +find -L . \ + \( -perm 777 -o -perm 775 -o -perm 750 -o -perm 711 -o -perm 555 \ + -o -perm 511 \) -exec chmod 755 {} \; -o \ + \( -perm 666 -o -perm 664 -o -perm 640 -o -perm 600 -o -perm 444 \ + -o -perm 440 -o -perm 400 \) -exec chmod 644 {} \; + +CFLAGS="$SLKCFLAGS" \ +CXXFLAGS="$SLKCFLAGS" \ +./configure \ + --prefix=/usr \ + --libdir=/usr/lib${LIBDIRSUFFIX} \ + --sysconfdir=/etc \ + --localstatedir=/var \ + --mandir=/usr/man \ + --docdir=/usr/doc/$PRGNAM-$VERSION \ + --enable-ipv4 \ + --enable-ipv6 \ + --build=$ARCH-slackware-linux + +make +make install DESTDIR=$PKG + +find $PKG -print0 | xargs -0 file | grep -e "executable" -e "shared object" | grep ELF \ + | cut -f 1 -d : | xargs strip --strip-unneeded 2> /dev/null || true + +find $PKG/usr/man -type f -exec gzip -9 {} \; +for i in $( find $PKG/usr/man -type l ) ; do ln -s $( readlink $i ).gz $i.gz ; rm $i ; done + +mkdir -p $PKG/usr/doc/$PRGNAM-$VERSION +cp -a CHANGELOG.md COPYING INSTALL README.md doc/README.1992 \ + $PKG/usr/doc/$PRGNAM-$VERSION +cat $CWD/$PRGNAM.SlackBuild > $PKG/usr/doc/$PRGNAM-$VERSION/$PRGNAM.SlackBuild + +mkdir -p $PKG/install +cat $CWD/slack-desc > $PKG/install/slack-desc + +cd $PKG +/sbin/makepkg -l y -c n $OUTPUT/$PRGNAM-$VERSION-$ARCH-$BUILD$TAG.${PKGTYPE:-tgz} diff --git a/network/fping/fping.info b/network/fping/fping.info new file mode 100644 index 0000000000000..883aa407299cb --- /dev/null +++ b/network/fping/fping.info @@ -0,0 +1,10 @@ +PRGNAM="fping" +VERSION="5.0" +HOMEPAGE="http://fping.org/" +DOWNLOAD="http://fping.org/dist/fping-5.0.tar.gz" +MD5SUM="6af4c39bf012af75f93983d0efa242b0" +DOWNLOAD_x86_64="" +MD5SUM_x86_64="" +REQUIRES="" +MAINTAINER="Mario Preksavec" +EMAIL="mario at slackware dot hr" diff --git a/network/fping/slack-desc b/network/fping/slack-desc new file mode 100644 index 0000000000000..4fb3962c17fd4 --- /dev/null +++ b/network/fping/slack-desc @@ -0,0 +1,19 @@ +# HOW TO EDIT THIS FILE: +# The "handy ruler" below makes it easier to edit a package description. +# Line up the first '|' above the ':' following the base package name, and +# the '|' on the right side marks the last column you can put a character in. +# You must make exactly 11 lines for the formatting to be correct. It's also +# customary to leave one space after the ':' except on otherwise blank lines. + + |-----handy-ruler------------------------------------------------------| +fping: fping (send ICMP ECHO_REQUEST packets to network hosts) +fping: +fping: fping is a program to send ICMP echo probes to network hosts, similar +fping: to ping, but much better performing when pinging multiple hosts. +fping: +fping: Homepage: http://fping.org/ +fping: +fping: +fping: +fping: +fping: diff --git a/network/fping3/README b/network/fping3/README deleted file mode 100644 index 8370986017152..0000000000000 --- a/network/fping3/README +++ /dev/null @@ -1,7 +0,0 @@ -fping3 (send ICMP ECHO_REQUEST packets to network hosts) - -fping is a program to send ICMP echo probes to network hosts, similar to ping, -but much better performing when pinging multiple hosts. - -NOTE: Old fping and fping6 packages are no longer needed, and should probably -be removed before installing this one. diff --git a/network/fping3/fping3.SlackBuild b/network/fping3/fping3.SlackBuild deleted file mode 100644 index 06fe8076bc7e4..0000000000000 --- a/network/fping3/fping3.SlackBuild +++ /dev/null @@ -1,103 +0,0 @@ -#!/bin/sh - -# Slackware build script for fping3 - -# Copyright 2015, 2016 Mario Preksavec, Zagreb, Croatia -# All rights reserved. -# -# Redistribution and use of this script, with or without modification, is -# permitted provided that the following conditions are met: -# -# 1. Redistributions of this script must retain the above copyright -# notice, this list of conditions and the following disclaimer. -# -# THIS SOFTWARE IS PROVIDED BY THE AUTHOR "AS IS" AND ANY EXPRESS OR IMPLIED -# WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF -# MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO -# EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -# SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, -# PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; -# OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, -# WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR -# OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF -# ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - -PRGNAM=fping3 -SRCNAM=fping -VERSION=${VERSION:-3.13} -BUILD=${BUILD:-1} -TAG=${TAG:-_SBo} - -if [ -z "$ARCH" ]; then - case "$( uname -m )" in - i?86) ARCH=i486 ;; - arm*) ARCH=arm ;; - *) ARCH=$( uname -m ) ;; - esac -fi - -CWD=$(pwd) -TMP=${TMP:-/tmp/SBo} -PKG=$TMP/package-$PRGNAM -OUTPUT=${OUTPUT:-/tmp} - -if [ "$ARCH" = "i486" ]; then - SLKCFLAGS="-O2 -march=i486 -mtune=i686" - LIBDIRSUFFIX="" -elif [ "$ARCH" = "i686" ]; then - SLKCFLAGS="-O2 -march=i686 -mtune=i686" - LIBDIRSUFFIX="" -elif [ "$ARCH" = "x86_64" ]; then - SLKCFLAGS="-O2 -fPIC" - LIBDIRSUFFIX="64" -else - SLKCFLAGS="-O2" - LIBDIRSUFFIX="" -fi - -set -e - -rm -rf $PKG -mkdir -p $TMP $PKG $OUTPUT -cd $TMP -rm -rf $PRGNAM-$VERSION -tar xvf $CWD/$SRCNAM-$VERSION.tar.gz -cd $SRCNAM-$VERSION -chown -R root:root . -find -L . \ - \( -perm 777 -o -perm 775 -o -perm 750 -o -perm 711 -o -perm 555 \ - -o -perm 511 \) -exec chmod 755 {} \; -o \ - \( -perm 666 -o -perm 664 -o -perm 640 -o -perm 600 -o -perm 444 \ - -o -perm 440 -o -perm 400 \) -exec chmod 644 {} \; - -CFLAGS="$SLKCFLAGS" \ -CXXFLAGS="$SLKCFLAGS" \ -./configure \ - --prefix=/usr \ - --libdir=/usr/lib${LIBDIRSUFFIX} \ - --sysconfdir=/etc \ - --localstatedir=/var \ - --mandir=/usr/man \ - --docdir=/usr/doc/$PRGNAM-$VERSION \ - --enable-ipv4 \ - --enable-ipv6 \ - --build=$ARCH-slackware-linux - -make -make install DESTDIR=$PKG - -find $PKG -print0 | xargs -0 file | grep -e "executable" -e "shared object" | grep ELF \ - | cut -f 1 -d : | xargs strip --strip-unneeded 2> /dev/null || true - -find $PKG/usr/man -type f -exec gzip -9 {} \; -for i in $( find $PKG/usr/man -type l ) ; do ln -s $( readlink $i ).gz $i.gz ; rm $i ; done - -mkdir -p $PKG/usr/doc/$PRGNAM-$VERSION -cp -a COPYING ChangeLog INSTALL README doc/README.1992 $PKG/usr/doc/$PRGNAM-$VERSION -cat $CWD/$PRGNAM.SlackBuild > $PKG/usr/doc/$PRGNAM-$VERSION/$PRGNAM.SlackBuild - -mkdir -p $PKG/install -cat $CWD/slack-desc > $PKG/install/slack-desc - -cd $PKG -/sbin/makepkg -l y -c n $OUTPUT/$PRGNAM-$VERSION-$ARCH-$BUILD$TAG.${PKGTYPE:-tgz} diff --git a/network/fping3/fping3.info b/network/fping3/fping3.info deleted file mode 100644 index 6f597a3c17d88..0000000000000 --- a/network/fping3/fping3.info +++ /dev/null @@ -1,10 +0,0 @@ -PRGNAM="fping3" -VERSION="3.13" -HOMEPAGE="http://fping.org/" -DOWNLOAD="http://fping.org/dist/fping-3.13.tar.gz" -MD5SUM="a39134baca6bc6ced56191cb51fb0dc2" -DOWNLOAD_x86_64="" -MD5SUM_x86_64="" -REQUIRES="" -MAINTAINER="Mario Preksavec" -EMAIL="mario at slackware dot hr" diff --git a/network/fping3/slack-desc b/network/fping3/slack-desc deleted file mode 100644 index e65a12eed9eed..0000000000000 --- a/network/fping3/slack-desc +++ /dev/null @@ -1,19 +0,0 @@ -# HOW TO EDIT THIS FILE: -# The "handy ruler" below makes it easier to edit a package description. -# Line up the first '|' above the ':' following the base package name, and -# the '|' on the right side marks the last column you can put a character in. -# You must make exactly 11 lines for the formatting to be correct. It's also -# customary to leave one space after the ':' except on otherwise blank lines. - - |-----handy-ruler------------------------------------------------------| -fping3: fping3 (send ICMP ECHO_REQUEST packets to network hosts) -fping3: -fping3: fping is a program to send ICMP echo probes to network hosts, similar -fping3: to ping, but much better performing when pinging multiple hosts. -fping3: -fping3: Homepage: http://fping.org/ -fping3: -fping3: -fping3: -fping3: -fping3: -- cgit v1.2.3