Diff pango-1.52.2 with a pango-1.54.0

/usr/portage/x11-libs/pango/pango-1.54.0.ebuild 2025-07-29 16:22:17.964470355 +0300
7 7

  
8 8
DESCRIPTION="Internationalized text layout and rendering library"
9 9
HOMEPAGE="https://www.gtk.org/docs/architecture/pango https://gitlab.gnome.org/GNOME/pango"
10
SRC_URI="http://ftp.gnome.org/pub/GNOME/sources/pango/$(ver_cut 1-2)/${P}.tar.xz"
10
SRC_URI="https://download.gnome.org/sources/pango/$(ver_cut 1-2)/${P}.tar.xz"
11 11

  
12 12
LICENSE="LGPL-2+"
13 13
SLOT="0"
14
KEYWORDS="~alpha amd64 arm arm64 hppa ~loong ~m68k ~mips ppc ppc64 ~riscv ~s390 sparc x86"
14
KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~loong ~m68k ~mips ~ppc ~ppc64 ~riscv ~s390 ~sparc ~x86"
15 15

  
16
IUSE="debug +introspection sysprof test X"
16
IUSE="debug examples +introspection sysprof test X"
17 17
RESTRICT="!test? ( test )"
18 18

  
19 19
RDEPEND="
......
45 45
	default
46 46
	xdg_environment_reset
47 47
	gnome2_environment_reset
48

  
49
	# get rid of a win32 example
50
	rm examples/pangowin32tobmp.c || die
48 51
}
49 52

  
50 53
multilib_src_configure() {
......
58 61
		# Never use gi-docgen subproject
59 62
		--wrap-mode nofallback
60 63

  
61
		-Dgtk_doc=false # we ship pregenerated docs
64
		-Ddocumentation=false # we ship pregenerated docs
62 65
		$(meson_native_use_feature introspection)
63
		-Dinstall-tests=false
66
		$(meson_use test build-testsuite)
67
		-Dbuild-examples=false
64 68
		-Dfontconfig=enabled
65 69
		$(meson_feature sysprof)
66 70
		-Dlibthai=disabled
......
72 76
}
73 77

  
74 78
multilib_src_install_all() {
79
	if use examples; then
80
		dodoc -r examples
81
	fi
82

  
75 83
	insinto /usr/share/gtk-doc/html
76 84
	# This will install PangoXft API docs regardless of USE=-X, but this is intentional
77 85
	doins -r "${S}"/docs/Pango*
Thank you!