aboutsummaryrefslogtreecommitdiff
blob: 540fd1c48b4067b0f3abf4c625a852c04e838ad5 (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
32
33
34
35
36
37
38
39
40
41
42
43
44
45
# Copyright 1999-2021 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2

EAPI="7"

PYTHON_COMPAT=( python3_{7,8} )
inherit font python-any-r1

DESCRIPTION="A IBM 3270 Terminal font in a modern format"
HOMEPAGE="https://github.com/rbanffy/3270font"
SRC_URI="https://github.com/rbanffy/3270font/archive/v${PV}.tar.gz -> ${P}.tar.gz"

LICENSE="BSD CC-BY-SA-3.0 GPL-3 OFL"
SLOT="0"
KEYWORDS="~amd64"

IUSE="test"
RESTRICT="!test? ( test )"

DOCS=( CHANGELOG.md README.md  )
HTML_DOCS=( "DESCRIPTION.en_us.html" )

PATCHES=( "${FILESDIR}/remove-useless-tests.patch" )
RDEPEND="
	media-gfx/fontforge
"
DEPEND="
	${PYTHON_DEPS}
	${RDEPEND}
	test? (
		dev-python/ipdb
		dev-python/pillow
	)
"

FONT_S="${S}/build"
FONT_SUFFIX="otf ttf pfm woff"

src_compile() {
	emake font
}

src_test() {
	emake test
}