diff options
author | 2023-04-15 06:35:13 +0100 | |
---|---|---|
committer | 2023-04-15 06:40:19 +0100 | |
commit | a3117f16e4cb57fafc625ed7ab2436dea09589ff (patch) | |
tree | 51e07b8c8300d64f2eb5e6565d78c10d92ab5e00 /net-libs/aqbanking/aqbanking-6.5.3-r1.ebuild | |
parent | app-emulation/open-vm-tools: depend on xmlsec subslot dep (diff) | |
download | gentoo-a3117f16e4cb57fafc625ed7ab2436dea09589ff.tar.gz gentoo-a3117f16e4cb57fafc625ed7ab2436dea09589ff.tar.bz2 gentoo-a3117f16e4cb57fafc625ed7ab2436dea09589ff.zip |
net-libs/aqbanking: depend on xmlsec subslot dep
xmlsec changed ABI.
Signed-off-by: Sam James <sam@gentoo.org>
Diffstat (limited to 'net-libs/aqbanking/aqbanking-6.5.3-r1.ebuild')
-rw-r--r-- | net-libs/aqbanking/aqbanking-6.5.3-r1.ebuild | 59 |
1 files changed, 59 insertions, 0 deletions
diff --git a/net-libs/aqbanking/aqbanking-6.5.3-r1.ebuild b/net-libs/aqbanking/aqbanking-6.5.3-r1.ebuild new file mode 100644 index 000000000000..97c9bc415b75 --- /dev/null +++ b/net-libs/aqbanking/aqbanking-6.5.3-r1.ebuild @@ -0,0 +1,59 @@ +# Copyright 1999-2023 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/467/${P}.tar.gz" + +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="amd64 ~arm64 ~ppc ~ppc64 ~riscv x86" +IUSE="debug doc ebics examples ofx" + +BDEPEND=" + sys-devel/gettext + virtual/pkgconfig + doc? ( app-doc/doxygen ) +" +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}" + +DOCS=( AUTHORS ChangeLog NEWS README TODO ) + +src_configure() { + local backends="aqhbci aqnone aqpaypal" + use ofx && backends="${backends} aqofxconnect" + use ebics && backends="${backends} aqebics" + + 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 +} |