blob: 8237555a800c00ec4f1c4215e1270c3ccc4a23db (
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
|
# Copyright 1999-2021 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=7
inherit font
DESCRIPTION="Korean monospace font distributed by NHN"
HOMEPAGE="https://developers.naver.com/projects/nanumfont"
SRC_URI="http://dev.naver.com/frs/download.php/441/NanumGothicCoding-${PV}.zip"
S="${WORKDIR}"
LICENSE="OFL-1.1"
SLOT="0"
KEYWORDS="amd64 x86"
IUSE=""
# Only installs fonts
RESTRICT="strip binchecks"
BDEPEND="app-arch/unzip"
FONT_SUFFIX="ttf"
src_prepare() {
default
# Rename names in cp949 encoding, bug #322041
mkdir recode || die
mv *-Bold.ttf recode/${PN}-Bold.ttf || die
mv *.ttf recode/${PN}.ttf || die
mv recode/* . || die
}
|