From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from smtp.gentoo.org (woodpecker.gentoo.org [140.211.166.183]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 97292158074 for ; Sat, 21 Jun 2025 13:25:16 +0000 (UTC) Received: from lists.gentoo.org (bobolink.gentoo.org [140.211.166.189]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange x25519 server-signature RSA-PSS (4096 bits) server-digest SHA256) (No client certificate requested) (Authenticated sender: relay-lists.gentoo.org@gentoo.org) by smtp.gentoo.org (Postfix) with ESMTPSA id 46432341FB9 for ; Sat, 21 Jun 2025 13:21:04 +0000 (UTC) Received: from bobolink.gentoo.org (localhost [127.0.0.1]) by bobolink.gentoo.org (Postfix) with ESMTP id 3C1041104D9; Sat, 21 Jun 2025 13:21:03 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange x25519 server-signature RSA-PSS (4096 bits) server-digest SHA256) (No client certificate requested) by bobolink.gentoo.org (Postfix) with ESMTPS id 2C4D01104D9 for ; Sat, 21 Jun 2025 13:21:03 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange x25519) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id CEFD2341F95 for ; Sat, 21 Jun 2025 13:21:02 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 6CE8E2A08 for ; Sat, 21 Jun 2025 13:21:01 +0000 (UTC) From: "Hans de Graaff" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Hans de Graaff" Message-ID: <1750512049.23d1ffac1aa687e5f6708c2d2edfafda43ba7a4e.graaff@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: app-crypt/xca/ X-VCS-Repository: repo/gentoo X-VCS-Files: app-crypt/xca/xca-2.9.0-r1.ebuild X-VCS-Directories: app-crypt/xca/ X-VCS-Committer: graaff X-VCS-Committer-Name: Hans de Graaff X-VCS-Revision: 23d1ffac1aa687e5f6708c2d2edfafda43ba7a4e X-VCS-Branch: master Date: Sat, 21 Jun 2025 13:21:01 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply X-Archives-Salt: f83d3e64-a314-4e23-a0bf-9c27313bf5af X-Archives-Hash: 494289255edce66aaa7e640e0d5034a9 commit: 23d1ffac1aa687e5f6708c2d2edfafda43ba7a4e Author: Hans de Graaff gentoo org> AuthorDate: Sat Jun 21 13:20:19 2025 +0000 Commit: Hans de Graaff gentoo org> CommitDate: Sat Jun 21 13:20:49 2025 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=23d1ffac app-crypt/xca: fix automagic doc building Closes: https://bugs.gentoo.org/938914 Signed-off-by: Hans de Graaff gentoo.org> app-crypt/xca/xca-2.9.0-r1.ebuild | 73 +++++++++++++++++++++++++++++++++++++++ 1 file changed, 73 insertions(+) diff --git a/app-crypt/xca/xca-2.9.0-r1.ebuild b/app-crypt/xca/xca-2.9.0-r1.ebuild new file mode 100644 index 000000000000..83c0e44f35fa --- /dev/null +++ b/app-crypt/xca/xca-2.9.0-r1.ebuild @@ -0,0 +1,73 @@ +# Copyright 1999-2025 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI="8" + +inherit cmake virtualx xdg-utils + +DESCRIPTION="A GUI to OpenSSL, RSA public keys, certificates, signing requests etc" +HOMEPAGE="https://hohnstaedt.de/xca/" +SRC_URI="https://github.com/chris2511/xca/archive/refs/tags/RELEASE.${PV}.tar.gz -> ${P}.tar.gz" +S="${WORKDIR}/xca-RELEASE.${PV}" + +LICENSE="BSD" +SLOT="0" +KEYWORDS="~amd64 ~ppc ~x86 ~amd64-linux ~x86-linux ~ppc-macos" +IUSE="doc" + +RDEPEND=" + dev-libs/libltdl:0= + dev-qt/qtbase:6[sqlite,widgets] + dev-qt/qttools:6[assistant] + dev-libs/openssl:* + doc? ( app-text/linuxdoc-tools )" +DEPEND="${RDEPEND}" +BDEPEND=" + dev-qt/qttools:6[linguist] + doc? ( dev-python/sphinx dev-python/sphinxcontrib-htmlhelp dev-python/sphinxcontrib-qthelp ) +" + +PATCHES=( + "${FILESDIR}/${PN}-2.8.0-man-page.patch" +) + +src_configure() { + if ! use doc; then + xca_docs=-DSPHINX= + fi + + local mycmakeargs=( + -DQTFIXEDVERSION=Qt6 + $xca_docs + ) + cmake_src_configure +} + +src_compile() { + cmake_src_compile +} + +src_test() { + virtx default +} + +src_install() { + cmake_src_install + + insinto /etc/xca + doins misc/*.txt + + dosym xca /usr/bin/xca-console +} + +pkg_postinst() { + xdg_icon_cache_update + xdg_desktop_database_update + xdg_mimeinfo_database_update +} + +pkg_postrm() { + xdg_icon_cache_update + xdg_desktop_database_update + xdg_mimeinfo_database_update +}