blob: 55a94f7b57770140910d3f4d7462a549d0cc1d72 (
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
46
|
# Copyright 1999-2018 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=6
PYTHON_COMPAT=( python2_7 )
inherit font python-any-r1
DESCRIPTION="Google Noto Emoji fonts"
HOMEPAGE="https://www.google.com/get/noto/ https://github.com/googlei18n/noto-emoji"
COMMIT="3ffd20ec7504657aa17c84f9aa475ad09b20c362"
SRC_URI="https://github.com/googlei18n/noto-emoji/archive/${COMMIT}.tar.gz -> ${P}.tar.gz"
LICENSE="Apache-2.0"
SLOT="0"
KEYWORDS="~amd64"
IUSE=""
DEPEND="${PYTHON_DEPS}
app-arch/zopfli
dev-python/fonttools
dev-python/nototools
media-gfx/pngquant
x11-libs/cairo
"
RDEPEND=""
RESTRICT="binchecks strip"
S="${WORKDIR}/${PN}-${COMMIT}"
FONT_S="${S}"
FONT_SUFFIX="ttf"
PATCHES=(
# From Fedora
"${FILESDIR}/${PN}-use-system-pngquant.patch"
"${FILESDIR}/${PN}-build-all-flags.patch"
)
src_prepare() {
default
# Use system pngquant
rm -rf third_party/pngquant
}
|