blob: d5c2a8b92d06c696eeeded3072d7352203fa5360 (
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
|
# Copyright 1999-2020 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=7
inherit cmake font kde.org xdg-utils
DESCRIPTION="Desktop/GUI font family for integrated use with the KDE Plasma desktop"
HOMEPAGE="https://cgit.kde.org/oxygen-fonts.git"
SRC_URI="mirror://kde/unstable/plasma/$(ver_cut 1-3)/${P}.tar.xz"
LICENSE="OFL-1.1"
SLOT="5"
KEYWORDS="amd64 ~arm x86"
IUSE=""
BDEPEND="
>=dev-qt/qtcore-5.12.3:5
>=kde-frameworks/extra-cmake-modules-5.60.0:5
media-gfx/fontforge
"
DOCS=( README.md )
PATCHES=( "${FILESDIR}/${P}-fix-d-and-t-accents.patch" )
src_configure() {
xdg_environment_reset
local mycmakeargs=(
-DOXYGEN_FONT_INSTALL_DIR="${FONTDIR}"
)
cmake_src_configure
}
src_install() {
cmake_src_install
font_src_install
}
|