From 5641da4c49207cd86e0518842a83d8f32334fe59 Mon Sep 17 00:00:00 2001 From: "Murat D. Kadirov" Date: Tue, 11 May 2010 22:55:03 +0200 Subject: network/tunctl: Added to 12.1 repository --- network/tunctl/README | 4 +++ network/tunctl/slack-desc | 19 ++++++++++++++ network/tunctl/tunctl.SlackBuild | 56 ++++++++++++++++++++++++++++++++++++++++ network/tunctl/tunctl.info | 8 ++++++ 4 files changed, 87 insertions(+) create mode 100644 network/tunctl/README create mode 100644 network/tunctl/slack-desc create mode 100644 network/tunctl/tunctl.SlackBuild create mode 100644 network/tunctl/tunctl.info diff --git a/network/tunctl/README b/network/tunctl/README new file mode 100644 index 0000000000..86724ecd5e --- /dev/null +++ b/network/tunctl/README @@ -0,0 +1,4 @@ +tunctl is used to set up and maintain persistent TUN/TAP network interfaces, +enabling user applications to simulate network traffic. Such interfaces +is useful for VPN software, virtualization, emulation, simulation, and a +number of other applications. diff --git a/network/tunctl/slack-desc b/network/tunctl/slack-desc new file mode 100644 index 0000000000..0b76b29ba8 --- /dev/null +++ b/network/tunctl/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------------------------------------------------| +tunctl: tunctl (tool for controlling the TUN/TAP driver in Linux) +tunctl: +tunctl: tunctl is used to set up and maintain persistent TUN/TAP +tunctl: network interfaces, enabling user applications to simulate +tunctl: network traffic. Such interfaces is useful for VPN software, +tunctl: virtualization, emulation, simulation, and a number of other +tunctl: applications. +tunctl: +tunctl: +tunctl: +tunctl: diff --git a/network/tunctl/tunctl.SlackBuild b/network/tunctl/tunctl.SlackBuild new file mode 100644 index 0000000000..c17d39a8cf --- /dev/null +++ b/network/tunctl/tunctl.SlackBuild @@ -0,0 +1,56 @@ +#!/bin/sh + +# Slackware build script for tunctl + +# Written by Murat D. Kadirov + +PRGNAM=tunctl +VERSION=${VERSION:-1.5} +ARCH=${ARCH:-i486} +BUILD=${BUILD:-1} +TAG=${TAG:-_SBo} + +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 {} \; + +make +make install DESTDIR=$PKG + +mkdir -p $PKG/usr/doc/$PRGNAM-$VERSION +cat $CWD/$PRGNAM.SlackBuild > $PKG/usr/doc/$PRGNAM-$VERSION/$PRGNAM.SlackBuild +cat $CWD/README > $PKG/usr/doc/$PRGNAM-$VERSION/README +mkdir -p $PKG/install +cat $CWD/slack-desc > $PKG/install/slack-desc + +( 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 +) + +# Fix up the manpages +mv $PKG/usr/share/man $PKG/usr/man + +( 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 +) + +cd $PKG +/sbin/makepkg -l y -c n $OUTPUT/$PRGNAM-$VERSION-$ARCH-$BUILD$TAG.tgz diff --git a/network/tunctl/tunctl.info b/network/tunctl/tunctl.info new file mode 100644 index 0000000000..e68268dcc1 --- /dev/null +++ b/network/tunctl/tunctl.info @@ -0,0 +1,8 @@ +PRGNAM="tunctl" +VERSION="1.5" +HOMEPAGE="http://tunctl.sourceforge.net/" +DOWNLOAD="http://dfn.dl.sourceforge.net/sourceforge/tunctl/tunctl-1.5.tar.gz" +MD5SUM="fdbedc263b3e85bb0e087cd567414607" +MAINTAINER="Murat D. Kadirov" +EMAIL="banderols@gmail.com" +APPROVED="David Somero" \ No newline at end of file -- cgit v1.2.3