net-libs/aqbanking: add 6.6.1

With stable keywords. Minimal changes, important fix for already
stabilised kmymoney-5.2.1.

Bug: https://bugs.gentoo.org/955181
Signed-off-by: Andreas Sturmlechner <asturm@gentoo.org>
This commit is contained in:
Andreas Sturmlechner
2025-08-06 17:03:16 +02:00
parent dfacae16a9
commit d76f1aa875
2 changed files with 60 additions and 0 deletions

View File

@@ -1 +1,2 @@
DIST aqbanking-6.6.0.tar.gz 2724090 BLAKE2B 32b5b83bd99f0404c84d0d1de096113c5236879535178f226d0ba5df1d9e9cc54bf2e1ba64af7c7e5e243ccf62dce3f44feb7e84dfe3327c9e9e79694418c53a SHA512 9275015f1c8885f9e59874abda3ad8977f0fddd24e80360ea1d88467832183d7bf4f3f3cb1138ede437a0e4f1bf8aec3d795d9a45f866e91a44936d7f30ec954
DIST aqbanking-6.6.1.tar.gz 2729954 BLAKE2B 1c4268d3f5e69cba93d071738d44a505d8c19ba2cbaf6a512fae6c46568701b8cbbc27439e01a02007157a7827daffabc6176c7875c8ed56d3bdfe8702336311 SHA512 7e0b0c675a412ee52ed3dc7bbaee2b1f2f7a5c583f69fe854ff1c074204440449c95f47a5b45cfeb4c9b7cebe1a092b9f1cd1055c637a23db4ce061c41f4f605

View File

@@ -0,0 +1,59 @@
# Copyright 1999-2025 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
DESCRIPTION="Generic Online Banking Interface"
HOMEPAGE="https://www.aquamaniac.de/sites/aqbanking/index.php"
SRC_URI="https://www.aquamaniac.de/rdm/attachments/download/535/${P}.tar.gz"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="amd64 ~arm64 ~ppc ~ppc64 ~riscv x86"
IUSE="debug doc ebics examples ofx"
DEPEND="
app-misc/ktoblzcheck
dev-libs/gmp:0=
>=sys-libs/gwenhywfar-5.10.1:=
virtual/libintl
ebics? ( dev-libs/xmlsec:=[gcrypt] )
ofx? ( >=dev-libs/libofx-0.9.5:= )
"
RDEPEND="${DEPEND}"
BDEPEND="
sys-devel/gettext
virtual/pkgconfig
doc? ( app-text/doxygen )
"
DOCS=( AUTHORS ChangeLog NEWS README TODO )
src_configure() {
local backends="aqhbci aqnone aqpaypal"
use ebics && backends="${backends} aqebics"
use ofx && backends="${backends} aqofxconnect"
local myeconfargs=(
--docdir="${EPREFIX}"/usr/share/doc/"${PF}"
$(use_enable debug)
$(use_enable doc full-doc)
--with-backends="${backends}"
)
econf "${myeconfargs[@]}"
}
src_install() {
emake DESTDIR="${D}" install
rm -rv "${ED}"/usr/share/doc/ || die "Failed to remove docs"
einstalldocs
if use examples; then
docinto tutorials
dodoc tutorials/*.{c,h} tutorials/README
fi
find "${D}" -name '*.la' -type f -delete || die
}