]> git.t-rg.ws Git - slackbuilds.git/commitdiff
ocserv: added
authorfsLeg <fsleg@t-rg.ws>
Sun, 3 Dec 2023 16:29:33 +0000 (19:29 +0300)
committerfsLeg <fsleg@t-rg.ws>
Sun, 3 Dec 2023 16:29:33 +0000 (19:29 +0300)
ocserv/README [new file with mode: 0644]
ocserv/ocserv.SlackBuild [new file with mode: 0755]
ocserv/ocserv.info [new file with mode: 0644]
ocserv/slack-desc [new file with mode: 0644]

diff --git a/ocserv/README b/ocserv/README
new file mode 100644 (file)
index 0000000..0159b66
--- /dev/null
@@ -0,0 +1,16 @@
+OpenConnect server (ocserv) is an SSL VPN server. Its purpose is to be
+a secure, small, fast and configurable VPN server. It implements the
+OpenConnect SSL VPN protocol, and has also (currently experimental)
+compatibility with clients using the AnyConnect SSL VPN protocol.
+The OpenConnect VPN protocol uses the standard IETF security protocols
+such as TLS 1.2, and Datagram TLS to provide the secure VPN service.
+The server is implemented primarily for the GNU/Linux platform but its
+code is designed to be portable to other UNIX variants as well.
+
+Ocserv's main feature is isolation of the VPN users from the main VPN
+server process. Each authenticated user is assigned an unprivileged
+worker process, and a networking (tun) device. That not only eases the
+control of the resources of each user or group of users, but also
+prevents privilege escalation due to any bug on the VPN handling
+(worker) server. Each VPN user can be authenticated using password,
+PAM, public key (in a smart card or not) or any combination of methods.
diff --git a/ocserv/ocserv.SlackBuild b/ocserv/ocserv.SlackBuild
new file mode 100755 (executable)
index 0000000..7b77207
--- /dev/null
@@ -0,0 +1,108 @@
+#!/bin/sh
+
+# Slackware build script for ocserv
+
+# Copyright 2023 Vladislav Borisov, Moscow, Russia
+# 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=ocserv
+VERSION=${VERSION:-1.2.2}
+BUILD=${BUILD:-1}
+TAG=${TAG:-fsleg}
+
+# Use parallel building if possible
+if [ -z "$NUMJOBS" ]; then
+  NUMJOBS=$(nproc)
+fi
+
+# Automatically determine the architecture we're building on:
+if [ -z "$ARCH" ]; then
+  case "$( uname -m )" in
+    i?86) ARCH=i586 ;;
+    arm*) ARCH=arm ;;
+    # Unless $ARCH is already set, use uname -m for all other archs:
+       *) ARCH=$( uname -m ) ;;
+  esac
+fi
+
+CWD=$(pwd)
+TMP=${TMP:-/tmp/SBo}
+PKG=$TMP/package-$PRGNAM
+OUTPUT=${OUTPUT:-/tmp}
+
+if [ "$ARCH" = "i586" ]; then
+  SLKCFLAGS="-O2 -march=i586 -mtune=i686"
+elif [ "$ARCH" = "i686" ]; then
+  SLKCFLAGS="-O2 -march=i686 -mtune=i686"
+elif [ "$ARCH" = "x86_64" ]; then
+  SLKCFLAGS="-O2 -fPIC"
+else
+  SLKCFLAGS="-O2"
+fi
+
+set -e # Exit on most errors
+
+rm -rf $PKG
+mkdir -p $TMP $PKG $OUTPUT
+cd $TMP
+rm -rf $PRGNAM-$VERSION
+tar xvf $CWD/$PRGNAM-$VERSION.tar.xz
+cd $PRGNAM-$VERSION
+chown -R root:root .
+find -L . \
+ \( -perm 777 -o -perm 775 -o -perm 750 -o -perm 711 -o -perm 555 \
+  -o -perm 511 \) -exec chmod 755 {} \; -o \
+ \( -perm 666 -o -perm 664 -o -perm 640 -o -perm 600 -o -perm 444 \
+  -o -perm 440 -o -perm 400 \) -exec chmod 644 {} \;
+
+CFLAGS="$SLKCFLAGS" \
+CXXFLAGS="$SLKCFLAGS" \
+./configure \
+  --prefix=/usr \
+  --libdir=/usr/lib${LIBDIRSUFFIX} \
+  --sysconfdir=/etc \
+  --localstatedir=/var \
+  --mandir=/usr/man \
+  --docdir=/usr/doc/$PRGNAM-$VERSION \
+  --build=$ARCH-slackware-linux
+make -j${NUMJOBS}
+make install DESTDIR=$PKG
+
+# Strip binaries
+find $PKG -print0 | xargs -0 file | grep -e "executable" -e "shared object" | grep ELF \
+  | cut -f 1 -d : | xargs strip --strip-unneeded 2> /dev/null || true
+
+# Compress man pages
+find $PKG/usr/man -type f -exec gzip -9 {} \;
+for i in $( find $PKG/usr/man -type l ) ; do ln -s $( readlink $i ).gz $i.gz ; rm $i ; done
+
+# Copy docs and the SlackBuild into the package
+mkdir -p $PKG/usr/doc/$PRGNAM-$VERSION/examples
+cp -a AUTHORS CONTRIBUTING.md COPYING ChangeLog NEWS README.md doc/README-radius.md $PKG/usr/doc/$PRGNAM-$VERSION/
+cp -a doc/{profile.xml,sample.config,sample.otp,sample.passwd} $PKG/usr/doc/$PRGNAM-$VERSION/examples/
+cat $CWD/$PRGNAM.SlackBuild > $PKG/usr/doc/$PRGNAM-$VERSION/$PRGNAM.SlackBuild
+
+# Copy the slack-desc into ./install
+mkdir -p $PKG/install
+cat $CWD/slack-desc > $PKG/install/slack-desc
+
+# Make the package
+cd $PKG
+/sbin/makepkg -l y -c n $OUTPUT/$PRGNAM-$VERSION-$ARCH-$BUILD$TAG.${PKGTYPE:-txz}
diff --git a/ocserv/ocserv.info b/ocserv/ocserv.info
new file mode 100644 (file)
index 0000000..515cda2
--- /dev/null
@@ -0,0 +1,10 @@
+PRGNAM="ocserv"
+VERSION="1.2.2"
+HOMEPAGE="https://ocserv.gitlab.io/www/"
+DOWNLOAD="https://www.infradead.org/ocserv/download/ocserv-1.2.2.tar.xz"
+MD5SUM="dc020bd0f70da9371dcb3d60bebbc3ff"
+DOWNLOAD_x86_64=""
+MD5SUM_x86_64=""
+REQUIRES="libev"
+MAINTAINER="Vladislav Borisov"
+EMAIL="fsleg@t-rg.ws"
diff --git a/ocserv/slack-desc b/ocserv/slack-desc
new file mode 100644 (file)
index 0000000..b4fcee6
--- /dev/null
@@ -0,0 +1,11 @@
+      |-----handy-ruler------------------------------------------------------|
+ocserv: ocserv (OpenConnect VPN server compatible with Cisco AnyConnect VPN)
+ocserv:
+ocserv: The OpenConnect VPN server (ocserv) is an open source Linux SSL VPN
+ocserv: server designed for organizations that require a remote access VPN
+ocserv: with enterprise user management and control.
+ocserv:
+ocserv: Website: https://ocserv.gitlab.io/www/
+ocserv:
+ocserv:
+ocserv: