blob: b34fc81b81e863f390c2a70eba02ab5d1810ea3e (
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
|
# Copyright 2024 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
inherit latex-package
DESCRIPTION="Font for Gentoo e.V. logo"
HOMEPAGE="https://gentoo-ev.org/"
SRC_URI="https://dev.gentoo.org/~ulm/distfiles/${P}.tar.xz"
LICENSE="|| ( GPL-2+-with-font-exception CC-BY-SA-4.0 )"
SLOT="0"
KEYWORDS="~amd64"
SUPPLIER="public"
src_install() {
latex-package_src_doinstall pfb afm tfm fd sty
local f
for f in enc map; do
insinto "${TEXMF}/fonts/${f}/dvips/${PN}"
doins *.${f}
done
insinto /etc/texmf/updmap.d
newins - 50${PN}.cfg <<< "Map gentoonewage.map"
dodoc README
}
|