From 819a1f0296029fb2ab22fbeaae8ed264c5a8f957 Mon Sep 17 00:00:00 2001 From: Pierre Cazenave Date: Wed, 12 May 2010 23:32:34 +0200 Subject: network/netcat: Added to 12.2 repository --- network/netcat/README | 8 ++++ network/netcat/netcat.SlackBuild | 100 +++++++++++++++++++++++++++++++++++++++ network/netcat/netcat.info | 8 ++++ network/netcat/slack-desc | 19 ++++++++ 4 files changed, 135 insertions(+) create mode 100644 network/netcat/README create mode 100644 network/netcat/netcat.SlackBuild create mode 100644 network/netcat/netcat.info create mode 100644 network/netcat/slack-desc diff --git a/network/netcat/README b/network/netcat/README new file mode 100644 index 0000000000..ae3a8f1d03 --- /dev/null +++ b/network/netcat/README @@ -0,0 +1,8 @@ +GNU Netcat is a featured networking utility which reads and writes data +across network connections, using the TCP/IP protocol. + +It is designed to be a reliable "back-end" tool that can be used directly +or easily driven by other programs and scripts. At the same time, it is a +feature-rich network debugging and exploration tool, since it can create +almost any kind of connection you would need and has several interesting +built-in capabilities. diff --git a/network/netcat/netcat.SlackBuild b/network/netcat/netcat.SlackBuild new file mode 100644 index 0000000000..e2a0582bf5 --- /dev/null +++ b/network/netcat/netcat.SlackBuild @@ -0,0 +1,100 @@ +#!/bin/sh + +# SlackBuild script for netcat. +# +# Copyright 2009 Pierre Cazenave +# 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=netcat +VERSION=0.7.1 +ARCH=${ARCH:-i486} +BUILD=${BUILD:-1} +TAG=${TAG:-_SBo} + +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" +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 . +chmod -R u+w,go+r-w,a-s . + +CFLAGS="$SLKCFLAGS" \ +CXXFLAGS="$SLKCFLAGS" \ +./configure \ + --prefix=/usr \ + --libdir=/usr/lib${LIBDIRSUFFIX} \ + --sysconfdir=/etc \ + --localstatedir=/var \ + --mandir=/usr/man \ + --build=$ARCH-slackware-linux + +make +make install DESTDIR=$PKG + +# Remove the symlink to nc as it conflicts with Slackware's nc package +( cd $PKG/usr/bin ; rm -f nc ) + +find $PKG | xargs file | grep -e "executable" -e "shared object" | grep ELF \ + | cut -f 1 -d : | xargs strip --strip-unneeded 2> /dev/null || true + +# Compress man pages +( cd $PKG/usr/man || exit 1 + find . -type f -exec gzip -9 {} \; + for i in $( find . -type l ) ; do + ln -s $( readlink $i ).gz $i.gz + rm $i + done +) + +rm -f $PKG/usr/info/dir +gzip -9 $PKG/usr/info/* + +mkdir -p $PKG/usr/doc/$PRGNAM-$VERSION +cp -a \ + ABOUT-NLS AUTHORS COPYING ChangeLog INSTALL NEWS README TODO \ + $PKG/usr/doc/$PRGNAM-$VERSION +cat $CWD/$PRGNAM.SlackBuild > $PKG/usr/doc/$PRGNAM-$VERSION/$PRGNAM.SlackBuild +find $PKG/usr/doc/$PRGNAM-$VERSION -type f -exec chmod 644 {} \; + +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/netcat/netcat.info b/network/netcat/netcat.info new file mode 100644 index 0000000000..a719dadb5e --- /dev/null +++ b/network/netcat/netcat.info @@ -0,0 +1,8 @@ +PRGNAM="netcat" +VERSION="0.7.1" +HOMEPAGE="http://netcat.sourceforge.net/" +DOWNLOAD="ftp://heanet.dl.sourceforge.net/pub/download.sourceforge.net/pub/sourceforge/n/ne/netcat/netcat-0.7.1.tar.gz" +MD5SUM="088def25efe04dcdd1f8369d8926ab34" +MAINTAINER="Pierre Cazenave" +EMAIL="pwcazenave gmail {dot} com" +APPROVED="dsomero" diff --git a/network/netcat/slack-desc b/network/netcat/slack-desc new file mode 100644 index 0000000000..81b8475fc4 --- /dev/null +++ b/network/netcat/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 ':'. + + |-----handy-ruler------------------------------------------------------| +netcat: GNU netcat (reads and writes data across network connections) +netcat: +netcat: Netcat is a featured networking utility which reads and writes data +netcat: across network connections, using the TCP/IP protocol. +netcat: It is designed to be a reliable "back-end" tool that can be used +netcat: directly or easily driven by other programs and scripts. At the same +netcat: time, it is a feature-rich network debugging and exploration tool, +netcat: since it can create almost any kind of connection you would need and +netcat: has several interesting built-in capabilities. +netcat: +netcat: http://netcat.sourceforge.net/ -- cgit v1.2.3-80-g2a13