diff options
author | 2025-01-13 13:15:39 +0000 | |
---|---|---|
committer | 2025-02-14 14:06:47 +0100 | |
commit | a612286a320b95f38a7eb8a4105b3c6ba8100677 (patch) | |
tree | 04d7503120bbc95dac1fc90ebe1e22f0baa47ae8 /app-text | |
parent | sys-devel/binutils: canonicalise some bug URLs (diff) | |
download | gentoo-a612286a320b95f38a7eb8a4105b3c6ba8100677.tar.gz gentoo-a612286a320b95f38a7eb8a4105b3c6ba8100677.tar.bz2 gentoo-a612286a320b95f38a7eb8a4105b3c6ba8100677.zip |
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@parhuet.fr>
Signed-off-by: Andreas Sturmlechner <asturm@gentoo.org>
Diffstat (limited to 'app-text')
-rw-r--r-- | app-text/bibletime/Manifest | 1 | ||||
-rw-r--r-- | app-text/bibletime/bibletime-3.1.0_rc3.ebuild | 45 |
2 files changed, 46 insertions, 0 deletions
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 +} |