unifont-17.0.04nymphos
download
# Copyright 2026 NymphOS Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
inherit font
DESCRIPTION="GNU Unifont - a Pan-Unicode X11 bitmap iso10646 font"
HOMEPAGE="https://unifoundry.com/"
SRC_URI="mirror://gnu/${PN}/${P}/${P}.tar.gz"
LICENSE="|| ( OFL-1.1 GPL-2+-with-font-exception )"
SLOT="0"
KEYWORDS="~amd64"
IUSE="bold"
BDEPEND="
bold? (
media-gfx/mkbold-mkitalic
x11-apps/bdftopcf
)"
src_compile() {
gzip -d <"font/precompiled/${P}.pcf.gz" >"${P}.pcf"
use bold && gzip -d <"font/precompiled/${P}.bdf.gz" | mkbold | bdftopcf >"${PN}-bold.pcf"
}
src_install() {
insinto "${FONTDIR}"
newins "${P}.pcf" "${PN}.pcf"
use bold && doins "${PN}-bold.pcf"
font_xfont_config
font_fontconfig
}