Diff font-alias-1.0.5 with a font-alias-1.0.6

/usr/portage/media-fonts/font-alias/font-alias-1.0.6.ebuild 2026-04-10 12:17:39.710735387 +0300
1
# Copyright 1999-2025 Gentoo Authors
1
# Copyright 1999-2026 Gentoo Authors
2 2
# Distributed under the terms of the GNU General Public License v2
3 3

  
4 4
EAPI=8
5 5
XORG_PACKAGE_NAME="alias"
6
inherit xorg-3
6
inherit xorg-meson
7 7

  
8 8
DESCRIPTION="X.Org font aliases"
9 9

  
......
12 12
BDEPEND="x11-apps/mkfontscale
13 13
	>=media-fonts/font-util-1.1.1-r1"
14 14

  
15
XORG_CONFIGURE_OPTIONS=(
16
	# https://bugs.gentoo.org/815520
17
	--with-fontrootdir="${EPREFIX}"/usr/share/fonts
18
)
15
src_configure() {
16
	local XORG_CONFIGURE_OPTIONS=(
17
		# https://bugs.gentoo.org/815520
18
		-Dfontrootdir="${EPREFIX}"/usr/share/fonts
19
	)
20
	xorg-meson_src_configure
21
}
Thank you!