blob: e87d37ea762e9598be5df6000f7a98d6cf9efd98 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
|
# Copyright 1999-2024 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
inherit font
DESCRIPTION="International X11 fixed fonts"
HOMEPAGE="https://directory.fsf.org/wiki/Intlfonts"
SRC_URI="mirror://gnu/${PN}/${P}.tar.gz"
LICENSE="public-domain HPND GPL-3+-with-font-exception"
SLOT="0"
KEYWORDS="~alpha amd64 arm ~hppa ~loong ppc ppc64 ~riscv ~s390 sparc x86"
IUSE="bdf"
BDEPEND="x11-apps/bdftopcf
>=x11-apps/mkfontscale-1.2.0"
DOCS=( ChangeLog NEWS README Emacs.ap )
src_configure() {
local myeconfargs=(
--with-fontdir=/usr/share/fonts/${PN}
--enable-compress="gzip -9"
$(use_with bdf)
)
econf "${myeconfargs[@]}"
}
src_install() {
emake install fontdir="${ED}/usr/share/fonts/${PN}"
einstalldocs
font_xfont_config
}
|