diff options
author | Andreas Sturmlechner <asturm@gentoo.org> | 2024-04-14 21:27:27 +0200 |
---|---|---|
committer | Andreas Sturmlechner <asturm@gentoo.org> | 2024-04-14 22:01:11 +0200 |
commit | fa9e3cfc9380859fad47268d12224d33cdbf38bd (patch) | |
tree | d84583dc6ec1e7b0e77a2eef143f0b9e60d8a4cc | |
parent | kde-frameworks/kcrash: 6.1.0 version bump (diff) | |
download | gentoo-fa9e3cfc9380859fad47268d12224d33cdbf38bd.tar.gz gentoo-fa9e3cfc9380859fad47268d12224d33cdbf38bd.tar.bz2 gentoo-fa9e3cfc9380859fad47268d12224d33cdbf38bd.zip |
kde-frameworks/kdoctools: 6.1.0 version bump
Signed-off-by: Andreas Sturmlechner <asturm@gentoo.org>
-rw-r--r-- | kde-frameworks/kdoctools/Manifest | 1 | ||||
-rw-r--r-- | kde-frameworks/kdoctools/kdoctools-6.1.0.ebuild | 44 |
2 files changed, 45 insertions, 0 deletions
diff --git a/kde-frameworks/kdoctools/Manifest b/kde-frameworks/kdoctools/Manifest index 4274fd61bf84..6c9062633b74 100644 --- a/kde-frameworks/kdoctools/Manifest +++ b/kde-frameworks/kdoctools/Manifest @@ -1,2 +1,3 @@ DIST kdoctools-5.115.0.tar.xz 465436 BLAKE2B bf7af3333a8fbf121e326eaa2c54c16f9a9ba1552a982061337c365d57eb9d5beab8952f0360b6bb2c0bda07afd42fae050072a3ae9fafe32a54e77df4dce48d SHA512 f7c95c090899fa8d7ea0d730e48a87a4881f271a37bb1d0af6f67aaa52954613e957e04a91b94b985bf993c0b9db3736aa922033d100d2c8beb2f24ae50b2caf DIST kdoctools-6.0.0.tar.xz 459756 BLAKE2B a14f37ca0085e1ed18c957bcaa0def34d768a04c3521deb588a7dbec8eeb229a9c76527c4702a979d1634ed3c0429e8b92c52fcff11bbcf924e4e56560ee7560 SHA512 4df5febb7a8c7eb1ec54d3381b20a32783f63f12fcbe9be24162864093ffa05baca718c1bf99b1692da14f245f18060e5f44aeeabcbe46590f5769e3355d7eef +DIST kdoctools-6.1.0.tar.xz 460212 BLAKE2B 154f3b322ab2dbb19e3cfecb186a58db931324ebcfdaa72fcafadc7f2d564b685efe871836e0e0ecab5db4a0b2282581432686b1223d5c0bda1d194f2375b67b SHA512 51ea89b116502aa07ddc848d952247112d8aed0ff2d6f4b401a9b2d4ff2da65517f4cf1d973382b55428502ba5f1b2383b26aab878d5784764785779f72d42bf diff --git a/kde-frameworks/kdoctools/kdoctools-6.1.0.ebuild b/kde-frameworks/kdoctools/kdoctools-6.1.0.ebuild new file mode 100644 index 000000000000..95efa167a741 --- /dev/null +++ b/kde-frameworks/kdoctools/kdoctools-6.1.0.ebuild @@ -0,0 +1,44 @@ +# Copyright 1999-2024 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +ECM_QTHELP="false" +PVCUT=$(ver_cut 1-2) +inherit ecm frameworks.kde.org + +DESCRIPTION="Tools to generate documentation in various formats from DocBook files" + +LICENSE="MIT" +KEYWORDS="~amd64" +IUSE="nls" + +DEPEND=" + app-text/docbook-xml-dtd:4.5 + app-text/docbook-xsl-stylesheets + app-text/sgml-common + dev-libs/libxml2:2 + dev-libs/libxslt + =kde-frameworks/karchive-${PVCUT}*:6 +" +RDEPEND="${DEPEND}" +BDEPEND=" + dev-lang/perl + dev-perl/URI + nls? ( >=kde-frameworks/ki18n-${PVCUT}:6 ) +" + +CMAKE_SKIP_TESTS=( + # bug 665622 + kdoctools_install +) + +PATCHES=( "${FILESDIR}/${PN}-5.54.0-gentoo-docbundledir.patch" ) + +src_configure() { + local mycmakeargs=( + $(cmake_use_find_package nls KF6I18n) + ) + + ecm_src_configure +} |