blob: 888c3edff09208c69338c1e7d8b620b441e4e3f2 (
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
|
# Copyright 1999-2021 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=7
MY_P="${P/-/_}.orig"
DESCRIPTION="Fontset for KON2"
# There seems to be no real homepage for this package
HOMEPAGE="https://packages.debian.org/stable/utils/konfont"
SRC_URI="mirror://debian/dists/potato/main/source/utils/${MY_P}.tar.gz"
LICENSE="public-domain"
SLOT=0
KEYWORDS="~alpha amd64 arm ~hppa ~ia64 ppc ~s390 sparc x86"
# Only installs fonts
RESTRICT="strip binchecks"
S="${WORKDIR}/${MY_P/_/-}/fonts"
src_install() {
insinto /usr/share/fonts
doins pubfont.*.gz
}
|