media-fonts/siji: add siji live 9999 ebuild
This commit is contained in:
parent
0a00033e6b
commit
1aa17066ad
7
media-fonts/siji/metadata.xml
Normal file
7
media-fonts/siji/metadata.xml
Normal file
@ -0,0 +1,7 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
|
||||
<pkgmetadata>
|
||||
<upstream>
|
||||
<remote-id type="github">stark/siji</remote-id>
|
||||
</upstream>
|
||||
</pkgmetadata>
|
41
media-fonts/siji/siji-9999.ebuild
Normal file
41
media-fonts/siji/siji-9999.ebuild
Normal file
@ -0,0 +1,41 @@
|
||||
# Copyright 1999-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"
|
||||
RESTRICT="mirror"
|
||||
|
||||
LICENSE="GPL-2"
|
||||
SLOT="0"
|
||||
KEYWORDS=""
|
||||
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
|
||||
}
|
Loading…
Reference in New Issue
Block a user