mirror of
https://github.com/Ponce/slackbuilds
synced 2024-11-24 10:02:29 +01:00
network/fping6: Added to 13.0 repository
This commit is contained in:
parent
8abd0e6e13
commit
e54a45f976
7 changed files with 144 additions and 0 deletions
4
network/fping6/README
Normal file
4
network/fping6/README
Normal file
|
@ -0,0 +1,4 @@
|
||||||
|
fping is a ping(1) like program which uses the Internet Control Message
|
||||||
|
Protocol (ICMP) echo request to determine if a host is up. fping is
|
||||||
|
different from ping in that you can specify any number of hosts on the
|
||||||
|
command line, or specify a file containing the lists of hosts to ping.
|
6
network/fping6/README.SLACKWARE
Normal file
6
network/fping6/README.SLACKWARE
Normal file
|
@ -0,0 +1,6 @@
|
||||||
|
The download link points to Debian server, as the package on the original site
|
||||||
|
actually is missing IPv6 support - while it claims to be version 2.4b2_to-ipv6,
|
||||||
|
it's actually 2.4b2_to.
|
||||||
|
Additionally, patches from Debian are applied to make IPv6 compile time flag,
|
||||||
|
introduce source IP support, improve manpage and other things.
|
||||||
|
To avoid conflicts with standard fping, this version is installed as fping6.
|
BIN
network/fping6/fping.8.diff.gz
Normal file
BIN
network/fping6/fping.8.diff.gz
Normal file
Binary file not shown.
BIN
network/fping6/fping.c.diff.gz
Normal file
BIN
network/fping6/fping.c.diff.gz
Normal file
Binary file not shown.
104
network/fping6/fping6.SlackBuild
Normal file
104
network/fping6/fping6.SlackBuild
Normal file
|
@ -0,0 +1,104 @@
|
||||||
|
#!/bin/sh
|
||||||
|
|
||||||
|
# Slackware build script for fping with IPv6 and source IP setting
|
||||||
|
# support
|
||||||
|
# Copyright (c) 2008, Written by Mark Walling <mark@markwalling.org>
|
||||||
|
# IPv6 modifications by Richlv
|
||||||
|
|
||||||
|
# All rights reserved.
|
||||||
|
#
|
||||||
|
# Redistribution and use in source and binary forms, with or without
|
||||||
|
# modification, are permitted provided that the following conditions are
|
||||||
|
# met:
|
||||||
|
#
|
||||||
|
# * Redistributions of source code must retain the above copyright
|
||||||
|
# notice, this list of conditions and the following disclaimer.
|
||||||
|
#
|
||||||
|
# THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
|
||||||
|
# "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 COPYRIGHT
|
||||||
|
# OWNER OR CONTRIBUTORS 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=fping6
|
||||||
|
VERSION=2.4b2_to_ipv6
|
||||||
|
ARCH=${ARCH:-i486}
|
||||||
|
BUILD=${BUILD:-1}
|
||||||
|
TAG=${TAG:-_SBo}
|
||||||
|
|
||||||
|
CWD=$(pwd)
|
||||||
|
TMP=${TMP:-/tmp/SBo}
|
||||||
|
PKG=$TMP/package-$PRGNAM
|
||||||
|
OUTPUT=${OUTPUT:-/tmp}
|
||||||
|
|
||||||
|
PRGNAM_ARCHIVE=fping
|
||||||
|
VERSION_ARCHIVE=2.4b2-to-ipv6
|
||||||
|
VERSION_SOURCE=2.4b2_to-ipv6
|
||||||
|
|
||||||
|
if [ "$ARCH" = "i486" ]; then
|
||||||
|
SLKCFLAGS="-O2 -march=i486 -mtune=i686 -DIPV6=1"
|
||||||
|
LIBDIRSUFFIX=""
|
||||||
|
elif [ "$ARCH" = "i686" ]; then
|
||||||
|
SLKCFLAGS="-O2 -march=i686 -mtune=i686 -DIPV6=1"
|
||||||
|
LIBDIRSUFFIX=""
|
||||||
|
elif [ "$ARCH" = "x86_64" ]; then
|
||||||
|
SLKCFLAGS="-O2 -fPIC -DIPV6=1"
|
||||||
|
LIBDIRSUFFIX="64"
|
||||||
|
fi
|
||||||
|
|
||||||
|
set -e
|
||||||
|
|
||||||
|
rm -rf $PKG
|
||||||
|
mkdir -p $TMP $PKG $OUTPUT
|
||||||
|
cd $TMP
|
||||||
|
rm -rf $PRGNAM-$VERSION
|
||||||
|
tar -xvf $CWD/${PRGNAM_ARCHIVE}_$VERSION_ARCHIVE.orig.tar.gz
|
||||||
|
cd ${PRGNAM_ARCHIVE}-$VERSION_SOURCE
|
||||||
|
chown -R root:root .
|
||||||
|
chmod -R u+w,go+r-w,a-s .
|
||||||
|
|
||||||
|
zcat $CWD/fping.c.diff.gz | patch || exit
|
||||||
|
zcat $CWD/fping.8.diff.gz | patch || exit
|
||||||
|
|
||||||
|
CFLAGS="$SLKCFLAGS" \
|
||||||
|
CXXFLAGS="$SLKCFLAGS" \
|
||||||
|
./configure \
|
||||||
|
--prefix=/usr \
|
||||||
|
--libdir=/usr/lib${LIBDIRSUFFIX} \
|
||||||
|
--sysconfdir=/etc \
|
||||||
|
--localstatedir=/var \
|
||||||
|
--mandir=/usr/man
|
||||||
|
|
||||||
|
make
|
||||||
|
make install DESTDIR=$PKG
|
||||||
|
|
||||||
|
( cd $PKG
|
||||||
|
find . | xargs file | grep "executable" | grep ELF | cut -f 1 -d : | \
|
||||||
|
xargs strip --strip-unneeded 2> /dev/null || true
|
||||||
|
find . | xargs file | grep "shared object" | grep ELF | cut -f 1 -d : | \
|
||||||
|
xargs strip --strip-unneeded 2> /dev/null || true
|
||||||
|
)
|
||||||
|
|
||||||
|
mv $PKG/usr/man/man8/$PRGNAM_ARCHIVE.8 $PKG/usr/man/man8/$PRGNAM.8
|
||||||
|
mv $PKG/usr/sbin/$PRGNAM_ARCHIVE $PKG/usr/sbin/$PRGNAM
|
||||||
|
|
||||||
|
( cd $PKG/usr/man
|
||||||
|
find . -type f -exec gzip -9 {} \;
|
||||||
|
for i in $( find . -type l ) ; do ln -s $( readlink $i ).gz $i.gz ; rm $i ; done
|
||||||
|
)
|
||||||
|
|
||||||
|
mkdir -p $PKG/usr/doc/$PRGNAM-$VERSION
|
||||||
|
cp -a COPYING ChangeLog README INSTALL $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}
|
10
network/fping6/fping6.info
Normal file
10
network/fping6/fping6.info
Normal file
|
@ -0,0 +1,10 @@
|
||||||
|
PRGNAM="fping6"
|
||||||
|
VERSION="2.4b2_to-ipv6"
|
||||||
|
HOMEPAGE="http://www.fping.com"
|
||||||
|
DOWNLOAD="http://ftp.de.debian.org/debian/pool/main/f/fping/fping_2.4b2-to-ipv6.orig.tar.gz"
|
||||||
|
DOWNLOAD_x86_64=""
|
||||||
|
MD5SUM="3ad516765514249a40d3c5b6caab812a"
|
||||||
|
MD5SUM_x86_64=""
|
||||||
|
MAINTAINER="Richlv"
|
||||||
|
EMAIL="richlv@nakts.net"
|
||||||
|
APPROVED="dsomero"
|
20
network/fping6/slack-desc
Normal file
20
network/fping6/slack-desc
Normal file
|
@ -0,0 +1,20 @@
|
||||||
|
# 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 ':'.
|
||||||
|
|
||||||
|
|-----handy-ruler--------------------------------------------------------|
|
||||||
|
fping6: fping6 (a ping like program to send ICMP echo requests to IPv6 hosts)
|
||||||
|
fping6:
|
||||||
|
fping6: fping6 is a ping(1) like program which uses the Internet Control
|
||||||
|
fping6: Message Protocol (ICMP) echo request to determine if a host is up.
|
||||||
|
fping6: fping6 is different from ping in that you can specify any number of
|
||||||
|
fping6: hosts on the command line, or specify a file containing the lists of
|
||||||
|
fping6: hosts to ping.
|
||||||
|
fping6: This version of fping is compiled with IPv6 support, and additional
|
||||||
|
fping6: changes from Debian patch (including source address support).
|
||||||
|
fping6:
|
||||||
|
fping6: http://www.fping.com/
|
||||||
|
fping6: http://packages.debian.org/sid/fping
|
Loading…
Reference in a new issue