mirror of
https://anongit.gentoo.org/git/repo/gentoo.git
synced 2025-06-09 22:54:10 +02:00
See also: https://community.kde.org/Frameworks/6.0_Release_notes#Coinstallability "Only one version of extra-cmake-modules can be installed. The KF6 version is backwards compatible and should also be used for KF5 builds." Signed-off-by: Andreas Sturmlechner <asturm@gentoo.org>
39 lines
791 B
Bash
39 lines
791 B
Bash
# Copyright 1999-2022 Gentoo Authors
|
|
# Distributed under the terms of the GNU General Public License v2
|
|
|
|
EAPI=8
|
|
|
|
inherit cmake font kde.org xdg-utils
|
|
|
|
DESCRIPTION="Desktop/GUI font family for integrated use with the KDE Plasma desktop"
|
|
HOMEPAGE="https://invent.kde.org/unmaintained/oxygen-fonts"
|
|
SRC_URI="mirror://kde/Attic/plasma/${PV}/${P}.tar.xz"
|
|
|
|
LICENSE="OFL-1.1"
|
|
SLOT="5"
|
|
KEYWORDS="amd64 ~arm ~loong x86"
|
|
IUSE=""
|
|
|
|
BDEPEND="
|
|
>=dev-qt/qtcore-5.12.3:5
|
|
>=kde-frameworks/extra-cmake-modules-5.60.0:0
|
|
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
|
|
}
|