commit: c6b41f893687fb2260649d97d84bb97ec4e63947 Author: Cristian Othón Martínez Vera <cfuga <AT> cfuga <DOT> mx> AuthorDate: Fri Feb 17 19:54:28 2023 +0000 Commit: Matt Turner <mattst88 <AT> gentoo <DOT> org> CommitDate: Fri Feb 17 22:56:18 2023 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c6b41f89
gnome-extra/yelp: migrate to net-libs/webkit-gtk:4.1 If you omit the parameter for configure --with-webkit2gtk-4-0 it automagically links against webkit-gtk:4.1 instead of version 4.0. The change for this option was introduced in the following commit, and it's valid since yelp version 41.0. https://gitlab.gnome.org/GNOME/yelp/-/commit/47b0dc96dc0e82102600365b83353d7922f1a94d Bug: https://bugs.gentoo.org/893694 Closes: https://github.com/gentoo/gentoo/pull/29640 Signed-off-by: Cristian Othón Martínez Vera <cfuga <AT> cfuga.mx> Signed-off-by: Matt Turner <mattst88 <AT> gentoo.org> gnome-extra/yelp/yelp-42.2-r1.ebuild | 57 ++++++++++++++++++++++++++++++++++++ 1 file changed, 57 insertions(+) diff --git a/gnome-extra/yelp/yelp-42.2-r1.ebuild b/gnome-extra/yelp/yelp-42.2-r1.ebuild new file mode 100644 index 000000000000..75a1f09987ab --- /dev/null +++ b/gnome-extra/yelp/yelp-42.2-r1.ebuild @@ -0,0 +1,57 @@ +# Copyright 1999-2023 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 +GNOME2_EAUTORECONF="yes" + +inherit gnome2 + +DESCRIPTION="Help browser for GNOME" +HOMEPAGE="https://wiki.gnome.org/Apps/Yelp" + +LICENSE="GPL-2+" +SLOT="0" +KEYWORDS="~amd64 ~arm ~arm64 ~ppc ~ppc64 ~riscv ~sparc ~x86 ~amd64-linux ~x86-linux ~x86-solaris" + +RDEPEND=" + app-arch/bzip2:= + >=app-arch/xz-utils-4.9:= + dev-db/sqlite:3= + >=dev-libs/glib-2.67.4:2 + >=dev-libs/libxml2-2.6.5:2 + >=dev-libs/libxslt-1.1.4 + >=gnome-extra/yelp-xsl-41.0 + net-libs/webkit-gtk:4.1 + >=x11-libs/gtk+-3.13.3:3 + >=gui-libs/libhandy-1.5.0:1 + x11-themes/adwaita-icon-theme +" +DEPEND="${RDEPEND}" +BDEPEND=" + dev-libs/appstream-glib + >=dev-util/gtk-doc-am-1.13 + dev-util/glib-utils + dev-util/itstool + >=sys-devel/gettext-0.19.8 + virtual/pkgconfig +" + +PATCHES=( + # Fix compatibility with Gentoo's sys-apps/man + # https://bugzilla.gnome.org/show_bug.cgi?id=648854 + "${FILESDIR}"/${PN}-3.20.0-man-compatibility.patch # needs eautoreconf +) + +src_configure() { + gnome2_src_configure \ + --disable-static \ + --enable-bz2 \ + --enable-lzma \ + APPSTREAM_UTIL=$(type -P true) +} + +src_install() { + gnome2_src_install + exeinto /usr/libexec/ + doexe "${S}"/libyelp/yelp-groff +}
