diff options
Diffstat (limited to 'app-doc/eclass-manpages/files/eclass-to-manpage.awk')
-rw-r--r-- | app-doc/eclass-manpages/files/eclass-to-manpage.awk | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/app-doc/eclass-manpages/files/eclass-to-manpage.awk b/app-doc/eclass-manpages/files/eclass-to-manpage.awk index b40eaf112091..53e05973e16d 100644 --- a/app-doc/eclass-manpages/files/eclass-to-manpage.awk +++ b/app-doc/eclass-manpages/files/eclass-to-manpage.awk @@ -1,4 +1,4 @@ -# Copyright 1999-2017 Gentoo Foundation +# Copyright 1999-2019 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 # This awk converts the comment documentation found in eclasses @@ -93,7 +93,7 @@ function xfail(text) { function eat_line() { ret = $0 - sub(/^# @[A-Z]*:[[:space:]]*/,"",ret) + sub(/^# @[^:]+:[[:space:]]*/,"",ret) getline return ret } @@ -201,6 +201,10 @@ function handle_eclass() { print ".SH \"DESCRIPTION\"" print man_text(desc) } + if (supported_eapis != "") { + print ".SH \"SUPPORTED EAPIS\"" + print man_text(supported_eapis) + } if (example != "") { print ".SH \"EXAMPLE\"" print man_text(example) |