62 lines
1.5 KiB
Bash
62 lines
1.5 KiB
Bash
# Copyright 1999-2017 Gentoo Foundation
|
|
# Distributed under the terms of the GNU General Public License v2
|
|
|
|
EAPI=5
|
|
inherit eutils
|
|
|
|
MY_P="${P/_beta/beta}"
|
|
DESCRIPTION="Generic Online Banking Interface"
|
|
HOMEPAGE="https://www.aquamaniac.de/sites/aqbanking/index.php"
|
|
SRC_URI="https://www.aquamaniac.de/sites/download/download.php?package=03&release=115&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 examples gtk ofx"
|
|
|
|
RDEPEND=">=app-misc/ktoblzcheck-1.45
|
|
>=dev-libs/gmp-5
|
|
>=sys-libs/gwenhywfar-4.12.0_beta[gtk?]
|
|
virtual/libintl
|
|
ofx? ( >=dev-libs/libofx-0.9.5 )
|
|
chipcard? ( >=sys-libs/libchipcard-5.0.2 )"
|
|
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"
|
|
|
|
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
|
|
}
|