diff options
author | Azat Bahawi <azahi@teknik.io> | 2020-09-27 20:27:19 +0300 |
---|---|---|
committer | Azat Bahawi <azahi@teknik.io> | 2020-09-27 20:27:22 +0300 |
commit | b2e8c3b833e5d77bc2fe57ffd27d85ba80fbf325 (patch) | |
tree | b9651fd002fe8d743713c116b3296ef86a64ce38 /media-fonts/siji/siji-9999.ebuild | |
parent | media-fonts/tewi-font: Update ebuilds, metadata (diff) |
media-fonts/siji: Move to ebdftopcf eclass
Package-Manager: Portage-3.0.8, Repoman-3.0.1 Signed-off-by: Azat Bahawi <azahi@teknik.io>
Diffstat (limited to '')
-rw-r--r-- | media-fonts/siji/siji-9999.ebuild | 35 |
1 files changed, 0 insertions, 35 deletions
diff --git a/media-fonts/siji/siji-9999.ebuild b/media-fonts/siji/siji-9999.ebuild deleted file mode 100644 index 5a50658..0000000 --- a/media-fonts/siji/siji-9999.ebuild +++ /dev/null @@ -1,35 +0,0 @@ -# Copyright 2018-2020 Gentoo Authors -# 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" - -LICENSE="GPL-2" -SLOT="0" -KEYWORDS="" -IUSE="+pcf" - -DEPEND="x11-apps/bdftopcf" -RDEPEND="${DEPEND}" -BDEPEND="" - -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 -} |