1) don't use openssl unless really needed (either a port requires something which is particularly openssl-specific, or there is some other special reason), and 2) add some comments to the port explaining why libressl isn't used. in the normal case ports should use libressl. don't just use openssl to avoid a few patches because of stupid version detection ifdefs.
22 lines
643 B
Makefile
22 lines
643 B
Makefile
# XXX Don't use security/openssl/X in other ports unless there's a big problem
|
|
# or a specific reason why not to use LibreSSL with that port - it is easy to
|
|
# create runtime library conflicts. In those special cases, please add comments
|
|
# to the port explaining why OpenSSL is needed instead of LibreSSL and/or
|
|
# discuss on ports@.
|
|
|
|
COMMENT?= TLS/SSL library and tools
|
|
|
|
DISTNAME?= openssl-$V
|
|
PKGNAME?= openssl-$V
|
|
|
|
CATEGORIES?= security net
|
|
|
|
HOMEPAGE?= https://www.openssl.org/
|
|
|
|
# OpenSSL
|
|
PERMIT_PACKAGE?= Yes
|
|
|
|
MASTER_SITES?= https://www.openssl.org/source/ \
|
|
https://www.openssl.org/source/old/${V:C/.$//}/ \
|
|
ftp://ftp.openssl.org/source/
|