commit: 9ae0688b496d109bcd5028678cdda5d778925fa7 Author: Michał Górny <mgorny <AT> gentoo <DOT> org> AuthorDate: Mon Sep 8 04:40:12 2025 +0000 Commit: Michał Górny <mgorny <AT> gentoo <DOT> org> CommitDate: Mon Sep 8 05:39:18 2025 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9ae0688b
net-news/rssguard: Bump to 4.8.6 Signed-off-by: Michał Górny <mgorny <AT> gentoo.org> net-news/rssguard/Manifest | 1 + net-news/rssguard/rssguard-4.8.6.ebuild | 66 +++++++++++++++++++++++++++++++++ 2 files changed, 67 insertions(+) diff --git a/net-news/rssguard/Manifest b/net-news/rssguard/Manifest index 1b43079c7e48..1b51c4f01150 100644 --- a/net-news/rssguard/Manifest +++ b/net-news/rssguard/Manifest @@ -1 +1,2 @@ DIST rssguard-4.8.5.gh.tar.gz 24049136 BLAKE2B cb427d45ed5c0b059b6cab3aeeb5d89af0e32094ddb895837494f2b9f1980680923d1e52bc62b57ec715f55e432e827e6679019e8fd001bc93c6bc4d150b5752 SHA512 b8cac5db93172650c4bc5e88e3951f90f88d6edb8d1e430d03c3d7e55d20fd031fa382cf77771a143c52c6ba7d60898571795b5e75b001d2c540bbd05262f635 +DIST rssguard-4.8.6.gh.tar.gz 24055627 BLAKE2B f8ddf0cdfe5d495f9e76299397df8748b50065c45b99cfdefab1e7eeab22e454bb4b66aae7d0b369a3f5e9c5ad7da5aee28905e200f36d4fa12ca9bd925bdc8b SHA512 1d229355cd422607b3c22f42569bd8f0c4ca7c7cef10311e3ae12782b22c6ebeaa2b9a5227b6f1b9c9bbb5333f486e070abce623a9f214a5a0442d52e5ab6c0a diff --git a/net-news/rssguard/rssguard-4.8.6.ebuild b/net-news/rssguard/rssguard-4.8.6.ebuild new file mode 100644 index 000000000000..f4b49c7126c5 --- /dev/null +++ b/net-news/rssguard/rssguard-4.8.6.ebuild @@ -0,0 +1,66 @@ +# Copyright 1999-2025 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +inherit cmake optfeature xdg + +DESCRIPTION="Simple (yet powerful) news feed reader" +HOMEPAGE="https://github.com/martinrotter/rssguard/" +SRC_URI=" + https://github.com/martinrotter/rssguard/archive/${PV}.tar.gz + -> ${P}.gh.tar.gz +" + +LICENSE="|| ( LGPL-3 GPL-2+ ) AGPL-3+ BSD GPL-3+ MIT" +SLOT="0" +KEYWORDS="~amd64" +IUSE="libmpv mysql qtmultimedia +sqlite webengine" +REQUIRED_USE=" + || ( mysql sqlite ) + ?? ( libmpv qtmultimedia ) +" + +BDEPEND=" + dev-qt/qttools:6[linguist] +" +DEPEND=" + dev-qt/qtbase:6[concurrent,dbus,gui,mysql?,network,sql,sqlite?,ssl,widgets] + dev-qt/qtdeclarative:6 + dev-qt/qtmultimedia:6[gstreamer] + dev-qt/qt5compat:6 + media-libs/libglvnd + sys-libs/zlib:= + libmpv? ( + dev-qt/qtbase:6[opengl] + media-video/mpv:= + ) + qtmultimedia? ( + dev-qt/qtbase:6[opengl] + dev-qt/qtmultimedia:6 + ) + webengine? ( dev-qt/qtwebengine:6[widgets(+)] ) +" +RDEPEND="${DEPEND}" + +src_configure() { + local mycmakeargs=( + -DBUILD_WITH_QT6=ON + -DNO_LITE=$(usex webengine) + -DREVISION_FROM_GIT=OFF + -DNO_UPDATE_CHECK=ON + -DENABLE_COMPRESSED_SITEMAP=ON + -DENABLE_MEDIAPLAYER_QTMULTIMEDIA=$(usex qtmultimedia) + -DENABLE_MEDIAPLAYER_LIBMPV=$(usex libmpv) + # recommended + -DMEDIAPLAYER_FORCE_OPENGL=ON + ) + + cmake_src_configure +} + +pkg_postinst() { + xdg_pkg_postinst + + optfeature "ad blocking functionality" "net-libs/nodejs[npm]" +}
