1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-10-19 19:59:43 +00:00

Allow adding only a build or run-time dependency on USES=ssl.

PR:		202175
Reported by:	barnerd
Sponsored by:	Absolight
This commit is contained in:
Mathieu Arnold 2016-09-08 14:13:01 +00:00
parent f999dd783a
commit cd9e609ae0
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=421556

View File

@ -4,7 +4,7 @@
#
# Feature: SSL_DEFAULT
# Usage: USES=ssl
# Valid ARGS: none
# Valid ARGS: none (build and run), build, run
#
# The user can choose which ssl library he wants with:
#
@ -28,8 +28,17 @@
.if !defined(_INCLUDE_USES_SSL_MK)
_INCLUDE_USES_SSL_MK= yes
.if !empty(ssl_ARGS)
IGNORE= "USES=ssl does not take any argument."
.if !empty(ssl_ARGS:Nbuild:Nrun)
IGNORE= "USES=ssl invalid arguments ${ssl_ARGS}."
.endif
.if empty(ssl_ARGS) || (!empty(ssl_ARGS:Mbuild) && !empty(ssl_ARGS:Mrun))
_SSL_BUILD_DEP= 1
_SSL_RUN_DEP= 1
.elif !empty(ssl_ARGS:Mbuild)
_SSL_BUILD_DEP= 1
.elif !empty(ssl_ARGS:Mrun)
_SSL_RUN_DEP= 1
.endif
.if ${SSL_DEFAULT} == base
@ -87,8 +96,12 @@ OPENSSL_PORT= security/${SSL_DEFAULT}
. endif
OPENSSLDIR?= ${OPENSSLBASE}/openssl
.if defined(_SSL_BUILD_DEP)
BUILD_DEPENDS+= ${LOCALBASE}/lib/libcrypto.so.${OPENSSL_SHLIBVER}:${OPENSSL_PORT}
.endif
.if defined(_SSL_RUN_DEP)
RUN_DEPENDS+= ${LOCALBASE}/lib/libcrypto.so.${OPENSSL_SHLIBVER}:${OPENSSL_PORT}
.endif
OPENSSLRPATH= ${LOCALBASE}/lib
.endif