diff options
author | Ulrich Müller <ulm@gentoo.org> | 2021-02-16 10:30:36 +0100 |
---|---|---|
committer | Ulrich Müller <ulm@gentoo.org> | 2021-02-16 10:31:03 +0100 |
commit | 5cf07d8af5e9ca386dcf465cd95d3a85730d083a (patch) | |
tree | 8acf65382c2aecdbdeabe224cb528f815d38ac6c /media-fonts/intlfonts/intlfonts-1.4.1.ebuild | |
parent | licenses: Add GPL-3+-with-font-exception (diff) | |
download | gentoo-5cf07d8af5e9ca386dcf465cd95d3a85730d083a.tar.gz gentoo-5cf07d8af5e9ca386dcf465cd95d3a85730d083a.tar.bz2 gentoo-5cf07d8af5e9ca386dcf465cd95d3a85730d083a.zip |
media-fonts/intlfonts: Version bump to 1.4.1
Package-Manager: Portage-3.0.14, Repoman-3.0.2
Signed-off-by: Ulrich Müller <ulm@gentoo.org>
Diffstat (limited to 'media-fonts/intlfonts/intlfonts-1.4.1.ebuild')
-rw-r--r-- | media-fonts/intlfonts/intlfonts-1.4.1.ebuild | 33 |
1 files changed, 33 insertions, 0 deletions
diff --git a/media-fonts/intlfonts/intlfonts-1.4.1.ebuild b/media-fonts/intlfonts/intlfonts-1.4.1.ebuild new file mode 100644 index 000000000000..8cab818529f0 --- /dev/null +++ b/media-fonts/intlfonts/intlfonts-1.4.1.ebuild @@ -0,0 +1,33 @@ +# Copyright 1999-2021 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 + +inherit font + +DESCRIPTION="International X11 fixed fonts" +HOMEPAGE="https://www.gnu.org/directory/intlfonts.html" +SRC_URI="mirror://gnu/${PN}/${P}.tar.gz" + +LICENSE="public-domain HPND GPL-3+-with-font-exception" +SLOT="0" +KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~ppc ~ppc64 ~s390 ~sparc ~x86" +IUSE="bdf" + +BDEPEND="x11-apps/bdftopcf + >=x11-apps/mkfontscale-1.2.0" + +DOCS=( ChangeLog NEWS README Emacs.ap ) + +src_configure() { + econf \ + --with-fontdir=/usr/share/fonts/${PN} \ + --enable-compress="gzip -9" \ + $(use_with bdf) +} + +src_install() { + emake install fontdir="${ED}/usr/share/fonts/${PN}" + einstalldocs + font_xfont_config +} |