blob: f2790a77248622128a544aded4608379d6fb3451 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
|
# Copyright 1999-2008 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/net-libs/aqbanking/aqbanking-3.8.1.ebuild,v 1.1 2008/11/13 23:47:27 hanno Exp $
inherit kde-functions
DESCRIPTION="Generic Online Banking Interface"
HOMEPAGE="http://www.aquamaniac.de/aqbanking/"
SRC_URI="http://files.hboeck.de/aq//${P}.tar.gz"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~amd64 ~ppc ~ppc64 ~sparc ~x86"
IUSE="chipcard debug geldkarte hbci kde ofx python qt3 yellownet"
DEPEND=">=sys-libs/gwenhywfar-3.4.1
>=app-misc/ktoblzcheck-1.14
ofx? ( >=dev-libs/libofx-0.8.3 )
geldkarte? ( >=sys-libs/libchipcard-4.2.0 )
chipcard? ( >=sys-libs/libchipcard-4.2.0 )
qt3? ( =x11-libs/qt-3* )
kde? ( >=kde-base/kdelibs-3.1.0 )"
MAKEOPTS="${MAKEOPTS} -j1"
RESTRICT="test"
src_compile() {
set-kdedir
local FRONTENDS="cbanking"
(use qt3 || use kde) && FRONTENDS="${FRONTENDS} qbanking"
use kde && FRONTENDS="${FRONTENDS} kbanking"
local BACKENDS=""
use hbci && BACKENDS="aqhbci"
use geldkarte && BACKENDS="${BACKENDS} aqgeldkarte"
use ofx && BACKENDS="${BACKENDS} aqofxconnect"
use yellownet && BACKENDS="${BACKENDS} aqyellownet"
econf PATH="/usr/qt/3/bin:${PATH}" \
$(use_enable debug) \
$(use_enable kde kde3) \
$(use_enable python) \
--with-frontends="${FRONTENDS}" \
--with-backends="${BACKENDS}" \
--with-docpath="/usr/share/doc/${PF}/apidoc"|| die "configure failed"
emake || die "make failed"
}
src_install() {
make DESTDIR="${D}" install || die "install failed"
rm -rf "${D}/usr/share/doc"
dodoc AUTHORS README doc/* || die "dodoc failed"
find "${D}" -name '*.la' -delete
}
|