blob: 81767aed5c9c391ea78db33a5c84ae12229295dc (
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
47
48
49
50
51
|
# Copyright 1999-2022 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=7
GNOME_ORG_MODULE="${PN}-fonts"
inherit font gnome.org meson
DESCRIPTION="Default fontset for GNOME Shell"
HOMEPAGE="https://wiki.gnome.org/Projects/CantarellFonts"
LICENSE="OFL-1.1"
SLOT="0"
KEYWORDS="~alpha amd64 ~arm ~arm64 ~hppa ~ia64 ~loong ~mips ppc ~ppc64 ~riscv ~s390 ~sparc x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
IUSE=""
BDEPEND="
>=sys-devel/gettext-0.20
virtual/pkgconfig
"
# This ebuild does not install any binaries
RESTRICT="binchecks strip"
# Font eclass settings
FONT_S="${S}/prebuilt"
FONT_SUFFIX="otf"
src_prepare() {
# Leave prebuilt font installation to font.eclass
sed -e "/subdir('prebuilt')/d" -i meson.build || die
default
}
src_configure() {
local emesonargs=(
-Dfontsdir=${FONTDIR}
-Duseprebuilt=true
-Dbuildappstream=true
-Dbuildstatics=false
-Dbuildvf=true
)
meson_src_configure
}
src_install() {
font_src_install
local DOCS=( NEWS README.md )
meson_src_install
}
|