libraries/perl-IO-Socket-SSL: Added to 12.2 repository
This commit is contained in:
parent
03e381d554
commit
69819e8c68
|
@ -0,0 +1,17 @@
|
|||
IO::Socket::SSL -- Nearly transparent SSL encapsulation for IO::Socket::INET.
|
||||
|
||||
This module is a true drop-in replacement for IO::Socket::INET that uses SSL
|
||||
to encrypt data before it is transferred to a remote server or client.
|
||||
IO::Socket::SSL supports all the extra features that one needs to write a
|
||||
full-featured SSL client or server application: multiple SSL contexts, cipher
|
||||
selection, certificate verification, and SSL version selection. As an extra
|
||||
bonus, it works perfectly with mod_perl.
|
||||
|
||||
In order to use IO::Socket::SSL you need to have Net::SSLeay v1.21 or later,
|
||||
avalaible as Net-SSLeay from SlackBuilds.org. This package as also an
|
||||
optional dependency on libwww-perl which can be installed from SlackBuilds.org
|
||||
as well. Another optional dependency is on international domain names
|
||||
handling module, it's recommended to install either Net::IDN::Encode or
|
||||
Net::LibIDN. The latter is avalaible from SlackBuilds.org, if none of these
|
||||
are found found, however, the library will switch to internal name resolution
|
||||
routines (and prints out a big ugly WARNING at compile time ;-) ).
|
|
@ -0,0 +1,88 @@
|
|||
#!/bin/sh
|
||||
|
||||
# Slackware build script for perl-IO-Socket-SSL
|
||||
|
||||
# Copyright 2009-2010 Marco Bonetti <sid77@slackware.it>
|
||||
# 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=perl-IO-Socket-SSL
|
||||
VERSION=${VERSION:-1.24}
|
||||
ARCH=${ARCH:-noarch}
|
||||
BUILD=${BUILD:-1}
|
||||
TAG=${TAG:-_SBo}
|
||||
|
||||
SRC_PRGNAM=IO-Socket-SSL
|
||||
DOCS="BUGS Changes README"
|
||||
|
||||
CWD=$(pwd)
|
||||
TMP=${TMP:-/tmp/SBo}
|
||||
PKG=$TMP/package-$PRGNAM
|
||||
OUTPUT=${OUTPUT:-/tmp}
|
||||
|
||||
set -e # Exit on most errors
|
||||
|
||||
rm -rf $PKG
|
||||
mkdir -p $TMP $PKG $OUTPUT
|
||||
cd $TMP
|
||||
rm -rf $SRC_PRGNAM-$VERSION
|
||||
tar xvf $CWD/$SRC_PRGNAM-$VERSION.tar.gz
|
||||
cd $SRC_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 {} \;
|
||||
|
||||
perl Makefile.PL INSTALLDIRS=perl
|
||||
make
|
||||
make test
|
||||
make install DESTDIR=$PKG
|
||||
|
||||
# Move man pages
|
||||
mv $PKG/usr/share/man $PKG/usr/
|
||||
|
||||
# Compress man pages
|
||||
( 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
|
||||
)
|
||||
|
||||
# Remove perllocal.pod and other special files that don't need to be installed
|
||||
( cd $PKG
|
||||
# Remove 'special' files
|
||||
find . -name perllocal.pod \
|
||||
-o -name ".packlist" \
|
||||
-o -name "*.bs" \
|
||||
| xargs rm -f
|
||||
)
|
||||
|
||||
# Remove empty directories
|
||||
find $PKG -depth -type d -empty -delete
|
||||
|
||||
mkdir -p $PKG/usr/doc/$PRGNAM-$VERSION
|
||||
cp -a $DOCS $PKG/usr/doc/$PRGNAM-$VERSION
|
||||
cat $CWD/$PRGNAM.SlackBuild > $PKG/usr/doc/$PRGNAM-$VERSION/$PRGNAM.SlackBuild
|
||||
|
||||
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
|
|
@ -0,0 +1,8 @@
|
|||
PRGNAM="perl-IO-Socket-SSL"
|
||||
VERSION="1.24"
|
||||
HOMEPAGE="http://search.cpan.org/~sullr/IO-Socket-SSL-1.24/"
|
||||
DOWNLOAD="http://search.cpan.org/CPAN/authors/id/S/SU/SULLR/IO-Socket-SSL-1.24.tar.gz"
|
||||
MD5SUM="53a407291bf9b3e09ae0f0cff90799a9"
|
||||
MAINTAINER="Marco Bonetti"
|
||||
EMAIL="sid77@slackware.it"
|
||||
APPROVED="rworkman"
|
|
@ -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-------------------------------------------------------|
|
||||
perl-IO-Socket-SSL: perl-IO-Socket-SSL (Transparent SSL encapsulation for IO::Socket::INET)
|
||||
perl-IO-Socket-SSL:
|
||||
perl-IO-Socket-SSL: This module is a true drop-in replacement for IO::Socket::INET that
|
||||
perl-IO-Socket-SSL: uses SSL to encrypt data before it is transferred to a remote server or
|
||||
perl-IO-Socket-SSL: client. IO::Socket::SSL supports all the extra features that one needs
|
||||
perl-IO-Socket-SSL: to write a full-featured SSL client or server application: multiple SSL
|
||||
perl-IO-Socket-SSL: contexts, cipher selection, certificate verification, and SSL version
|
||||
perl-IO-Socket-SSL: selection. As an extra bonus, it works perfectly with mod_perl.
|
||||
perl-IO-Socket-SSL:
|
||||
perl-IO-Socket-SSL:
|
||||
perl-IO-Socket-SSL:
|
Loading…
Reference in New Issue