mirror of
https://github.com/Ponce/slackbuilds
synced 2024-11-24 10:02:29 +01:00
network/autossh: Added to 12.0 repository
This commit is contained in:
parent
a98998a7f9
commit
cffa4b94d8
4 changed files with 108 additions and 0 deletions
4
network/autossh/README
Normal file
4
network/autossh/README
Normal file
|
@ -0,0 +1,4 @@
|
||||||
|
autossh - Automatically restart SSH sessions and tunnels
|
||||||
|
|
||||||
|
autossh is a program to start a copy of ssh and monitor it,
|
||||||
|
restarting it as necessary should it die or stop passing traffic.
|
77
network/autossh/autossh.SlackBuild
Normal file
77
network/autossh/autossh.SlackBuild
Normal file
|
@ -0,0 +1,77 @@
|
||||||
|
#!/bin/sh
|
||||||
|
|
||||||
|
# Slackware build script for autossh
|
||||||
|
# Copyright (c) 2007, Written by Mark Walling <mark@markwalling.com>
|
||||||
|
|
||||||
|
# All rights reserved.
|
||||||
|
#
|
||||||
|
# Redistribution and use in source and binary forms, with or without
|
||||||
|
# modification, are permitted provided that the following conditions are
|
||||||
|
# met:
|
||||||
|
#
|
||||||
|
# * Redistributions of source code must retain the above copyright
|
||||||
|
# notice, this list of conditions and the following disclaimer.
|
||||||
|
#
|
||||||
|
# THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
|
||||||
|
# "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 COPYRIGHT
|
||||||
|
# OWNER OR CONTRIBUTORS 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.
|
||||||
|
|
||||||
|
set -e
|
||||||
|
|
||||||
|
PRGNAM=autossh
|
||||||
|
VERSION=1.4a
|
||||||
|
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"
|
||||||
|
elif [ "$ARCH" = "i686" ]; then
|
||||||
|
SLKCFLAGS="-O2 -march=i686 -mtune=i686"
|
||||||
|
fi
|
||||||
|
|
||||||
|
rm -rf $PKG
|
||||||
|
mkdir -p $TMP $PKG $OUTPUT
|
||||||
|
cd $TMP
|
||||||
|
rm -rf $PRGNAM-$VERSION
|
||||||
|
tar -xzvf $CWD/$PRGNAM-$VERSION.tgz
|
||||||
|
cd $PRGNAM-$VERSION
|
||||||
|
chown -R root:root .
|
||||||
|
chmod -R u+w,go+r-w,a-s .
|
||||||
|
|
||||||
|
CFLAGS="$SLKCFLAGS" \
|
||||||
|
CXXFLAGS="$SLKCFLAGS" \
|
||||||
|
./configure \
|
||||||
|
--prefix=/usr \
|
||||||
|
--sysconfdir=/etc \
|
||||||
|
--localstatedir=/var
|
||||||
|
|
||||||
|
make
|
||||||
|
mkdir -p $PKG/usr/bin $PKG/usr/man/man1
|
||||||
|
install -m 0755 autossh $PKG/usr/bin
|
||||||
|
strip --strip-unneeded $PKG/usr/bin/autossh
|
||||||
|
cat autossh.1 | gzip -9 > $PKG/usr/man/man1/autossh.1.gz
|
||||||
|
|
||||||
|
mkdir -p $PKG/usr/doc/$PRGNAM-$VERSION
|
||||||
|
cp -a CHANGES INSTALL README $PKG/usr/doc/$PRGNAM-$VERSION
|
||||||
|
cat $CWD/$PRGNAM.SlackBuild > $PKG/usr/doc/$PRGNAM-$VERSION/$PRGNAM.SlackBuild
|
||||||
|
mkdir -p $PKG/usr/doc/$PRGNAM-$VERSION/examples
|
||||||
|
cp -a autossh.host rscreen $PKG/usr/doc/$PRGNAM-$VERSION/examples
|
||||||
|
|
||||||
|
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/autossh/autossh.info
Normal file
8
network/autossh/autossh.info
Normal file
|
@ -0,0 +1,8 @@
|
||||||
|
PRGNAM="autossh"
|
||||||
|
VERSION="1.4a"
|
||||||
|
HOMEPAGE="http://www.harding.motd.ca/autossh/"
|
||||||
|
DOWNLOAD="http://www.harding.motd.ca/autossh/autossh-1.4a.tgz"
|
||||||
|
MD5SUM="a5497938986f0c179926f1ebba603767"
|
||||||
|
MAINTAINER="Mark Walling"
|
||||||
|
EMAIL="mark@markwalling.org"
|
||||||
|
APPROVED="rworkman"
|
19
network/autossh/slack-desc
Normal file
19
network/autossh/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------------------------------------------------------|
|
||||||
|
autossh: autossh (Automatically restart SSH sessions and tunnels)
|
||||||
|
autossh:
|
||||||
|
autossh: autossh is a program to start a copy of ssh and monitor it,
|
||||||
|
autossh: restarting it as necessary should it die or stop passing traffic.
|
||||||
|
autossh:
|
||||||
|
autossh: http://www.harding.motd.ca/autossh/
|
||||||
|
autossh:
|
||||||
|
autossh:
|
||||||
|
autossh:
|
||||||
|
autossh:
|
||||||
|
autossh:
|
Loading…
Reference in a new issue