diff options
author | Cristian Othón Martínez Vera <cfuga@cfuga.mx> | 2023-02-17 13:54:28 -0600 |
---|---|---|
committer | Matt Turner <mattst88@gentoo.org> | 2023-02-17 17:56:18 -0500 |
commit | c6b41f893687fb2260649d97d84bb97ec4e63947 (patch) | |
tree | 678a73a5a7d752c10f059257b1a14e514c093347 /gnome-extra | |
parent | net-wireless/gr-osmosdr: add 0.2.4 (diff) | |
download | gentoo-c6b41f893687fb2260649d97d84bb97ec4e63947.tar.gz gentoo-c6b41f893687fb2260649d97d84bb97ec4e63947.tar.bz2 gentoo-c6b41f893687fb2260649d97d84bb97ec4e63947.zip |
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@cfuga.mx>
Signed-off-by: Matt Turner <mattst88@gentoo.org>
Diffstat (limited to 'gnome-extra')
-rw-r--r-- | gnome-extra/yelp/yelp-42.2-r1.ebuild | 57 |
1 files changed, 57 insertions, 0 deletions
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 +} |