diff options
author | Sam James <sam@gentoo.org> | 2021-03-31 01:49:06 +0100 |
---|---|---|
committer | Sam James <sam@gentoo.org> | 2021-03-31 03:02:49 +0100 |
commit | 2ac04694dab68b99b0fc5812eed7e8f5ff9e88df (patch) | |
tree | 5c4425016c7af48cb02b0a8eb176f87c853235cb /eclass/ssl-cert.eclass | |
parent | ruby-single.eclass: mark USE_RUBY as @PRE_INHERIT (diff) | |
download | gentoo-2ac04694dab68b99b0fc5812eed7e8f5ff9e88df.tar.gz gentoo-2ac04694dab68b99b0fc5812eed7e8f5ff9e88df.tar.bz2 gentoo-2ac04694dab68b99b0fc5812eed7e8f5ff9e88df.zip |
ssl-cert.eclass: mark SSL_CERT_MANDATORY, SSL_CERT_USE, SSL_DEPS_SKIP as @PRE_INHERIT
All manipulate dependencies or IUSE in global scope.
Signed-off-by: Sam James <sam@gentoo.org>
Diffstat (limited to 'eclass/ssl-cert.eclass')
-rw-r--r-- | eclass/ssl-cert.eclass | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/eclass/ssl-cert.eclass b/eclass/ssl-cert.eclass index fdd6775ffc77..ee7364513a05 100644 --- a/eclass/ssl-cert.eclass +++ b/eclass/ssl-cert.eclass @@ -1,4 +1,4 @@ -# Copyright 1999-2020 Gentoo Authors +# Copyright 1999-2021 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 # @ECLASS: ssl-cert.eclass @@ -26,16 +26,19 @@ case "${EAPI:-0}" in esac # @ECLASS-VARIABLE: SSL_CERT_MANDATORY +# @PRE_INHERIT # @DESCRIPTION: # Set to non zero if ssl-cert is mandatory for ebuild. : ${SSL_CERT_MANDATORY:=0} # @ECLASS-VARIABLE: SSL_CERT_USE +# @PRE_INHERIT # @DESCRIPTION: # Use flag to append dependency to. : ${SSL_CERT_USE:=ssl} # @ECLASS-VARIABLE: SSL_DEPS_SKIP +# @PRE_INHERIT # @DESCRIPTION: # Set to non zero to skip adding to DEPEND and IUSE. : ${SSL_DEPS_SKIP:=0} |