commit: a612286a320b95f38a7eb8a4105b3c6ba8100677 Author: Nicolas PARLANT <nicolas.parlant <AT> parhuet <DOT> fr> AuthorDate: Mon Jan 13 13:15:39 2025 +0000 Commit: Andreas Sturmlechner <asturm <AT> gentoo <DOT> org> CommitDate: Fri Feb 14 13:06:47 2025 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a612286a
app-text/bibletime: add 3.1.0_rc3 qt6 port to qt6 use xdg instead of xdg-utils for auto pkg_post* plocales removed (~100K per qm, ~450K per handbook) custom .desktop removed. belongs to upstream. depclean: boost qtwebengine Closes: https://bugs.gentoo.org/926655 Signed-off-by: Nicolas PARLANT <nicolas.parlant <AT> parhuet.fr> Signed-off-by: Andreas Sturmlechner <asturm <AT> gentoo.org> app-text/bibletime/Manifest | 1 + app-text/bibletime/bibletime-3.1.0_rc3.ebuild | 45 +++++++++++++++++++++++++++ 2 files changed, 46 insertions(+) diff --git a/app-text/bibletime/Manifest b/app-text/bibletime/Manifest index 0f53ac88566b..631dc402b91a 100644 --- a/app-text/bibletime/Manifest +++ b/app-text/bibletime/Manifest @@ -1 +1,2 @@ DIST bibletime-3.0.3.tar.xz 1620012 BLAKE2B 5f2f5bb071d7ffb625bd687c99a328ba758f8e842138204aa770714f830594fe49c61a45e51f7de69d865b95b154ad934da7af49f391b22907773a1435e4fbbf SHA512 553549b39bf3341dbf310908b24db246d88ba01524d424de14ece35c12160565185547fc0250fe8bb248a32d8a012b99afbc022d9a513dcc916c3e8089f72090 +DIST bibletime-3.1.0_rc3.tar.xz 1563536 BLAKE2B 8f50e3493374fcc035b81e07ca14ce391653bcbb8156bd07ef1a7898da6899ac769225cbd2a19a8defa1bc32319f9fad849ad7a91729359f5f211990bb3b50a2 SHA512 e084aa00702a9860c7405742ae87f170aa3599eba59abcb266d529ccdb2fa8c2fab4a5b2dfaa39201a48229548c1de592c59e26554f1c5ceadba095515fc1ff6 diff --git a/app-text/bibletime/bibletime-3.1.0_rc3.ebuild b/app-text/bibletime/bibletime-3.1.0_rc3.ebuild new file mode 100644 index 000000000000..66339b1efaae --- /dev/null +++ b/app-text/bibletime/bibletime-3.1.0_rc3.ebuild @@ -0,0 +1,45 @@ +# Copyright 1999-2025 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +inherit cmake xdg + +DESCRIPTION="Qt Bible-study application using the SWORD library" +HOMEPAGE="https://bibletime.info" +SRC_URI="https://github.com/${PN}/${PN}/releases/download/v${PV}/${P}.tar.xz" + +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="~amd64" +IUSE="doc" + +RDEPEND=" + app-text/sword[curl,icu] + dev-cpp/clucene:1 + dev-qt/qtbase:6[gui,network,widgets,xml] + dev-qt/qtdeclarative:6[widgets] + dev-qt/qtsvg:6 +" +DEPEND="${RDEPEND}" +BDEPEND=" + dev-qt/qttools:6[linguist] + doc? ( + app-text/docbook-xml-dtd + app-text/docbook-xsl-stylesheets + app-text/po4a + dev-libs/libxslt + ) +" + +src_configure() { + local mycmakeargs=( + -DBUILD_HANDBOOK_HTML=$(usex doc) + -DBUILD_HANDBOOK_PDF=no + -DBUILD_HOWTO_HTML=$(usex doc) + -DBUILD_HOWTO_PDF=no + -DUSE_QT6=ON + ) + + cmake_src_configure +}
