Commits
Zero King authored 391f5d156f7
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 | PortGroup muniversal 1.0 |
5 5 | PortGroup compiler_blacklist_versions 1.0 |
6 6 | |
7 7 | name libressl |
8 - | version 2.5.5 |
8 + | version 2.8.3 |
9 9 | categories security devel |
10 10 | platforms darwin |
11 11 | license OpenSSL SSLeay |
12 12 | maintainers {jeremyhu @jeremyhu} |
13 13 | |
14 14 | description LibreSSL SSL/TLS cryptography library |
15 15 | long_description LibreSSL is composed of four parts: \ |
16 16 | The openssl(1) utility, which provides tools for managing keys, certificates, etc. \ |
17 17 | libcrypto: a library of cryptography fundamentals \ |
18 18 | libssl: a TLS library, backwards-compatible with OpenSSL \ |
19 19 | libtls: a new TLS library, designed to make it easier to write foolproof applications |
20 20 | homepage https://www.libressl.org |
21 21 | |
22 22 | conflicts openssl libressl-devel |
23 23 | |
24 24 | master_sites openbsd:LibreSSL |
25 - | checksums rmd160 0b9b7ea9f8336e691e3b6ec0bc82ac55e7195de3 \ |
26 - | sha256 e57f5e3d5842a81fe9351b6e817fcaf0a749ca4ef35a91465edba9e071dce7c4 |
25 + | checksums rmd160 38bf33a04573dea9262a099e840e72d130556895 \ |
26 + | sha256 9b640b13047182761a99ce3e4f000be9687566e0828b4a72709e9e6a3ef98477 \ |
27 + | size 3366196 |
27 28 | |
28 29 | patchfiles \ |
29 30 | openssldir-cert.pem.patch |
30 31 | |
31 32 | configure.args \ |
32 33 | --disable-silent-rules \ |
33 34 | --with-openssldir=${prefix}/etc/ssl |
34 35 | |
35 36 | post-patch { |
36 37 | reinplace "s|@OPENSSLDIR@|${prefix}/etc/ssl|" ${worksrcpath}/include/openssl/opensslconf.h |