mirror of
https://github.com/gentoo-mirror/gentoo.git
synced 2026-09-24 04:59:14 -07:00
net-libs/aqbanking: 5.8.2 version bump
Package-Manager: Portage-2.3.76, Repoman-2.3.17 Signed-off-by: Andreas Sturmlechner <asturm@gentoo.org>
This commit is contained in:
@@ -1 +1,2 @@
|
||||
DIST aqbanking-5.7.8.tar.gz 3818825 BLAKE2B 6536b11251fda4977fd964f513f4b2bb23cd14d62adffdd18e7508afe85d660b86aa1aadc80fe4ba47c5b393659ba7139c65eaf342795f6f05599efdd2c3904d SHA512 4078c3bc2c0b6f38f853fed064e37b6188c0b8158416ca6482756232ef8fe71e9cc1df0abe8c6bcbe8a7e818c24210f553c367f540d60cb7b7cf0161a9ca7117
|
||||
DIST aqbanking-5.8.2.tar.gz 3824997 BLAKE2B 529867a9e814d0e46ff2aac1da25a369c9a8722f41364c6ef15dce0ed861b7a5bab104fb5b30a151c6e11071c0a067aa1192a4ceda67ee50698f80053ac8e33a SHA512 2a8d87396fa8926fa338cf0a7744649512ecd773741fa24ad69a52bf65d4df881365c0fc31c3a14f718184032a7f1a596e74f63d6ffdaa05c29aac23e26bd4ae
|
||||
|
||||
63
net-libs/aqbanking/aqbanking-5.8.2.ebuild
Normal file
63
net-libs/aqbanking/aqbanking-5.8.2.ebuild
Normal file
@@ -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="chipcard 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
|
||||
chipcard? ( >=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
|
||||
}
|
||||
Reference in New Issue
Block a user