app-text/bibletime: Bump to 3.1.1

Signed-off-by: Nicolas PARLANT <nicolas.parlant@parhuet.fr>
Closes: https://github.com/gentoo/gentoo/pull/41219
Signed-off-by: Sam James <sam@gentoo.org>
This commit is contained in:
Nicolas PARLANT
2025-03-22 06:45:45 +00:00
committed by Sam James
parent abb6607f7f
commit b93e89ebe7
2 changed files with 45 additions and 0 deletions

View File

@@ -1 +1,2 @@
DIST bibletime-3.1.0.tar.xz 1570636 BLAKE2B a6907a84ff2f760998928debf435bdaafbbcc0fa1b4762f3a6a2e4c2bc2e6c9433be438b0da291b3bad51f7db1ae6af0f85eb88b736d9f2d18a25d72011d9aa2 SHA512 c8181e4cfe25bd4c2cbe0b13936202b95cd3bf7bff14240e5ee545220204405cbe0b392ca3e9829fbe8ddff9cf66e15ba1e1294f901546fd91d7c245f0c1bd0c
DIST bibletime-3.1.1.tar.xz 1571864 BLAKE2B b19492d64f43f28c52e572d62c35c3d1c9bad56757e7b2f8669a2c50bf6910e924857c2d8cc734a011814429f49e2e3e35329971609cdd534297e1d9f70a4b9a SHA512 1760b70e73f42685be3ccc041d2e009f1ee7fbb56991da2cdf12c9b9c0e7cc9fabe878b6c85aa0443b6417c726a31878213fc55bc3ceea8ef910c78ded6ebd96

View File

@@ -0,0 +1,44 @@
# 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
)
cmake_src_configure
}