# Copyright 1999-2024 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI=8 inherit font DESCRIPTION="An icon font providing popular linux distro's logos" HOMEPAGE="https://lukas-w.github.io/font-logos/" LICENSE="unlicense" SLOT="0" if [[ "${PV}" == 9999* ]]; then inherit git-r3 EGIT_REPO_URI="https://github.com/lukas-w/font-logos" else SRC_URI="https://github.com/lukas-w/font-logos/archive/v${PV}.tar.gz -> ${P}.tar.gz" KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ppc ~ppc64 ~s390 ~sparc ~x86" fi IUSE="webfonts" src_install() { FONT_S="${S}/assets" FONT_SUFFIX="ttf" font_src_install use webfonts && ( insinto /usr/share/webfonts/${PN}; doins assets/{${PN}-preview.html,preview.png,${PN}.{woff,eot,css,svg}} ) }