From 7b4ac67b344d0e4fbc7f863844c26784e31e04fb Mon Sep 17 00:00:00 2001 From: Vincent Batts Date: Tue, 11 May 2010 22:54:49 +0200 Subject: network/ipcalc: Added to 12.1 repository --- network/ipcalc/README | 4 +++ network/ipcalc/ipcalc.SlackBuild | 66 ++++++++++++++++++++++++++++++++++++++++ network/ipcalc/ipcalc.info | 8 +++++ network/ipcalc/slack-desc | 11 +++++++ 4 files changed, 89 insertions(+) create mode 100644 network/ipcalc/README create mode 100644 network/ipcalc/ipcalc.SlackBuild create mode 100644 network/ipcalc/ipcalc.info create mode 100644 network/ipcalc/slack-desc (limited to 'network/ipcalc') diff --git a/network/ipcalc/README b/network/ipcalc/README new file mode 100644 index 0000000000..93860e8cac --- /dev/null +++ b/network/ipcalc/README @@ -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. diff --git a/network/ipcalc/ipcalc.SlackBuild b/network/ipcalc/ipcalc.SlackBuild new file mode 100644 index 0000000000..4364207794 --- /dev/null +++ b/network/ipcalc/ipcalc.SlackBuild @@ -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 diff --git a/network/ipcalc/ipcalc.info b/network/ipcalc/ipcalc.info new file mode 100644 index 0000000000..2f775be642 --- /dev/null +++ b/network/ipcalc/ipcalc.info @@ -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" diff --git a/network/ipcalc/slack-desc b/network/ipcalc/slack-desc new file mode 100644 index 0000000000..04f968168f --- /dev/null +++ b/network/ipcalc/slack-desc @@ -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: -- cgit v1.2.3