diff options
author | Sam James <sam@gentoo.org> | 2021-03-31 03:39:54 +0100 |
---|---|---|
committer | Sam James <sam@gentoo.org> | 2021-03-31 08:42:26 +0100 |
commit | f68d9ce64a86b59fd238e8a53f37790801e6eae5 (patch) | |
tree | 8c61a860f6f02e71dee85baec6c409494f70d898 /eclass/font-ebdftopcf.eclass | |
parent | kde.org.eclass: mark KDE_SELINUX_MODULE as @PRE_INHERIT (diff) | |
download | gentoo-f68d9ce64a86b59fd238e8a53f37790801e6eae5.tar.gz gentoo-f68d9ce64a86b59fd238e8a53f37790801e6eae5.tar.bz2 gentoo-f68d9ce64a86b59fd238e8a53f37790801e6eae5.zip |
font-ebdftopcf.eclass: provide basic @ECLASS block, docs
Signed-off-by: Sam James <sam@gentoo.org>
Diffstat (limited to 'eclass/font-ebdftopcf.eclass')
-rw-r--r-- | eclass/font-ebdftopcf.eclass | 20 |
1 files changed, 13 insertions, 7 deletions
diff --git a/eclass/font-ebdftopcf.eclass b/eclass/font-ebdftopcf.eclass index 29568e560134..6d6bd70ae31f 100644 --- a/eclass/font-ebdftopcf.eclass +++ b/eclass/font-ebdftopcf.eclass @@ -1,13 +1,15 @@ -# Copyright 1999-2020 Gentoo Authors +# Copyright 1999-2021 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 -# Author: Robin H. Johnson <robbat2@gentoo.org> - -# font-ebdftopcf.eclass -# Eclass to make PCF font generator from BDF uniform and optimal +# @ECLASS: font-ebdftopcf.eclass +# @MAINTAINER: +# maintainer-needed@gentoo.org +# @AUTHOR: +# Robin H. Johnson <robbat2@gentoo.org> +# @BLURB: Eclass to make PCF font generator from BDF uniform and optimal +# @DESCRIPTION: # The manpage for this eclass is in media-gfx/ebdftopcf. - -# inherit this eclass after font.eclass +# Inherit this eclass after font.eclass # if USE="-X", this eclass is basically a no-op, since bdftopcf requires Xorg. IUSE="X" @@ -19,6 +21,8 @@ RDEPEND="" # # Public functions # + +# @FUNCTION: ebdftopcf ebdftopcf() { local bdffiles bdffiles="$@" @@ -32,6 +36,8 @@ ebdftopcf() { # # Public inheritable functions # + +# @FUNCTION: font-ebdftopcf_src_compile font-ebdftopcf_src_compile() { use X && FONT_SUFFIX="pcf.gz" use X || FONT_SUFFIX="bdf" |