diff options
author | Richlv <richlv@nakts.net> | 2010-05-13 00:59:58 +0200 |
---|---|---|
committer | David Somero <xgizzmo@slackbuilds.org> | 2010-05-13 00:59:58 +0200 |
commit | e54a45f97664df2023cf9303579690cd5e75f77b (patch) | |
tree | 535fe65b61c59681f5b2c26f87c6824a24650cbb /network/fping6 | |
parent | 8abd0e6e133f7a54bca7a2c5e6eca76bd77f5be9 (diff) | |
download | slackbuilds-e54a45f97664df2023cf9303579690cd5e75f77b.tar.gz |
network/fping6: Added to 13.0 repository
Diffstat (limited to 'network/fping6')
-rw-r--r-- | network/fping6/README | 4 | ||||
-rw-r--r-- | network/fping6/README.SLACKWARE | 6 | ||||
-rw-r--r-- | network/fping6/fping.8.diff.gz | bin | 0 -> 813 bytes | |||
-rw-r--r-- | network/fping6/fping.c.diff.gz | bin | 0 -> 4111 bytes | |||
-rw-r--r-- | network/fping6/fping6.SlackBuild | 104 | ||||
-rw-r--r-- | network/fping6/fping6.info | 10 | ||||
-rw-r--r-- | network/fping6/slack-desc | 20 |
7 files changed, 144 insertions, 0 deletions
diff --git a/network/fping6/README b/network/fping6/README new file mode 100644 index 0000000000..f989e116d1 --- /dev/null +++ b/network/fping6/README @@ -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. diff --git a/network/fping6/README.SLACKWARE b/network/fping6/README.SLACKWARE new file mode 100644 index 0000000000..b6e36445f0 --- /dev/null +++ b/network/fping6/README.SLACKWARE @@ -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. diff --git a/network/fping6/fping.8.diff.gz b/network/fping6/fping.8.diff.gz Binary files differnew file mode 100644 index 0000000000..2c37b3f0c9 --- /dev/null +++ b/network/fping6/fping.8.diff.gz diff --git a/network/fping6/fping.c.diff.gz b/network/fping6/fping.c.diff.gz Binary files differnew file mode 100644 index 0000000000..26c053c9c0 --- /dev/null +++ b/network/fping6/fping.c.diff.gz diff --git a/network/fping6/fping6.SlackBuild b/network/fping6/fping6.SlackBuild new file mode 100644 index 0000000000..4f22991fc6 --- /dev/null +++ b/network/fping6/fping6.SlackBuild @@ -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} diff --git a/network/fping6/fping6.info b/network/fping6/fping6.info new file mode 100644 index 0000000000..fb04db67ee --- /dev/null +++ b/network/fping6/fping6.info @@ -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" diff --git a/network/fping6/slack-desc b/network/fping6/slack-desc new file mode 100644 index 0000000000..19be9845ba --- /dev/null +++ b/network/fping6/slack-desc @@ -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 |