Commits
Marius Schamschula authored 95c8e5e5bc8
1 1 | # -*- coding: utf-8; mode: tcl; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- vim:fenc=utf-8:ft=tcl:et:sw=4:ts=4:sts=4 |
2 2 | |
3 3 | PortSystem 1.0 |
4 4 | |
5 5 | name stunnel |
6 - | version 5.55 |
7 - | revision 1 |
6 + | version 5.56 |
7 + | revision 0 |
8 8 | set major [lindex [split ${version} .] 0] |
9 9 | categories security net |
10 10 | platforms darwin |
11 11 | maintainers {mps @Schamschula} openmaintainer |
12 12 | license GPL-2+ |
13 13 | |
14 14 | description SSL tunneling program |
15 15 | |
16 16 | long_description Stunnel is a program that allows you to encrypt arbitrary \ |
17 17 | TCP connections inside SSL (Secure Sockets Layer) available \ |
18 18 | on both Unix and Windows. Stunnel can allow you to secure \ |
19 19 | non-SSL aware daemons and protocols (like POP, IMAP, LDAP, \ |
20 20 | etc) by having Stunnel provide the encryption, requiring no \ |
21 21 | changes to the daemon's code. |
22 22 | |
23 23 | homepage http://www.stunnel.org/ |
24 24 | master_sites https://www.stunnel.org/downloads/archive/${major}.x/ \ |
25 25 | http://www.usenix.org.uk/mirrors/stunnel/archive/${major}.x/ \ |
26 26 | http://ftp.nluug.nl/pub/networking/stunnel/archive/${major}.x/ \ |
27 27 | http://stunnel.cybermirror.org/archive/${major}.x/ |
28 28 | |
29 - | checksums rmd160 4f29ca256985f9bebfe347b6a4b9f453ad62c91a \ |
30 - | sha256 90de69f41c58342549e74c82503555a6426961b29af3ed92f878192727074c62 \ |
31 - | size 986873 |
29 + | checksums rmd160 6934239db636aadffe5d6559164f07efb8b2e7aa \ |
30 + | sha256 7384bfb356b9a89ddfee70b5ca494d187605bb516b4fff597e167f97e2236b22 \ |
31 + | size 981163 |
32 32 | |
33 33 | depends_lib path:lib/libssl.dylib:openssl |
34 34 | |
35 35 | patchfiles patch-configure \ |
36 36 | patch-tools-Makefile.in.diff \ |
37 37 | patch-tools-openssl.cnf.diff |
38 38 | |
39 39 | configure.args --disable-libwrap \ |
40 40 | --with-ssl=${prefix} |
41 41 | |