diff options
author | Hanno <hanno@gentoo.org> | 2016-05-12 11:32:39 +0200 |
---|---|---|
committer | Hanno <hanno@gentoo.org> | 2016-05-12 11:33:15 +0200 |
commit | cf6410e0bf6726c1ccaf91fe83029d1ccd0d896c (patch) | |
tree | c89ca498ea5c139369b5a00128d905f409be2924 /net-libs/aqbanking/aqbanking-5.6.10.ebuild | |
parent | dev-haskell/semigroups: fix build failure with USE=-*, bug #582744 (diff) | |
download | gentoo-cf6410e0bf6726c1ccaf91fe83029d1ccd0d896c.tar.gz gentoo-cf6410e0bf6726c1ccaf91fe83029d1ccd0d896c.tar.bz2 gentoo-cf6410e0bf6726c1ccaf91fe83029d1ccd0d896c.zip |
net-libs/aqbanking: Version bump
Package-Manager: portage-2.2.28
Diffstat (limited to 'net-libs/aqbanking/aqbanking-5.6.10.ebuild')
-rw-r--r-- | net-libs/aqbanking/aqbanking-5.6.10.ebuild | 65 |
1 files changed, 65 insertions, 0 deletions
diff --git a/net-libs/aqbanking/aqbanking-5.6.10.ebuild b/net-libs/aqbanking/aqbanking-5.6.10.ebuild new file mode 100644 index 000000000000..18eb3207e68b --- /dev/null +++ b/net-libs/aqbanking/aqbanking-5.6.10.ebuild @@ -0,0 +1,65 @@ +# Copyright 1999-2016 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Id$ + +EAPI=5 +inherit eutils + +MY_P="${P/_beta/beta}" +DESCRIPTION="Generic Online Banking Interface" +HOMEPAGE="http://www.aquamaniac.de/aqbanking/" +SRC_URI="http://www.aquamaniac.de/sites/download/download.php?package=03&release=206&file=01&dummy=${MY_P}.tar.gz -> ${MY_P}.tar.gz" +S="${WORKDIR}/${MY_P}" + +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="~amd64 ~ppc ~ppc64 ~x86" +IUSE="chipcard debug doc ebics examples gtk ofx" + +RDEPEND=">=app-misc/ktoblzcheck-1.48 + >=dev-libs/gmp-5 + >=sys-libs/gwenhywfar-4.13.1[gtk?] + virtual/libintl + ofx? ( >=dev-libs/libofx-0.9.5 ) + chipcard? ( >=sys-libs/libchipcard-5.0.2 ) + ebics? ( dev-libs/xmlsec[gcrypt,gnutls] )" +DEPEND="${RDEPEND} + sys-devel/gettext + virtual/pkgconfig + doc? ( app-doc/doxygen )" + +MAKEOPTS="${MAKEOPTS} -j1" # 5.0.x fails with -j9 on quadcore + +src_configure() { + local backends="aqhbci aqnone aqpaypal" + use ofx && backends="${backends} aqofxconnect" + use ebics && backends="${backends} aqebics" + + local mytest + use gtk && mytest="--enable-gui-tests" + + econf \ + $(use_enable debug) \ + $(use_enable doc full-doc) \ + --with-backends="${backends}" \ + --with-docpath=/usr/share/doc/${PF}/apidoc \ + ${mytest} +} + +src_install() { + emake DESTDIR="${D}" install + + rm -rf "${ED}"/usr/share/doc/aq{banking,hbci,paypal} + + dodoc AUTHORS ChangeLog NEWS README TODO + + 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 + + prune_libtool_files --all +} |