blob: bb4158868676c437b5a6def9a77bb0e73d372ae0 (
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
|
# Copyright 1999-2018 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
EAPI=6
inherit font
DESCRIPTION="Hacking with Style: TrueType VT220 Font"
HOMEPAGE="http://sensi.org/~svo/glasstty/"
SRC_URI="http://sensi.org/~svo/glasstty/Glass_TTY_VT220.ttf -> Glass_TTY_VT220-${PV}.ttf"
KEYWORDS="~amd64 ~arm ~arm64 x86"
LICENSE="freedist"
SLOT="0"
RESTRICT="mirror"
S="${DISTDIR}"
FONT_S="${S}"
FONT_SUFFIX="ttf"
src_unpack() {
return
}
pkg_postinst() {
einfo "When using the GlassTTY VT220 font, you must set the font size to 15."
}
|