summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
author Willy Sudiarto Raharjo2020-02-01 02:51:01 +0100
committer Willy Sudiarto Raharjo2020-02-01 02:51:01 +0100
commitf93c7b1482c2833db8939d787b43141e182a7f9f (patch)
treeae1c08692ad99d38691f83a481ce84db59349b36
parent12e7c573a92d8141c2b95650903b73496ddd1d1a (diff)
downloadslackbuilds-f93c7b1482c2833db8939d787b43141e182a7f9f.tar.gz
libraries/tls: Removed (duplicate of tcl-tls).
Signed-off-by: Willy Sudiarto Raharjo <willysr@slackbuilds.org>
-rw-r--r--libraries/tls/README5
-rw-r--r--libraries/tls/slack-desc19
-rw-r--r--libraries/tls/tls.SlackBuild74
-rw-r--r--libraries/tls/tls.info10
4 files changed, 0 insertions, 108 deletions
diff --git a/libraries/tls/README b/libraries/tls/README
deleted file mode 100644
index ecad42cf12..0000000000
--- a/libraries/tls/README
+++ /dev/null
@@ -1,5 +0,0 @@
-A portable extension that provides the power of OpenSSL to Tcl programs.
-This extension can be used to utilize SSL encryption on top of any valid
-Tcl Channel not just sockets. The sockets behave exactly the same as
-channels created using Tcl's built-in socket command, with additional
-options for controlling the SSL session.
diff --git a/libraries/tls/slack-desc b/libraries/tls/slack-desc
deleted file mode 100644
index b0361e059a..0000000000
--- a/libraries/tls/slack-desc
+++ /dev/null
@@ -1,19 +0,0 @@
-# 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 ':' except on otherwise blank lines.
-
- |-----handy-ruler------------------------------------------------------|
-tls: tls (An OpenSSL TCL extension)
-tls:
-tls: For use both on client and server-side as a layering for SSL sockets.
-tls: A portable extension that provides the power of OpenSSL to Tcl
-tls: programs. This extension can be used to utilize SSL encryption on
-tls: top of any valid Tcl Channel not just sockets. The sockets behave
-tls: exactly the same as channels created using Tcl's built-in socket
-tls: command, with additional options for controlling the SSL session.
-tls:
-tls: Homepage: http://tls.sourceforge.net
-tls:
diff --git a/libraries/tls/tls.SlackBuild b/libraries/tls/tls.SlackBuild
deleted file mode 100644
index 1c02ed39ad..0000000000
--- a/libraries/tls/tls.SlackBuild
+++ /dev/null
@@ -1,74 +0,0 @@
-#!/bin/sh
-
-# Slackware build script for tls
-# Written by Bruno Vezzaro <b.vezzaro@gmail.com>
-# Assumed to be public domain
-
-PRGNAM=tls
-VERSION=${VERSION:-1.6}
-BUILD=${BUILD:-1}
-TAG=${TAG:-_SBo}
-
-if [ -z "$ARCH" ]; then
- case "$( uname -m )" in
- i?86) ARCH=i486 ;;
- arm*) ARCH=arm ;;
- *) ARCH=$( uname -m ) ;;
- esac
-fi
-
-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"
-else
- SLKCFLAGS="-O2"
- LIBDIRSUFFIX=""
-fi
-
-rm -rf $PKG
-mkdir -p $TMP $PKG $OUTPUT
-rm -rf $TMP/$PRGNAM$VERSION
-cd $TMP || exit 1
-tar -zxvf $CWD/$PRGNAM$VERSION-src.tar.gz || exit 1
-cd $PRGNAM$VERSION || exit 1
-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" \
- ./configure \
- --prefix=/usr \
- --libdir=/usr/lib${LIBDIRSUFFIX} \
- --sysconfdir=/etc \
- --localstatedir=/var || exit 1
-
-make || exit 1
-make install DESTDIR=$PKG || exit 1
-
-mkdir -p $PKG/usr/doc/$PRGNAM-$VERSION
-
-cp -a ChangeLog README.txt license.terms tls.htm \
- $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.${PKGTYPE:-tgz}
diff --git a/libraries/tls/tls.info b/libraries/tls/tls.info
deleted file mode 100644
index 6962bfabc9..0000000000
--- a/libraries/tls/tls.info
+++ /dev/null
@@ -1,10 +0,0 @@
-PRGNAM="tls"
-VERSION="1.6"
-HOMEPAGE="http://tls.sourceforge.net/"
-DOWNLOAD="http://downloads.sourceforge.net/tls/tls1.6-src.tar.gz"
-MD5SUM="eb326ff9e6fc3b9885aa5c72fb8df3bf"
-DOWNLOAD_x86_64=""
-MD5SUM_x86_64=""
-REQUIRES=""
-MAINTAINER="Didier Spaier"
-EMAIL="didier at slint dot fr"