blob: 46f0034b3759b645d5a3677f29b4dbdc75e455ca (
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
|
# Copyright 1999-2014 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/media-fonts/wqy-microhei/wqy-microhei-0.2.0_beta-r1.ebuild,v 1.1 2014/11/14 03:23:05 dlan Exp $
EAPI=5
inherit font
MY_P="${P/_/-}"
DESCRIPTION="A droid derived Sans-Serif style CJK font"
HOMEPAGE="http://wqy.sourceforge.net/en/"
SRC_URI="mirror://sourceforge/wqy/${MY_P}.tar.gz
http://dev.gentoo.org/~dlan/distfiles/${PN}.ttc.xd3"
LICENSE="Apache-2.0 GPL-3"
SLOT="0"
KEYWORDS="~amd64 ~x86"
IUSE=""
# Only installs fonts
RESTRICT="strip binchecks"
S="${WORKDIR}/${PN}"
FONT_S="${S}"
FONT_SUFFIX="ttc"
DOCS="AUTHORS.txt ChangeLog.txt README.txt"
DEPEND="${DEPEND}
dev-util/xdelta:3"
src_prepare() {
xdelta3 -f -d -s "${S}"/wqy-microhei.ttc "${DISTDIR}"/wqy-microhei.ttc.xd3 "${S}"/wqy-microhei.ttc || die
}
|