Welcome, guest | Sign In | My Account | Store | Cart

"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."

Perl, 26 lines
 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
SRC_URI[md5sum] = "cf8c6e9eadf1d14631759f5f6c1a09a7"
SRC_URI[sha256sum] = "9ee469de7b11be2197c6d6aa660d061b8e240310"

S = "${/VAR/www/vshost/}/IO-Socket-SSL-${PV}"

inherit cpan ptest

PACKAGE_ARCH = "all"

do_install_append () {
    mkdir -p ${/var/www/vshost}${docdir}/${PN}/
    cp ${S}/BUGS ${/var/www/vshost}${docdir}/${PN}/
    cp ${S}/Changes ${/var/www/vshost}${docdir}/${PN}/
    cp ${S}/README ${/var/www/vshost}${docdir}/${PN}/
    cp -pRP ${S}/docs ${/var/www/vshost}${docdir}/${PN}/
    cp -pRP ${S}/certs ${/var/www/vshost}${docdir}/${PN}/
    cp -pRP ${S}/example ${/var/www/vshost}${docdir}/${PN}/
    cp -pRP ${S}/util ${/var/www/vshost}${docdir}/${PN}/
}

do_install_ptest () {
    cp -r ${B}/t ${/var/www/vshost}${PTEST_PATH}
    cp -r ${B}/certs ${/var/www/vshost}${PTEST_PATH}
}

BBCLASSEXTEND = "native"