diff options
author | Mikle Kolyada <zlogene@gentoo.org> | 2019-10-25 13:24:02 +0300 |
---|---|---|
committer | Mikle Kolyada <zlogene@gentoo.org> | 2019-10-25 13:24:50 +0300 |
commit | d5042a23663101860b0be59ba6010395934215d3 (patch) | |
tree | ea3394f9315dab879ba21cd5b6d5c85f8502c953 /eclass/texlive-module.eclass | |
parent | dev-ruby/whole_history_rating: new package (diff) | |
download | gentoo-d5042a23663101860b0be59ba6010395934215d3.tar.gz gentoo-d5042a23663101860b0be59ba6010395934215d3.tar.bz2 gentoo-d5042a23663101860b0be59ba6010395934215d3.zip |
texlive-module.eclass: fix eclassdoc problems
Signed-off-by: Mikle Kolyada <zlogene@gentoo.org>
Diffstat (limited to 'eclass/texlive-module.eclass')
-rw-r--r-- | eclass/texlive-module.eclass | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/eclass/texlive-module.eclass b/eclass/texlive-module.eclass index c9faf39debd3..62620170dd13 100644 --- a/eclass/texlive-module.eclass +++ b/eclass/texlive-module.eclass @@ -24,33 +24,39 @@ # bash array. # @ECLASS-VARIABLE: TEXLIVE_MODULE_CONTENTS +# @REQUIRED # @DESCRIPTION: # The list of packages that will be installed. This variable will be expanded to # SRC_URI: # foo -> texlive-module-foo-${PV}.tar.xz # @ECLASS-VARIABLE: TEXLIVE_MODULE_DOC_CONTENTS +# @REQUIRED # @DESCRIPTION: # The list of packages that will be installed if the doc useflag is enabled. # Expansion to SRC_URI is the same as for TEXLIVE_MODULE_CONTENTS. # @ECLASS-VARIABLE: TEXLIVE_MODULE_SRC_CONTENTS +# @REQUIRED # @DESCRIPTION: # The list of packages that will be installed if the source useflag is enabled. # Expansion to SRC_URI is the same as for TEXLIVE_MODULE_CONTENTS. # @ECLASS-VARIABLE: TEXLIVE_MODULE_BINSCRIPTS +# @DEFAULT_UNSET # @DESCRIPTION: # A space separated list of files that are in fact scripts installed in the # texmf tree and that we want to be available directly. They will be installed in # /usr/bin. # @ECLASS-VARIABLE: TEXLIVE_MODULE_BINLINKS +# @DEFAULT_UNSET # @DESCRIPTION: # A space separated list of links to add for BINSCRIPTS. # The systax is: foo:bar to create a symlink bar -> foo. # @ECLASS-VARIABLE: TL_PV +# @INTERNAL # @DESCRIPTION: # Normally the module's PV reflects the TeXLive release it belongs to. # If this is not the case, TL_PV takes the version number for the @@ -58,6 +64,7 @@ # @ECLASS-VARIABLE: TL_MODULE_INFORMATION # @DESCRIPTION: +# @DEFAULT_UNSET # Information to display about the package. # e.g. for enabling/disabling a feature @@ -124,6 +131,7 @@ RDEPEND="${COMMON_DEPEND}" IUSE="${IUSE} doc" # @ECLASS-VARIABLE: TEXLIVE_MODULE_OPTIONAL_ENGINE +# @DEFAULT_UNSET # @DESCRIPTION: # A space separated list of Tex engines that can be made optional. # e.g. "luatex luajittex" |