diff options
author | Peter Levine <plevine457@gmail.com> | 2019-09-22 16:09:09 -0400 |
---|---|---|
committer | Andreas Sturmlechner <asturm@gentoo.org> | 2019-10-13 13:40:26 +0200 |
commit | 94d19cd088f69c35b8abbb4454d3bd631223d513 (patch) | |
tree | 6528aa8a9b69ea83b64d93f68976a50084690cfe /net-libs | |
parent | app-office/gnucash: Fix sys-libs/gwenhywfar dependency (diff) | |
download | gentoo-94d19cd088f69c35b8abbb4454d3bd631223d513.tar.gz gentoo-94d19cd088f69c35b8abbb4454d3bd631223d513.tar.bz2 gentoo-94d19cd088f69c35b8abbb4454d3bd631223d513.zip |
net-libs/aqbanking: Rename chipcard USE flag to smartcard
Bug: https://bugs.gentoo.org/682120
Package-Manager: Portage-2.3.76, Repoman-2.3.17
Signed-off-by: Peter Levine <plevine457@gmail.com>
Signed-off-by: Andreas Sturmlechner <asturm@gentoo.org>
Diffstat (limited to 'net-libs')
-rw-r--r-- | net-libs/aqbanking/aqbanking-5.8.2-r1.ebuild | 63 |
1 files changed, 63 insertions, 0 deletions
diff --git a/net-libs/aqbanking/aqbanking-5.8.2-r1.ebuild b/net-libs/aqbanking/aqbanking-5.8.2-r1.ebuild new file mode 100644 index 000000000000..beaf2b7e4f69 --- /dev/null +++ b/net-libs/aqbanking/aqbanking-5.8.2-r1.ebuild @@ -0,0 +1,63 @@ +# Copyright 1999-2019 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 + +DESCRIPTION="Generic Online Banking Interface" +HOMEPAGE="https://www.aquamaniac.de/sites/aqbanking/index.php" +SRC_URI="https://www.aquamaniac.de/rdm/attachments/download/107/${P}.tar.gz" + +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="~amd64 ~ppc ~ppc64 ~x86" +IUSE="smartcard debug doc ebics examples ofx" + +BDEPEND=" + sys-devel/gettext + virtual/pkgconfig + doc? ( app-doc/doxygen ) +" +RDEPEND=" + app-misc/ktoblzcheck + dev-libs/gmp:0= + sys-libs/gwenhywfar:= + virtual/libintl + smartcard? ( >=sys-libs/libchipcard-5.0.2 ) + ebics? ( dev-libs/xmlsec[gcrypt,gnutls] ) + ofx? ( >=dev-libs/libofx-0.9.5 ) +" +DEPEND="${RDEPEND}" + +# DOCS=( AUTHORS ChangeLog NEWS README TODO ) + +MAKEOPTS="${MAKEOPTS} -j1" # 5.7.8 still fails with > -j1 + +src_configure() { + local backends="aqhbci aqnone aqpaypal" + use ofx && backends="${backends} aqofxconnect" + use ebics && backends="${backends} aqebics" + + econf \ + $(use_enable debug) \ + $(use_enable doc full-doc) \ + --with-backends="${backends}" \ + --with-docpath=/usr/share/doc/${PF}/apidoc +} + +src_install() { + emake DESTDIR="${D}" install + + rm -rv "${ED}"/usr/share/doc/ || die + + einstalldocs + + newdoc src/plugins/backends/aqhbci/tools/aqhbci-tool/README \ + README.aqhbci-tool + + if use examples; then + docinto tutorials + dodoc tutorials/*.{c,h} tutorials/README + fi + + find "${ED}" -name '*.la' -delete || die +} |