blob: 7b03e84d2f8cd5ca68b51c9cb2d0c2eea3f8a80e (
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
|
# Copyright 1999-2014 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Id$
EAPI="5"
DESCRIPTION="Chinese font Vera Sans Yuan Ti (including Mono)"
HOMEPAGE=""
SRC_URI="
!minimal? (
ftp://ftp.bupt.edu.cn/pub/software/Chinese/Font-related/VeraSans/VeraSansYuanTi-Bold.zip
ftp://ftp.bupt.edu.cn/pub/software/Chinese/Font-related/VeraSans/VeraSansYuanTi-BoldItalic.zip
ftp://ftp.bupt.edu.cn/pub/software/Chinese/Font-related/VeraSans/VeraSansYuanTi-Italic.zip
)
ftp://ftp.bupt.edu.cn/pub/software/Chinese/Font-related/VeraSans/VeraSansYuanTi-Regular.zip
!minimal? (
ftp://ftp.bupt.edu.cn/pub/software/Chinese/Font-related/VeraSans/VeraSansYuanTiMono-Bold.zip
ftp://ftp.bupt.edu.cn/pub/software/Chinese/Font-related/VeraSans/VeraSansYuanTiMono-BoldItalic.zip
ftp://ftp.bupt.edu.cn/pub/software/Chinese/Font-related/VeraSans/VeraSansYuanTiMono-Italic.zip
)
ftp://ftp.bupt.edu.cn/pub/software/Chinese/Font-related/VeraSans/VeraSansYuanTiMono-Regular.zip
"
LICENSE="all-rights-reserved"
SLOT="0"
KEYWORDS="~amd64 ~x86"
IUSE="minimal"
RESTRICT=""
S="${WORKDIR}"
src_install() {
insinto /usr/share/fonts/${PN}
doins *.ttf || die
}
|