2021-07-07 18:20:27 +02:00
|
|
|
# Copyright 1999-2021 Gentoo Authors
|
2020-02-08 17:28:23 +01:00
|
|
|
# Distributed under the terms of the GNU General Public License v2
|
|
|
|
|
|
|
|
EAPI=7
|
|
|
|
|
|
|
|
inherit git-r3 font
|
|
|
|
|
|
|
|
DESCRIPTION="An iconic bitmap font based on Stlarch with additional glyphs"
|
|
|
|
HOMEPAGE="https://github.com/stark/siji"
|
|
|
|
EGIT_REPO_URI="https://github.com/stark/siji.git"
|
|
|
|
RESTRICT="mirror"
|
|
|
|
|
|
|
|
LICENSE="GPL-2"
|
|
|
|
SLOT="0"
|
|
|
|
IUSE="+pcf"
|
|
|
|
|
|
|
|
DEPEND="
|
|
|
|
x11-apps/bdftopcf
|
|
|
|
"
|
|
|
|
RDEPEND="
|
|
|
|
${DEPEND}
|
|
|
|
"
|
|
|
|
|
|
|
|
src_compile() {
|
|
|
|
if use pcf
|
|
|
|
then
|
|
|
|
bdftopcf bdf/${PN}.bdf -o pcf/${PN}.pcf
|
|
|
|
fi
|
|
|
|
}
|
|
|
|
|
|
|
|
src_install() {
|
|
|
|
insinto "/usr/share/fonts/${PN}"
|
|
|
|
|
|
|
|
if use pcf
|
|
|
|
then
|
|
|
|
doins pcf/*
|
|
|
|
else
|
|
|
|
doins bdf/*
|
|
|
|
fi
|
|
|
|
}
|