mirror of
https://github.com/Ponce/slackbuilds
synced 2024-11-18 22:06:04 +01:00
network/tunctl: Added to 12.1 repository
This commit is contained in:
parent
0b727d595f
commit
5641da4c49
4 changed files with 87 additions and 0 deletions
4
network/tunctl/README
Normal file
4
network/tunctl/README
Normal file
|
@ -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.
|
19
network/tunctl/slack-desc
Normal file
19
network/tunctl/slack-desc
Normal file
|
@ -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:
|
56
network/tunctl/tunctl.SlackBuild
Normal file
56
network/tunctl/tunctl.SlackBuild
Normal file
|
@ -0,0 +1,56 @@
|
|||
#!/bin/sh
|
||||
|
||||
# Slackware build script for tunctl
|
||||
|
||||
# Written by Murat D. Kadirov <banderols@gmail.com>
|
||||
|
||||
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
|
8
network/tunctl/tunctl.info
Normal file
8
network/tunctl/tunctl.info
Normal file
|
@ -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"
|
Loading…
Reference in a new issue