mirror of
https://github.com/Ponce/slackbuilds
synced 2024-11-21 19:42:24 +01:00
network/ipcalc: Added to 12.1 repository
This commit is contained in:
parent
6263b72c50
commit
7b4ac67b34
4 changed files with 89 additions and 0 deletions
4
network/ipcalc/README
Normal file
4
network/ipcalc/README
Normal file
|
@ -0,0 +1,4 @@
|
|||
ipcalc takes an IP address and netmask and calculates the resulting broadcast,
|
||||
network, Cisco wildcard mask, and host range. By giving a second netmask, you
|
||||
can design sub- and supernetworks. It is also intended to be a teaching tool
|
||||
and presents the results as easy-to-understand binary values.
|
66
network/ipcalc/ipcalc.SlackBuild
Normal file
66
network/ipcalc/ipcalc.SlackBuild
Normal file
|
@ -0,0 +1,66 @@
|
|||
#!/bin/sh
|
||||
|
||||
# Slackware build script for ipcalc
|
||||
|
||||
# Copyright 2006-2008 Vincent Batts, vbatts@hashbangbash.com, http://hashbangbash.com/
|
||||
# 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=ipcalc
|
||||
VERSION=0.41
|
||||
ARCH=noarch
|
||||
BUILD=${BUILD:-2}
|
||||
TAG=${TAG:-_SBo}
|
||||
|
||||
CGIBINDIR=${CGIBINDIR:-/var/www/cgi-bin}
|
||||
|
||||
CWD=$(pwd)
|
||||
TMP=${TMP:-/tmp/SBo}
|
||||
PKG=$TMP/package-$PRGNAM
|
||||
OUTPUT=${OUTPUT:-/tmp}
|
||||
|
||||
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 . \
|
||||
\( -perm 777 -o -perm 775 -o -perm 711 -o -perm 555 -o -perm 511 \) \
|
||||
-exec chmod 755 {} \; -o \
|
||||
\( -perm 666 -o -perm 664 -o -perm 600 -o -perm 444 -o -perm 440 -o -perm 400 \) \
|
||||
-exec chmod 644 {} \;
|
||||
|
||||
mkdir -p $PKG/usr/bin $PKG/${CGIBINDIR}
|
||||
cp -a ipcalc $PKG/usr/bin/
|
||||
sed 's|/usr/local|/usr|g' ipcalc.cgi > $PKG/${CGIBINDIR}/ipcalc.cgi
|
||||
chmod 0755 $PKG/${CGIBINDIR}/ipcalc.cgi
|
||||
|
||||
mkdir -p $PKG/usr/doc/$PRGNAM-$VERSION
|
||||
cp -a changelog contributors license $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.tgz
|
8
network/ipcalc/ipcalc.info
Normal file
8
network/ipcalc/ipcalc.info
Normal file
|
@ -0,0 +1,8 @@
|
|||
PRGNAM="ipcalc"
|
||||
VERSION="0.41"
|
||||
HOMEPAGE="http://jodies.de/ipcalc"
|
||||
DOWNLOAD="http://jodies.de/ipcalc-archive/ipcalc-0.41.tar.gz"
|
||||
MD5SUM="fb791e9a5220fc8e624d915e18fc4697"
|
||||
MAINTAINER="Vincent Batts"
|
||||
EMAIL="vbatts@batts.mine.nu"
|
||||
APPROVED="rworkman"
|
11
network/ipcalc/slack-desc
Normal file
11
network/ipcalc/slack-desc
Normal file
|
@ -0,0 +1,11 @@
|
|||
ipcalc: ipcalc - An IP Netmask/broadcast/etc calculator
|
||||
ipcalc:
|
||||
ipcalc: ipcalc takes an IP address and netmask and calculates
|
||||
ipcalc: the resulting broadcast, network, Cisco wildcard mask,
|
||||
ipcalc: and host range. By giving a second netmask, you can
|
||||
ipcalc: design sub- and supernetworks. It is also intended to
|
||||
ipcalc: be a teaching tool and presents the results as
|
||||
ipcalc: easy-to-understand binary values.
|
||||
ipcalc:
|
||||
ipcalc:
|
||||
ipcalc:
|
Loading…
Reference in a new issue