Ticket #66677: Portfile.rpki-client8.2.diff
File Portfile.rpki-client8.2.diff, 2.2 KB (added by artkiver (グレェ), 22 months ago) |
---|
-
Portfile
old new 7 7 legacysupport.newest_darwin_requires_legacy 15 8 8 9 9 name rpki-client 10 version 7.411 revision 210 version 8.2 11 revision 0 12 12 13 13 categories net 14 14 platforms darwin 15 15 license ISC 16 maintainers nomaintainer16 maintainers {@artkiver gmail.com:artkiver} openmaintainer 17 17 18 18 description OpenBSD RPKI Validator 19 19 long_description rpki-client is a FREE, easy-to-use implementation \ … … 26 26 master_sites https://cdn.openbsd.org/pub/OpenBSD/rpki-client/ \ 27 27 https://ftp.openbsd.org/pub/OpenBSD/rpki-client/ 28 28 29 checksums rmd160 74c8efaba732d3b5619c8c3a56fbc77c2e33c624\30 sha256 efd336137707ad73fa51f8480cff686c21fea7086619432069c1a02553b68d57\31 size 43991929 checksums rmd160 a8c0d3783e765a5bea2d7f6652d015da4690a5f6 \ 30 sha256 dc0d19679b57ae657b92d21730b1678823974d43300faa8c24ee155c1e2b1d64 \ 31 size 475141 32 32 33 depends_lib-append port:expat \ 34 port:libretls \ 33 depends_lib port:expat 34 35 variant libressl conflicts openssl description {use LibreSSL} { 36 depends_lib-append path:lib/libtls.dylib:libressl 37 configure.args-append --without-libretls 38 } 39 40 variant openssl conflicts libressl description {use OpenSSL} { 41 depends_lib-append port:libretls \ 35 42 port:openssl 43 } 44 45 if {![catch {registry_active openssl}] && ![variant_isset libressl]} { 46 # openssl is installed and the libressl variant isn't manually requested, default to openssl 47 default_variants +openssl 48 } elseif {(![catch {registry_active libressl}] || ![catch {registry_active libressl-devel}]) && ![variant_isset openssl]} { 49 # either libressl or libressl-devel are already installed, and the openssl variant is not explicitly requested, default to libressl 50 default_variants +libressl 51 } elseif {![variant_isset openssl]} { 52 # neither openssl nor libressl-devel are installed, and the openssl variant isn't selected, so libressl should be the default 53 default_variants +libressl 54 }