diff options
author | Ulrich Müller <ulm@gentoo.org> | 2022-03-18 21:29:29 +0100 |
---|---|---|
committer | Ulrich Müller <ulm@gentoo.org> | 2022-03-24 04:58:34 +0100 |
commit | d7317785d04e7de172de3bff05852fca3cd15af2 (patch) | |
tree | 39f2e24069d903cc05c898c695d9a703fcaf5ca9 /eclass/php-ext-source-r3.eclass | |
parent | app-shells/nushell: Add 0.60.0 (diff) | |
download | gentoo-d7317785d04e7de172de3bff05852fca3cd15af2.tar.gz gentoo-d7317785d04e7de172de3bff05852fca3cd15af2.tar.bz2 gentoo-d7317785d04e7de172de3bff05852fca3cd15af2.zip |
*.eclass: @ECLASS-VARIABLE renamed to @ECLASS_VARIABLE
Bug: https://bugs.gentoo.org/835396
Signed-off-by: Ulrich Müller <ulm@gentoo.org>
Diffstat (limited to 'eclass/php-ext-source-r3.eclass')
-rw-r--r-- | eclass/php-ext-source-r3.eclass | 24 |
1 files changed, 12 insertions, 12 deletions
diff --git a/eclass/php-ext-source-r3.eclass b/eclass/php-ext-source-r3.eclass index 4f580436d3e9..b60d5528d526 100644 --- a/eclass/php-ext-source-r3.eclass +++ b/eclass/php-ext-source-r3.eclass @@ -19,7 +19,7 @@ case ${EAPI:-0} in die "${ECLASS} is not compatible with EAPI=${EAPI}" esac -# @ECLASS-VARIABLE: PHP_EXT_NAME +# @ECLASS_VARIABLE: PHP_EXT_NAME # @PRE_INHERIT # @REQUIRED # @DESCRIPTION: @@ -29,19 +29,19 @@ esac [[ -z "${PHP_EXT_NAME}" ]] && \ die "no extension name specified for the php-ext-source-r3 eclass" -# @ECLASS-VARIABLE: PHP_EXT_INI +# @ECLASS_VARIABLE: PHP_EXT_INI # @DESCRIPTION: # Controls whether or not to add a line to php.ini for the extension. # Defaults to "yes" and should not be changed in most cases. [[ -z "${PHP_EXT_INI}" ]] && PHP_EXT_INI="yes" -# @ECLASS-VARIABLE: PHP_EXT_ZENDEXT +# @ECLASS_VARIABLE: PHP_EXT_ZENDEXT # @DESCRIPTION: # Controls whether the extension is a ZendEngine extension or not. # Defaults to "no". If you don't know what this is, you don't need it. [[ -z "${PHP_EXT_ZENDEXT}" ]] && PHP_EXT_ZENDEXT="no" -# @ECLASS-VARIABLE: USE_PHP +# @ECLASS_VARIABLE: USE_PHP # @REQUIRED # @DESCRIPTION: # Lists the PHP slots compatible the extension is compatible with. @@ -52,7 +52,7 @@ esac [[ -z "${USE_PHP}" ]] && \ die "USE_PHP is not set for the php-ext-source-r3 eclass" -# @ECLASS-VARIABLE: PHP_EXT_OPTIONAL_USE +# @ECLASS_VARIABLE: PHP_EXT_OPTIONAL_USE # @DEFAULT_UNSET # @DESCRIPTION: # If set, all of the dependencies added by this eclass will be @@ -60,21 +60,21 @@ esac # ebuilds have to inherit this eclass unconditionally, but only # actually use it when (for example) the user has USE=php. -# @ECLASS-VARIABLE: PHP_EXT_S +# @ECLASS_VARIABLE: PHP_EXT_S # @DESCRIPTION: # The relative location of the temporary build directory for the PHP # extension within the source package. This is useful for packages that # bundle the PHP extension. Defaults to ${S}. [[ -z "${PHP_EXT_S}" ]] && PHP_EXT_S="${S}" -# @ECLASS-VARIABLE: PHP_EXT_SAPIS +# @ECLASS_VARIABLE: PHP_EXT_SAPIS # @DESCRIPTION: # A list of SAPIs for which we will install this extension. Formerly # called PHPSAPILIST. The default includes every SAPI currently used in # the tree. [[ -z "${PHP_EXT_SAPIS}" ]] && PHP_EXT_SAPIS="apache2 cli cgi fpm embed phpdbg" -# @ECLASS-VARIABLE: PHP_INI_NAME +# @ECLASS_VARIABLE: PHP_INI_NAME # @DESCRIPTION: # An optional file name of the saved ini file minis the ini extension # This allows ordering of extensions such that one is loaded before @@ -85,7 +85,7 @@ esac # @CODE : ${PHP_INI_NAME:=${PHP_EXT_NAME}} -# @ECLASS-VARIABLE: PHP_EXT_NEEDED_USE +# @ECLASS_VARIABLE: PHP_EXT_NEEDED_USE # @PRE_INHERIT # @DEFAULT_UNSET # @DESCRIPTION: @@ -139,14 +139,14 @@ esac unset PHPDEPEND TOOLDEPS -# @ECLASS-VARIABLE: PHP_EXT_SKIP_PHPIZE +# @ECLASS_VARIABLE: PHP_EXT_SKIP_PHPIZE # @DEFAULT_UNSET # @DESCRIPTION: # By default, we run "phpize" in php-ext-source-r3_src_prepare(). Set # PHP_EXT_SKIP_PHPIZE="yes" in your ebuild if you do not want to run # phpize (and the autoreconf that becomes necessary afterwards). -# @ECLASS-VARIABLE: PHP_EXT_SKIP_PATCHES +# @ECLASS_VARIABLE: PHP_EXT_SKIP_PATCHES # @DEFAULT_UNSET # @DESCRIPTION: # By default, we run default_src_prepare to PHP_EXT_S. @@ -200,7 +200,7 @@ php-ext-source-r3_phpize() { } -# @ECLASS-VARIABLE: PHP_EXT_ECONF_ARGS +# @ECLASS_VARIABLE: PHP_EXT_ECONF_ARGS # @DEFAULT_UNSET # @DESCRIPTION: # Set this in the ebuild to pass additional configure options to |