mirror of
https://github.com/gentoo-mirror/gentoo.git
synced 2025-12-21 21:17:37 -08:00
sed -E '/dev-libs\/gobject-introspection(:=|\s|$|-[0-9]|\[)/ { s/(>=)?dev-libs\/gobject-introspection(-[0-9.r-]*)?/>=dev-libs\/gobject-introspection-1.82.0-r2/ }' */*/*.ebuild -i
+ manually going over to undo the false positives or if the version
requirement was higher.
Bug: https://bugs.gentoo.org/947058
See-Also: ae37e3f389808700bd0f4343ee04888f0ef179d2
Signed-off-by: Alfred Wingate <parona@protonmail.com>
Part-of: https://github.com/gentoo/gentoo/pull/44336
Closes: https://github.com/gentoo/gentoo/pull/44336
Signed-off-by: Sam James <sam@gentoo.org>
54 lines
1.1 KiB
Bash
54 lines
1.1 KiB
Bash
# Copyright 1999-2025 Gentoo Authors
|
|
# Distributed under the terms of the GNU General Public License v2
|
|
|
|
EAPI=8
|
|
|
|
inherit gnome2 vala
|
|
|
|
DESCRIPTION="Integrated LaTeX environment for GNOME"
|
|
HOMEPAGE="https://gitlab.gnome.org/swilmet/gnome-latex"
|
|
|
|
LICENSE="GPL-3+"
|
|
SLOT="0"
|
|
KEYWORDS="amd64 ~riscv x86"
|
|
IUSE="+introspection +latexmk rubber"
|
|
|
|
DEPEND="
|
|
>=dev-libs/glib-2.70:2
|
|
>=x11-libs/gtk+-3.22:3
|
|
>=app-text/gspell-1.8:0=
|
|
>=gui-libs/libgedit-amtk-5:=
|
|
>=gui-libs/tepl-6.8:=
|
|
>=dev-libs/libgee-0.10:0.8=
|
|
gnome-base/gsettings-desktop-schemas
|
|
x11-libs/gdk-pixbuf:2
|
|
x11-libs/pango
|
|
introspection? ( >=dev-libs/gobject-introspection-1.82.0-r2:= )
|
|
gnome-base/dconf
|
|
"
|
|
RDEPEND="${DEPEND}
|
|
virtual/latex-base
|
|
x11-themes/hicolor-icon-theme
|
|
latexmk? ( dev-tex/latexmk )
|
|
rubber? ( dev-tex/rubber )
|
|
"
|
|
BDEPEND="
|
|
$(vala_depend)
|
|
dev-util/gdbus-codegen
|
|
dev-util/glib-utils
|
|
>=dev-build/gtk-doc-am-1.14
|
|
dev-util/itstool
|
|
>=sys-devel/gettext-0.19.6:0
|
|
virtual/pkgconfig
|
|
"
|
|
|
|
pkg_setup() {
|
|
vala_setup
|
|
}
|
|
|
|
src_configure() {
|
|
gnome2_src_configure \
|
|
$(use_enable introspection) \
|
|
--enable-dconf_migration
|
|
}
|